Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TreeNodeCollectionTest.cs « System.Web.UI.WebControls « Test « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b2c56db9b51e64c2d86267afa4476ede6fcef8cd (plain)
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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
//
// Tests for System.Web.UI.WebControls.ImageMap.cs
//
// Author:
//  Hagit Yidov (hagity@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.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using MonoTests.stand_alone.WebHarness;
using MonoTests.SystemWeb.Framework;
using System.Threading;
using System.Collections;

namespace MonoTests.System.Web.UI.WebControls {
	[TestFixture]
	public class TreeNodeCollectionTest {

		class PokerTreeView : TreeView
		{
			public void DoTrackViewState () {
				TrackViewState ();
			}

			public object DoSaveViewState () {
				return SaveViewState ();
			}

			public void DoLoadViewState (object state) {
				LoadViewState (state);
			}
		}

		[Test]
		public void TreeNodeCollection_DefaultProperties () {
			TreeNodeCollection tnc = new TreeNodeCollection ();
			Assert.AreEqual (0, tnc.Count, "Count");
			Assert.AreEqual (false, tnc.IsSynchronized, "IsSynchronized");
		}

		[Test]
		public void TreeNodeCollection_Method_Add () {
			TreeNodeCollection tnc = new TreeNodeCollection ();
			Assert.AreEqual (0, tnc.Count, "BeforeAdd");
			tnc.Add (new TreeNode ("TreeNodeName"));
			Assert.AreEqual (1, tnc.Count, "AfterAdd1");
			Assert.AreEqual ("TreeNodeName", tnc[0].Text, "AfterAdd2");
		}

		[Test]
		public void TreeNodeCollection_Method_AddAt () {
			TreeNodeCollection tnc = new TreeNodeCollection ();
			tnc.Add (new TreeNode ());
			tnc.Add (new TreeNode ());
			Assert.AreEqual (2, tnc.Count, "BeforeAddAt");
			tnc.AddAt (1, new TreeNode ("TreeNodeName"));
			Assert.AreEqual (3, tnc.Count, "AfterAddAt1");
			Assert.AreEqual ("TreeNodeName", tnc[1].Text, "AfterAdd2");
		}

		[Test]
		public void TreeNodeCollection_Method_Clear () {
			TreeNodeCollection tnc = new TreeNodeCollection ();
			tnc.Add (new TreeNode ());
			tnc.Add (new TreeNode ());
			tnc.Add (new TreeNode ());
			Assert.AreEqual (3, tnc.Count, "BeforeClear");
			tnc.Clear ();
			Assert.AreEqual (0, tnc.Count, "AfterClear");
		}

		[Test]
		public void TreeNodeCollection_Method_Contains () {
			TreeNodeCollection tnc = new TreeNodeCollection ();
			TreeNode tn = new TreeNode ("TreeNodeName");
			tnc.Add (new TreeNode ());
			Assert.AreEqual (false, tnc.Contains (tn), "BeforeContains");
			tnc.Add (tn);
			tnc.Add (new TreeNode ());
			Assert.AreEqual (true, tnc.Contains (tn), "AfterContains");
		}

		[Test]
		public void TreeNodeCollection_Method_CopyTo () {
			TreeNodeCollection tnc = new TreeNodeCollection ();
			TreeNode[] nodeArray = new TreeNode[10];
			tnc.Add (new TreeNode ());
			tnc.Add (new TreeNode ("TreeNodeName"));
			tnc.Add (new TreeNode ());
			Assert.AreEqual (3, tnc.Count, "BeforeCopyTo");
			tnc.CopyTo (nodeArray, 3);
			Assert.AreEqual ("TreeNodeName", nodeArray[4].Text, "AfterCopyTo");
		}

		[Test]
		public void TreeNodeCollection_Method_GetEnumerator () {
			TreeNodeCollection tnc = new TreeNodeCollection ();
			for (int i = 0; i < 3; i++)
				tnc.Add (new TreeNode (i.ToString ()));
			IEnumerator nodeEnumerator = tnc.GetEnumerator ();
			int j = 0;
			while (nodeEnumerator.MoveNext ()) {
				Assert.AreEqual (j.ToString (), ((TreeNode) (nodeEnumerator.Current)).Text, "AfterGetEnumerator");
				j++;
			}
		}

