[bcl] Remove more NET_2_0 checks from class libs
[mono.git] / mcs / class / System.Web / Test / System.Web.UI.WebControls / GridViewRowCollectionTest.cs
1 //
2 // Tests for System.Web.UI.WebControls.GridViewRowCollectionTest.cs
3 //
4 // Author:
5 //      Yoni Klein (yonik@mainsoft.com)
6 //
7 //
8 // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 //
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 //
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28
29
30
31 using System;
32 using System.Collections;
33 using System.Web;
34 using System.Web.UI;
35 using System.Web.UI.WebControls;
36 using NUnit.Framework;
37
38
39 namespace MonoTests.System.Web.UI.WebControls
40 {
41         class PokerGridViewRowCollection : GridViewRowCollection
42         {
43                 public PokerGridViewRowCollection (ArrayList list)
44                         : base (list)
45                 {
46                         
47                 }
48         }
49
50         [TestFixture]
51         public class GridViewRowCollectionTest
52         {
53
54                 [Test]
55                 public void GridViewRowCollection_DefaultProperty ()
56                 {
57                         GridViewRowCollection collection = new GridViewRowCollection(new ArrayList());
58                         Assert.AreEqual (0, collection.Count, "Count");
59                         Assert.AreEqual (false, collection.IsSynchronized, "IsSynchronized");   //Always return false
60                 }
61
62                 [Test]
63                 public void GridViewRowCollection_DefaultPropertyNotWorking ()
64                 {
65                         GridViewRowCollection collection = new GridViewRowCollection (new ArrayList ());
66                         // Note : does not contain a definition for `IsReadOnly'
67                         //Assert.AreEqual (false, collection.IsReadOnly, "IsReadOnly");         //Always return false
68                         Assert.AreEqual (collection, collection.SyncRoot, "SyncRoot");
69                 }
70
71                 [Test]
72                 public void GridViewRowCollection_AssignProperty ()
73                 {
74                         ArrayList list = new ArrayList ();
75                         list.Add(new GridViewRow (0, 0, DataControlRowType.DataRow, DataControlRowState.Normal));
76                         GridViewRowCollection collection = new GridViewRowCollection (list);
77                         Assert.AreEqual (1, collection.Count, "Count");
78                         // Note : does not contain a definition for `IsReadOnly'
79                         //Assert.AreEqual (false, collection.IsReadOnly, "IsReadOnly");         //Always return false
80                         Assert.AreEqual (false, collection.IsSynchronized, "IsSynchronized");   //Always return false
81                         Assert.AreEqual (typeof(GridViewRow), collection[0].GetType (), "Item");
82                 }
83
84                 [Test]
85                 public void GridViewRowCollection_CopyTo ()
86                 {
87                         ArrayList list = new ArrayList ();
88                         list.Add (new GridViewRow (0, 0, DataControlRowType.DataRow, DataControlRowState.Normal));
89                         GridViewRowCollection collection = new GridViewRowCollection (list);
90                         GridViewRow[] rows = new GridViewRow[collection.Count];
91                         collection.CopyTo (rows, 0);
92                         Assert.AreEqual (collection.Count, rows.Length, "CopyToLenth");
93                         Assert.IsNotNull (rows[0], "CopyToTargetCreated");
94                         Assert.AreEqual (collection[0].GetType (), rows[0].GetType (), "CopyToTargetType");
95                 }
96
97                 [Test]
98                 public void GridViewRowCollection_GetEnumerator ()
99                 {
100                         ArrayList list = new ArrayList ();
101                         list.Add (new GridViewRow (0, 0, DataControlRowType.DataRow, DataControlRowState.Normal));
102                         GridViewRowCollection collection = new GridViewRowCollection (list);
103                         IEnumerator numerator = collection.GetEnumerator ();
104                         Assert.IsNotNull (numerator, "IEnumeratorCreated");
105                         numerator.Reset ();
106                         numerator.MoveNext ();
107                         Assert.AreEqual (numerator.Current, collection[0], "GetEnumeratorCurrent");
108                         Assert.AreEqual (typeof (GridViewRow), numerator.Current.GetType (), ""); 
109                 }
110
111                 [Test]
112                 [ExpectedException(typeof(ArgumentOutOfRangeException))]
113                 public void GridViewRowCollection_ItemException ()
114                 {
115                         GridViewRowCollection collection = new GridViewRowCollection (new ArrayList ());
116                         Assert.AreEqual (null, collection[0], "Item");
117
118                 }
119         }
120 }