Merge pull request #274 from iainlane/master
[mono.git] / mcs / class / System / Test / System.Collections.Specialized / StringDictionaryTest.cs
1 //
2 // OrderedDictionaryTest.cs -
3 //      Unit tests for System.Collections.Specialized.OrderedDictionary
4 //
5 // Author:
6 //      Sebastien Pouliot  <sebastien@ximian.com>
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 using System;
31 using System.Collections;
32 using System.Collections.Specialized;
33 using System.Runtime.Serialization;
34
35 using NUnit.Framework;
36
37 namespace MonoTests.System.Collections.Specialized {
38
39         [TestFixture]
40         public class StringDictionaryTest {
41
42                 [Test]
43                 public void Empty ()
44                 {
45                         StringDictionary sd = new StringDictionary ();
46                         Assert.AreEqual (0, sd.Count, "Count");
47                         Assert.IsFalse (sd.IsSynchronized, "IsSynchronized");
48                         Assert.AreEqual (0, sd.Keys.Count, "Keys");
49                         Assert.AreEqual (0, sd.Values.Count, "Values");
50                         Assert.IsNotNull (sd.SyncRoot, "SyncRoot");
51                         Assert.IsFalse (sd.ContainsKey ("a"), "ContainsKey");
52                         Assert.IsFalse (sd.ContainsValue ("1"), "ContainsValue");
53                         sd.CopyTo (new DictionaryEntry[0], 0);
54                         Assert.IsNotNull (sd.GetEnumerator (), "GetEnumerator");
55                         sd.Remove ("a"); // doesn't exists
56                         sd.Clear ();
57                 }
58
59                 [Test]
60 #if NET_2_0
61                 [ExpectedException (typeof (ArgumentNullException))]
62 #else
63                 [ExpectedException (typeof (NullReferenceException))]
64 #endif
65                 public void This_Null ()
66                 {
67                         StringDictionary sd = new StringDictionary ();
68                         sd[null] = "1";
69                 }
70
71                 [Test]
72                 public void This_Empty ()
73                 {
74                         StringDictionary sd = new StringDictionary ();
75                         sd[String.Empty] = null;
76                         Assert.IsNull (sd[String.Empty], "this[String.Empty]");
77                         Assert.AreEqual (1, sd.Count, "Count-1");
78                         Assert.IsTrue (sd.ContainsKey (String.Empty), "ContainsKey");
79                         Assert.IsTrue (sd.ContainsValue (null), "ContainsValue");
80                 }
81
82                 [Test]
83                 public void SomeElements ()
84                 {
85                         StringDictionary sd = new StringDictionary ();
86                         for (int i = 0; i < 10; i++)
87                                 sd.Add (i.ToString (), (i * 10).ToString ());
88                         Assert.AreEqual ("10", sd["1"], "this[1]");
89                         Assert.AreEqual (10, sd.Count, "Count-10");
90                         Assert.AreEqual (10, sd.Keys.Count, "Keys");
91                         Assert.AreEqual (10, sd.Values.Count, "Values");
92                         Assert.IsTrue (sd.ContainsKey ("2"), "ContainsKey");
93                         Assert.IsTrue (sd.ContainsValue ("20"), "ContainsValue");
94                         DictionaryEntry[] array = new DictionaryEntry[10];
95                         sd.CopyTo (array, 0);
96                         sd.Remove ("1");
97                         Assert.AreEqual (9, sd.Count, "Count-9");
98                         sd.Clear ();
99                         Assert.AreEqual (0, sd.Count, "Count-0");
100                 }
101
102                 [Test]
103 #if NET_2_0
104                 [ExpectedException (typeof (ArgumentNullException))]
105 #else
106                 [ExpectedException (typeof (NullReferenceException))]
107 #endif
108                 public void Add_NullKey ()
109                 {
110                         StringDictionary sd = new StringDictionary ();
111                         sd.Add (null, "a");
112                 }
113
114                 [Test]
115 #if NET_2_0
116                 [ExpectedException (typeof (ArgumentNullException))]
117 #else
118                 [ExpectedException (typeof (NullReferenceException))]
119 #endif
120                 public void ContainsKey_Null ()
121                 {
122                         StringDictionary sd = new StringDictionary ();
123                         sd.ContainsKey (null);
124                 }
125
126                 [Test]
127 #if NET_2_0
128                 [ExpectedException (typeof (ArgumentNullException))]
129 #else
130                 [ExpectedException (typeof (NullReferenceException))]
131 #endif
132                 public void Remove_Null ()
133                 {
134                         StringDictionary sd = new StringDictionary ();
135                         sd.Remove (null);
136                 }
137         }
138 }