		[Test]
		public void TreeNodeCollection_Method_IndexOf () {
			TreeNodeCollection tnc = new TreeNodeCollection ();
			TreeNode tn = new TreeNode ("TreeNodeName");
			tnc.Add (new TreeNode ());
			tnc.Add (new TreeNode ());
			Assert.AreEqual (-1, tnc.IndexOf (tn), "BeforeIndexOf");
			tnc.Add (tn);
			tnc.Add (new TreeNode ());
			Assert.AreEqual (2, tnc.IndexOf (tn), "AfterIndexOf");
		}

		[Test]
		public void TreeNodeCollection_Method_Remove () {
			TreeNodeCollection tnc = new TreeNodeCollection ();
			TreeNode tn = new TreeNode ("second");
			tnc.Add (new TreeNode ("first"));
			tnc.Add (tn);
			tnc.Add (new TreeNode ("third"));
			Assert.AreEqual (3, tnc.Count, "BeforeRemove1");
			Assert.AreEqual ("second", tnc[1].Text, "BeforeRemove2");
			tnc.Remove (tn);
			Assert.AreEqual (2, tnc.Count, "AfterRemove1");
			Assert.AreEqual ("third", tnc[1].Text, "AfterRemove2");
		}

		[Test]
		public void TreeNodeCollection_Method_RemoveAt () {
			TreeNodeCollection tnc = new TreeNodeCollection ();
			tnc.Add (new TreeNode ("first"));
			tnc.Add (new TreeNode ("second"));
			tnc.Add (new TreeNode ("third"));
			Assert.AreEqual (3, tnc.Count, "BeforeRemoveAt1");
			Assert.AreEqual ("second", tnc[1].Text, "BeforeRemoveAt2");
			tnc.RemoveAt (1);
			Assert.AreEqual (2, tnc.Count, "AfterRemoveAt1");
			Assert.AreEqual ("third", tnc[1].Text, "AfterRemoveAt2");
		}

		[Test]
		public void TreeNodeCollection_ViewState () {
			PokerTreeView orig = new PokerTreeView ();
			orig.DoTrackViewState ();
			BuildTree (orig);

			PokerTreeView copy = new PokerTreeView ();
			copy.DoTrackViewState ();
			object state = orig.DoSaveViewState ();
			copy.DoLoadViewState (state);

			// restored collection that was created after TrackViewState
			Assert.AreEqual (1, copy.Nodes.Count, "TreeNodeCollection_ViewState#1");
			Assert.AreEqual (2, copy.Nodes [0].ChildNodes.Count, "TreeNodeCollection_ViewState#2");
			Assert.AreEqual (0, copy.Nodes [0].ChildNodes [0].ChildNodes.Count, "TreeNodeCollection_ViewState#3");
			Assert.AreEqual ("node1", copy.Nodes [0].ChildNodes [0].Text, "TreeNodeCollection_ViewState#4");
			Assert.AreEqual ("value-node1", copy.Nodes [0].ChildNodes [0].Value, "TreeNodeCollection_ViewState#5");
			Assert.AreEqual (false, copy.Nodes [0].ChildNodes [0].DataBound, "TreeNodeCollection_ViewState#6");
			Assert.AreEqual ("", copy.Nodes [0].ChildNodes [0].DataPath, "TreeNodeCollection_ViewState#7");


			PokerTreeView orig2 = new PokerTreeView ();
			BuildTree (orig2);
			orig2.DoTrackViewState ();

			orig2.Nodes [0].ChildNodes [0].Text = "changed text 1";
			orig2.Nodes [0].ChildNodes [0].Value = "changed value 1";

			PokerTreeView copy2 = new PokerTreeView ();
			BuildTree (copy2);
			copy2.DoTrackViewState ();
			object state2 = orig2.DoSaveViewState ();
			copy2.DoLoadViewState (state2);

			// restored collection that was changed (item's properties only) after TrackViewState
			Assert.AreEqual (1, copy2.Nodes.Count, "TreeNodeCollection_ViewState#8");
			Assert.AreEqual (2, copy2.Nodes [0].ChildNodes.Count, "TreeNodeCollection_ViewState#9");
			Assert.AreEqual (0, copy2.Nodes [0].ChildNodes [0].ChildNodes.Count, "TreeNodeCollection_ViewState#10");
			Assert.AreEqual ("changed text 1", copy2.Nodes [0].ChildNodes [0].Text, "TreeNodeCollection_ViewState#11");
			Assert.AreEqual ("changed value 1", copy2.Nodes [0].ChildNodes [0].Value, "TreeNodeCollection_ViewState#12");
			Assert.AreEqual (false, copy2.Nodes [0].ChildNodes [0].DataBound, "TreeNodeCollection_ViewState#13");
			Assert.AreEqual ("", copy2.Nodes [0].ChildNodes [0].DataPath, "TreeNodeCollection_ViewState#14");


			PokerTreeView orig3 = new PokerTreeView ();
			BuildTree (orig3);
			orig3.DoTrackViewState ();

			orig3.Nodes [0].ChildNodes [0].Text = "changed text 1";
			orig3.Nodes [0].ChildNodes [0].Value = "changed value 1";
			orig3.Nodes [0].ChildNodes.RemoveAt (1);

			PokerTreeView copy3 = new PokerTreeView ();
			BuildTree (copy3);
			copy3.DoTrackViewState ();
			object state3 = orig3.DoSaveViewState ();
			copy3.DoLoadViewState (state3);

			// restored collection that was changed after TrackViewState
			Assert.AreEqual (1, copy3.Nodes.Count, "TreeNodeCollection_ViewState#15");
			Assert.AreEqual (1, copy3.Nodes [0].ChildNodes.Count, "TreeNodeCollection_ViewState#16");
			Assert.AreEqual (0, copy3.Nodes [0].ChildNodes [0].ChildNodes.Count, "TreeNodeCollection_ViewState#17");
			Assert.AreEqual ("changed text 1", copy3.Nodes [0].ChildNodes [0].Text, "TreeNodeCollection_ViewState#18");
			Assert.AreEqual ("changed value 1", copy3.Nodes [0].ChildNodes [0].Value, "TreeNodeCollection_ViewState#19");
			Assert.AreEqual (false, copy3.Nodes [0].ChildNodes [0].DataBound, "TreeNodeCollection_ViewState#20");
			Assert.AreEqual ("", copy3.Nodes [0].ChildNodes [0].DataPath, "TreeNodeCollection_ViewState#21");
		}

