1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
|
//
// Tests for System.Web.UI.WebControls.View.cs
//
// Author:
// Yoni Klein (yonik@mainsoft.com)
//
// (C) 2005 Mainsoft Corporation (http://www.mainsoft.com)
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
#if NET_2_0
using NUnit.Framework;
using System;
using System.IO;
using System.Globalization;
using System.Configuration;
using System.Collections;
using System.Collections.Specialized;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Security.Permissions;
namespace MonoTests.System.Web.UI.WebControls
{
class PokerSiteMapDataSource : SiteMapDataSource
{
public PokerSiteMapDataSource ()
{
TrackViewState ();
}
public object SaveState ()
{
return SaveViewState ();
}
public void LoadState (object o)
{
LoadViewState (o);
}
public StateBag StateBag
{
get { return base.ViewState; }
}
public HierarchicalDataSourceView DoHierarchicalDataSourceView (string str)
{
return GetHierarchicalView (str);
}
}
[TestFixture]
public class SiteMapDataSourceTest
{
[Test]
public void SiteMapDataSource_DefaultProperties ()
{
PokerSiteMapDataSource p = new PokerSiteMapDataSource ();
Assert.AreEqual (true, p.ShowStartingNode, "ShowStartingNode");
Assert.AreEqual (string.Empty, p.SiteMapProvider, "SiteMapProvider");
Assert.AreEqual (false, p.StartFromCurrentNode, "StartFromCurrentNode");
Assert.AreEqual (0, p.StartingNodeOffset, "StartingNodeOffset");
Assert.AreEqual (string.Empty, p.StartingNodeUrl, "StartingNodeUrl");
}
[Test]
public void SiteMapDataSource_ContainsListCollection ()
{
PokerSiteMapDataSource p = new PokerSiteMapDataSource ();
Assert.AreEqual (true, p.ContainsListCollection, "ContainsListCollection");
}
[Test]
public void SiteMapDataSource_ChangeProperties ()
{
PokerSiteMapDataSource p = new PokerSiteMapDataSource ();
p.ShowStartingNode = false;
Assert.AreEqual (false, p.ShowStartingNode, "ShowStartingNode");
Assert.AreEqual (1, p.StateBag.Count, "ShowStartingNode#1");
p.SiteMapProvider = "test";
Assert.AreEqual ("test", p.SiteMapProvider, "SiteMapProvider");
Assert.AreEqual (2, p.StateBag.Count, "SiteMapProvider#1");
// null properties doe's not affects on state bag count
p.SiteMapProvider = null;
Assert.AreEqual (2, p.StateBag.Count, "SiteMapProvider#2");
p.StartFromCurrentNode = true;
Assert.AreEqual (true, p.StartFromCurrentNode, "StartFromCurrentNode");
Assert.AreEqual (3, p.StateBag.Count, "StartFromCurrentNode#1");
p.StartingNodeOffset = 1;
Assert.AreEqual (1, p.StartingNodeOffset, "StartingNodeOffset");
Assert.AreEqual (4, p.StateBag.Count, "StartingNodeOffset#2");
p.StartingNodeUrl = "default.aspx";
Assert.AreEqual ("default.aspx", p.StartingNodeUrl, "StartingNodeUrl");
Assert.AreEqual (5, p.StateBag.Count, "StartingNodeUrl#1");
// null properties doe's not affects on state bag count
p.StartingNodeUrl = null;
Assert.AreEqual (5, p.StateBag.Count, "StartingNodeUrl#2");
}
[Test]
public void SiteMapDataSource_DataSourceChanged ()
{
PokerSiteMapDataSource p = new PokerSiteMapDataSource ();
((IDataSource) p).DataSourceChanged += new EventHandler (SiteMapDataSourceTest_DataSourceChanged);
eventChecker = false;
p.ShowStartingNode = false;
Assert.IsTrue (eventChecker, "DataSourceChanged#1");
eventChecker = false;
p.SiteMapProvider = "test";
Assert.IsTrue (eventChecker, "DataSourceChanged#2");
eventChecker = false;
p.StartFromCurrentNode = true;
Assert.IsTrue (eventChecker, "DataSourceChanged#3");
eventChecker = false;
p.StartingNodeOffset = 1;
Assert.IsTrue (eventChecker, "DataSourceChanged#4");
eventChecker = false;
p.StartingNodeUrl = "default.aspx";
Assert.IsTrue (eventChecker, "DataSourceChanged#5");
}
bool eventChecker;
void SiteMapDataSourceTest_DataSourceChanged (object sender, EventArgs e)
{
eventChecker = true;
}
[Test]
public void SiteMapDataSource_GetList ()
{
PokerSiteMapDataSource p = new PokerSiteMapDataSource ();
Assert.IsNotNull (p.GetList (), "GetList");
Assert.IsTrue (p.ContainsListCollection, "ContainsListCollection");
}
[Test]
public void SiteMapDataSource_GetViewNames () {
PokerSiteMapDataSource p = new PokerSiteMapDataSource ();
Assert.AreEqual (1, p.GetViewNames ().Count, "GetViewNames().Count");
Assert.AreEqual ("DefaultView", ((string []) p.GetViewNames ()) [0], "GetViewNames () [0]");
}
[Test]
public void SiteMapDataSource_GetView ()
{
PokerSiteMapDataSource p = new PokerSiteMapDataSource ();
p.Provider = new mySiteMapProvider ();
DataSourceView V = p.GetView("");
Assert.IsNotNull (V, "GetView");
}
[Test]
public void SiteMapDataSource_ViewState ()
{
PokerSiteMapDataSource p = new PokerSiteMapDataSource ();
p.SiteMapProvider = "test";
p.StartFromCurrentNode = false;
p.StartingNodeOffset = 1;
p.StartingNodeUrl = "default.aspx";
object state = p.SaveState ();
PokerSiteMapDataSource copy = new PokerSiteMapDataSource ();
copy.LoadState (state);
Assert.AreEqual ("test", copy.SiteMapProvider, "SiteMapProvider");
Assert.AreEqual (false, copy.StartFromCurrentNode, "StartFromCurrentNode");
Assert.AreEqual (1, copy.StartingNodeOffset, "StartingNodeOffset");
Assert.AreEqual ("default.aspx", copy.StartingNodeUrl, "StartingNodeUrl");
}
[Test]
public void SiteMapDataSource_HierarchicalDataSourceView ()
{
PokerSiteMapDataSource p = new PokerSiteMapDataSource ();
p.Provider = new mySiteMapProvider ();
HierarchicalDataSourceView h = p.DoHierarchicalDataSourceView ("1");
Assert.IsNotNull (h, "HierarchicalDataSourceView");
}
}
// Helper Class
public class mySiteMapProvider : StaticSiteMapProvider
{
private SiteMapNode rootNode = null;
// Implement a default constructor.
public mySiteMapProvider ()
{
}
// Some basic state to help track the initialization state of the provider.
private bool initialized = false;
public virtual bool IsInitialized
{
get { return initialized; }
}
// Return the root node of the current site map.
public override SiteMapNode RootNode
{
get
{
SiteMapNode temp = null;
temp = BuildSiteMap ();
return temp;
}
}
protected internal override SiteMapNode GetRootNodeCore ()
{
return RootNode;
}
// Initialize is used to initialize the properties and any state that the
// AccessProvider holds, but is not used to build the site map.
// The site map is built when the BuildSiteMap method is called.
public override void Initialize (string name, NameValueCollection attributes)
{
if (IsInitialized)
return;
base.Initialize (name, attributes);
initialized = true;
}
///
/// SiteMapProvider and StaticSiteMapProvider methods that this derived class must override.
///
// Clean up any collections or other state that an instance of this may hold.
protected override void Clear ()
{
lock (this) {
rootNode = null;
base.Clear ();
}
}
// Build an in-memory representation from persistent
// storage, and return the root node of the site map.
public override SiteMapNode BuildSiteMap ()
{
// Since the SiteMap class is static, make sure that it is
// not modified while the site map is built.
lock (this) {
// If there is no root node, then there is no site map.
if (null == rootNode) {
// Start with a clean slate
Clear ();
// Select the root node of the site map .
rootNode = new SiteMapNode (this, "1", "default.aspx", "Default");
}
else return null;
SiteMapNode childNode = null;
childNode = new SiteMapNode (this, "2", "catalog.aspx", "catalog");
AddNode (childNode, rootNode);
childNode = new SiteMapNode (this, "3", "aboutus.aspx", "about us");
AddNode (childNode, rootNode);
return rootNode;
}
}
}
}
#endif
|