Merge pull request #704 from jgagnon/master
[mono.git] / mcs / class / System / Test / System.Configuration / SettingsPropertyTest.cs
1 //
2 // System.Configuration.SettingsPropertyTest.cs - Unit tests for
3 // System.Configuration.SettingsProperty.
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 SettingsPropertyTest {
41
42                 [Test]
43                 public void Ctor_1 ()
44                 {
45                         SettingsProperty p = new SettingsProperty ("property",
46                                                                    typeof (int),
47                                                                    null,
48                                                                    true,
49                                                                    10,
50                                                                    SettingsSerializeAs.Binary,
51                                                                    null,
52                                                                    true,
53                                                                    false);
54
55                         Assert.AreEqual ("property", p.Name, "A1");
56                         Assert.AreEqual (typeof (int), p.PropertyType, "A2");
57                         Assert.AreEqual (null, p.Provider, "A3");
58                         Assert.AreEqual (10, (int)p.DefaultValue, "A4");
59                         Assert.AreEqual (SettingsSerializeAs.Binary, p.SerializeAs, "A5");
60                         Assert.IsNull (p.Attributes, "A6");
61                         Assert.IsTrue (p.ThrowOnErrorDeserializing, "A7");
62                         Assert.IsFalse (p.ThrowOnErrorSerializing, "A8");
63                         Assert.IsTrue (p.IsReadOnly, "A9");
64                 }
65
66                 [Test]
67                 public void Ctor_2 ()
68                 {
69                         SettingsProperty q = new SettingsProperty ("property",
70                                                                    typeof (int),
71                                                                    null,
72                                                                    true,
73                                                                    10,
74                                                                    SettingsSerializeAs.Binary,
75                                                                    new SettingsAttributeDictionary(),
76                                                                    true,
77                                                                    false);
78
79                         SettingsProperty p = new SettingsProperty (q);
80
81                         Assert.AreEqual ("property", p.Name, "A1");
82                         Assert.AreEqual (typeof (int), p.PropertyType, "A2");
83                         Assert.AreEqual (null, p.Provider, "A3");
84                         Assert.AreEqual (10, (int)p.DefaultValue, "A4");
85                         Assert.AreEqual (SettingsSerializeAs.Binary, p.SerializeAs, "A5");
86                         Assert.IsNotNull (p.Attributes, "A6");
87                         Assert.IsTrue (p.ThrowOnErrorDeserializing, "A7");
88                         Assert.IsFalse (p.ThrowOnErrorSerializing, "A8");
89                         Assert.IsTrue (p.IsReadOnly, "A9");
90                 }
91
92                 [Test]
93                 [ExpectedException (typeof (ArgumentNullException))]
94                 public void Ctor_2_AttributesNull ()
95                 {
96                         /* same as above, but a null
97                          * SettingsAttributeDictionary, which causes a
98                          * ANE in the ctor. */
99                         SettingsProperty q = new SettingsProperty ("property",
100                                                                    typeof (int),
101                                                                    null,
102                                                                    true,
103                                                                    10,
104                                                                    SettingsSerializeAs.Binary,
105                                                                    null,
106                                                                    true,
107                                                                    false);
108
109                         SettingsProperty p = new SettingsProperty (q);
110                 }
111
112                 [Test]
113                 public void Ctor_2_NameNull ()
114                 {
115                         SettingsProperty q = new SettingsProperty (null,
116                                                                    typeof (int),
117                                                                    null,
118                                                                    true,
119                                                                    10,
120                                                                    SettingsSerializeAs.Binary,
121                                                                    new SettingsAttributeDictionary(),
122                                                                    true,
123                                                                    false);
124                 }
125
126                 [Test]
127                 public void Ctor_3 ()
128                 {
129                         SettingsProperty p = new SettingsProperty ("property");
130
131                         Assert.AreEqual ("property", p.Name, "A1");
132                         Assert.AreEqual (null, p.PropertyType, "A2");
133                         Assert.AreEqual (null, p.Provider, "A3");
134                         Assert.AreEqual (null, p.DefaultValue, "A4");
135                         Assert.AreEqual (SettingsSerializeAs.String, p.SerializeAs, "A5");
136                         Assert.IsNotNull (p.Attributes, "A6");
137                         Assert.IsFalse (p.ThrowOnErrorDeserializing, "A7");
138                         Assert.IsFalse (p.ThrowOnErrorSerializing, "A8");
139                         Assert.IsFalse (p.IsReadOnly, "A9");
140                 }
141         }
142
143 }
144