		private static void BuildTree (TreeView tv) {
			TreeNode R = new TreeNode ("root", "value-root");
			TreeNode N1 = new TreeNode ("node1", "value-node1");
			TreeNode N2 = new TreeNode ("node2", "value-node2");
			R.ChildNodes.Add (N1);
			R.ChildNodes.Add (N2);
			tv.Nodes.Add (R);
		}
		[Test]
		public void ViewState1 ()
		{
			TreeView m = new TreeView ();
			fillTree (m);

			((IStateManager) m.Nodes).TrackViewState ();
			m.Nodes [0].Text = "root";
			m.Nodes [0].ChildNodes [0].Text = "node";
			m.Nodes [0].ChildNodes [0].ChildNodes [0].Text = "subnode";
			object state = ((IStateManager) m.Nodes).SaveViewState ();

			TreeView copy = new TreeView ();
			fillTree (copy);
			((IStateManager) copy.Nodes).TrackViewState ();
			((IStateManager) copy.Nodes).LoadViewState (state);

			Assert.AreEqual (1, copy.Nodes.Count);
			Assert.AreEqual (2, copy.Nodes [0].ChildNodes.Count);
			Assert.AreEqual (1, copy.Nodes [0].ChildNodes [0].ChildNodes.Count);

			Assert.AreEqual ("root", copy.Nodes [0].Text);
			Assert.AreEqual ("node", copy.Nodes [0].ChildNodes [0].Text);
			Assert.AreEqual ("subnode", copy.Nodes [0].ChildNodes [0].ChildNodes [0].Text);
		}

		[Test]
		public void ViewState2 ()
		{
			TreeView m = new TreeView ();
			fillTree (m);

			((IStateManager) m.Nodes).TrackViewState ();
			m.Nodes [0].Text = "root";
			m.Nodes [0].ChildNodes [0].Text = "node";
			m.Nodes [0].ChildNodes [0].ChildNodes [0].Text = "subnode";
			m.Nodes.Add (new TreeNode ("root 2"));
			object state = ((IStateManager) m.Nodes).SaveViewState ();

			TreeView copy = new TreeView ();
			fillTree (copy);
			((IStateManager) copy.Nodes).TrackViewState ();
			((IStateManager) copy.Nodes).LoadViewState (state);

			Assert.AreEqual (2, copy.Nodes.Count);
			Assert.AreEqual (2, copy.Nodes [0].ChildNodes.Count);
			Assert.AreEqual (1, copy.Nodes [0].ChildNodes [0].ChildNodes.Count);

			Assert.AreEqual ("root", copy.Nodes [0].Text);
			Assert.AreEqual ("node", copy.Nodes [0].ChildNodes [0].Text);
			Assert.AreEqual ("subnode", copy.Nodes [0].ChildNodes [0].ChildNodes [0].Text);
			Assert.AreEqual ("root 2", copy.Nodes [1].Text);
		}

