Merge pull request #1870 from saper/langinfo_h
[mono.git] / mcs / class / System / Test / System.Configuration / SettingsPropertyValueCollectionTest.cs
1 //
2 // System.Configuration.SettingsPropertyCollectionTest.cs - Unit tests
3 // for System.Configuration.SettingsPropertyCollection.
4 //
5 // Author:
6 //      Chris Toshok  <toshok@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
31 using System;
32 using System.Text;
33 using System.Configuration;
34 using System.Collections.Specialized;
35 using NUnit.Framework;
36
37 namespace MonoTests.System.Configuration {
38
39         [TestFixture]
40         public class SettingsPropertyValueCollectionTest {
41
42                 [Test]
43                 public void Add ()
44                 {
45                         SettingsPropertyValueCollection col = new SettingsPropertyValueCollection ();
46                         SettingsProperty test_prop = new SettingsProperty ("test_prop");
47                         SettingsPropertyValue val = new SettingsPropertyValue (test_prop);
48
49                         Assert.AreEqual (0, col.Count, "A1");
50
51                         col.Add (val);
52
53                         Assert.AreEqual (1, col.Count, "A2");
54                 }
55
56                 [Test]
57                 [ExpectedException (typeof (ArgumentException))]
58                 public void AddDuplicate ()
59                 {
60                         SettingsPropertyValueCollection col = new SettingsPropertyValueCollection ();
61                         SettingsProperty test_prop = new SettingsProperty ("test_prop");
62                         SettingsPropertyValue val = new SettingsPropertyValue (test_prop);
63
64                         col.Add (val);
65
66                         Assert.AreEqual (1, col.Count, "A1");
67
68                         col.Add (val);
69
70                         Assert.AreEqual (1, col.Count, "A2");
71                 }
72
73                 [Test]
74                 public void Remove ()
75                 {
76                         SettingsPropertyValueCollection col = new SettingsPropertyValueCollection ();
77                         SettingsProperty test_prop = new SettingsProperty ("test_prop");
78                         SettingsPropertyValue val = new SettingsPropertyValue (test_prop);
79
80                         col.Add (val);
81
82                         Assert.AreEqual (1, col.Count, "A1");
83
84                         col.Remove ("test_prop");
85
86                         Assert.AreEqual (0, col.Count, "A2");
87                 }
88
89                 [Test]
90                 public void Remove_NonExistant ()
91                 {
92                         SettingsPropertyValueCollection col = new SettingsPropertyValueCollection ();
93                         SettingsProperty test_prop = new SettingsProperty ("test_prop");
94                         SettingsPropertyValue val = new SettingsPropertyValue (test_prop);
95
96                         col.Add (val);
97
98                         Assert.AreEqual (1, col.Count, "A1");
99
100                         col.Remove ("test_prop2");
101
102                         Assert.AreEqual (1, col.Count, "A2");
103                 }
104
105                 [Test]
106                 public void Clear ()
107                 {
108                         SettingsPropertyValueCollection col = new SettingsPropertyValueCollection ();
109                         SettingsProperty test_prop = new SettingsProperty ("test_prop");
110                         SettingsPropertyValue val = new SettingsPropertyValue (test_prop);
111
112                         col.Add (val);
113
114                         Assert.AreEqual (1, col.Count, "A1");
115
116                         col.Clear ();
117
118                         Assert.AreEqual (0, col.Count, "A2");
119                 }
120
121                 [Test]
122                 [ExpectedException (typeof (NotSupportedException))]
123                 public void ReadOnly_Add ()
124                 {
125                         SettingsPropertyValueCollection col = new SettingsPropertyValueCollection ();
126
127                         col.SetReadOnly ();
128
129                         SettingsProperty test_prop = new SettingsProperty ("test_prop");
130                         SettingsPropertyValue val = new SettingsPropertyValue (test_prop);
131                         col.Add (val);
132                 }
133
134                 [Test]
135                 [ExpectedException (typeof (NotSupportedException))]
136                 public void ReadOnly_Remove ()
137                 {
138                         SettingsPropertyValueCollection col = new SettingsPropertyValueCollection ();
139
140                         SettingsProperty test_prop = new SettingsProperty ("test_prop");
141                         SettingsPropertyValue val = new SettingsPropertyValue (test_prop);
142                         col.Add (val);
143
144                         col.SetReadOnly ();
145
146                         col.Remove ("test_prop");
147                 }
148
149                 [Test]
150                 [ExpectedException (typeof (NotSupportedException))]
151                 public void ReadOnly_Clear ()
152                 {
153                         SettingsPropertyValueCollection col = new SettingsPropertyValueCollection ();
154
155                         SettingsProperty test_prop = new SettingsProperty ("test_prop");
156                         SettingsPropertyValue val = new SettingsPropertyValue (test_prop);
157                         col.Add (val);
158
159                         col.SetReadOnly ();
160
161                         col.Clear ();
162                 }
163         }
164
165 }
166