		[Test]
		public void ViewState3 ()
		{
			TreeView m = new TreeView ();
			fillTree (m);
			m.Nodes.Add (new TreeNode ("root 2"));

			((IStateManager) m.Nodes).TrackViewState ();
			m.Nodes [0].Text = "root";
			m.Nodes [0].ChildNodes [0].Text = "node";
			m.Nodes [0].ChildNodes [0].ChildNodes [0].Text = "subnode";
			m.Nodes.RemoveAt (1);
			object state = ((IStateManager) m.Nodes).SaveViewState ();

			TreeView copy = new TreeView ();
			fillTree (copy);
			copy.Nodes.Add (new TreeNode ("root 2"));
			((IStateManager) copy.Nodes).TrackViewState ();
			((IStateManager) copy.Nodes).LoadViewState (state);

			Assert.AreEqual (1, copy.Nodes.Count);
			Assert.AreEqual (2, copy.Nodes [0].ChildNodes.Count);
			Assert.AreEqual (1, copy.Nodes [0].ChildNodes [0].ChildNodes.Count);

			Assert.AreEqual ("root", copy.Nodes [0].Text);
			Assert.AreEqual ("node", copy.Nodes [0].ChildNodes [0].Text);
			Assert.AreEqual ("subnode", copy.Nodes [0].ChildNodes [0].ChildNodes [0].Text);
		}

		[Test]
		public void ViewState4 ()
		{
			TreeView m = new TreeView ();
			fillTree (m);
			m.Nodes.Add (new TreeNode ("root 2"));
			m.Nodes [0].ChildNodes.RemoveAt (1);

			((IStateManager) m.Nodes).TrackViewState ();
			m.Nodes [0].Text = "root";
			m.Nodes [0].ChildNodes [0].Text = "node";
			m.Nodes [0].ChildNodes [0].ChildNodes [0].Text = "subnode";
			object state = ((IStateManager) m.Nodes).SaveViewState ();

			TreeView copy = new TreeView ();
			fillTree (copy);
			copy.Nodes.Add (new TreeNode ("root 2"));
			copy.Nodes [0].ChildNodes.RemoveAt (1);
			((IStateManager) copy.Nodes).TrackViewState ();
			((IStateManager) copy.Nodes).LoadViewState (state);

			Assert.AreEqual (2, copy.Nodes.Count);
			Assert.AreEqual (1, copy.Nodes [0].ChildNodes.Count);
			Assert.AreEqual (1, copy.Nodes [0].ChildNodes [0].ChildNodes.Count);

			Assert.AreEqual ("root", copy.Nodes [0].Text);
			Assert.AreEqual ("node", copy.Nodes [0].ChildNodes [0].Text);
			Assert.AreEqual ("subnode", copy.Nodes [0].ChildNodes [0].ChildNodes [0].Text);
		}

		[Test]
		public void ViewState5 ()
		{
			TreeView m = new TreeView ();
			((IStateManager) m.Nodes).TrackViewState ();
			fillTree (m);

			object state = ((IStateManager) m.Nodes).SaveViewState ();

			TreeView copy = new TreeView ();
			((IStateManager) copy.Nodes).TrackViewState ();
			((IStateManager) copy.Nodes).LoadViewState (state);

			Assert.AreEqual (1, copy.Nodes.Count);
			Assert.AreEqual (2, copy.Nodes [0].ChildNodes.Count);
			Assert.AreEqual (1, copy.Nodes [0].ChildNodes [0].ChildNodes.Count);
		}

		private static void fillTree (TreeView tv)
		{
			tv.Nodes.Clear ();
			tv.Nodes.Add (new TreeNode ());
			tv.Nodes [0].ChildNodes.Add (new TreeNode ());
			tv.Nodes [0].ChildNodes.Add (new TreeNode ());
			tv.Nodes [0].ChildNodes [0].ChildNodes.Add (new TreeNode ());
		}

	}
}


#endif