79b70ba222d7e04892cc601f2053178cdf2bd9e5
[mono.git] / mcs / class / System.Configuration / Test / System.Configuration / StringValidatorTest.cs
1 //
2 // System.Configuration.StringValidatorTest.cs - Unit tests
3 // for System.Configuration.StringValidator.
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.Configuration;
33 using NUnit.Framework;
34
35 namespace MonoTests.System.Configuration {
36         [TestFixture]
37         public class StringValidatorTest
38         {
39                 [Test]
40                 public void CanValidate ()
41                 {
42                         StringValidator v = new StringValidator (5);
43
44                         Assert.IsTrue (v.CanValidate (typeof (string)));
45                         Assert.IsFalse (v.CanValidate (typeof (int)));
46                         Assert.IsFalse (v.CanValidate (typeof (object)));
47                 }
48
49                 [Test]
50                 public void NullZero ()
51                 {
52                         StringValidator v = new StringValidator (0);
53
54                         v.Validate (null);
55                 }
56
57                 [Test]
58                 [ExpectedException (typeof (ArgumentException))]
59                 public void Null ()
60                 {
61                         StringValidator v = new StringValidator (1);
62
63                         v.Validate (null);
64                 }
65
66                 [Test]
67                 public void MinLenth ()
68                 {
69                         StringValidator v = new StringValidator (5);
70
71                         v.Validate ("123456789");
72                         v.Validate ("1234567");
73                         v.Validate ("12345");
74                 }
75
76                 [Test]
77                 [ExpectedException (typeof (ArgumentException))]
78                 public void MinLength_fail ()
79                 {
80                         StringValidator v = new StringValidator (5);
81
82                         v.Validate ("1234");
83                 }
84
85                 [Test]
86                 public void Bounded ()
87                 {
88                         StringValidator v = new StringValidator (5, 7);
89
90                         v.Validate ("12345");
91                         v.Validate ("123456");
92                         v.Validate ("123457");
93                 }
94
95                 [Test]
96                 [ExpectedException (typeof (ArgumentException))]
97                 public void Bounded_fail1()
98                 {
99                         StringValidator v = new StringValidator (5, 7);
100
101                         v.Validate ("1234");
102                 }
103
104                 [Test]
105                 [ExpectedException (typeof (ArgumentException))]
106                 public void Bounded_fail2()
107                 {
108                         StringValidator v = new StringValidator (5, 7);
109
110                         v.Validate ("12345678");
111                 }
112
113                 [Test]
114                 public void Invalid ()
115                 {
116                         StringValidator v = new StringValidator (5, 7, "890");
117
118                         v.Validate ("123456");
119                 }
120
121                 [Test]
122                 [ExpectedException (typeof (ArgumentException))]
123                 public void Invalid_fail ()
124                 {
125                         StringValidator v = new StringValidator (5, 7, "345");
126
127                         v.Validate ("123456");
128                 }
129
130                 [Test]
131                 [ExpectedException (typeof (ArgumentException))]
132                 public void Invalid_fail_length ()
133                 {
134                         StringValidator v = new StringValidator (5, 7, "890");
135
136                         v.Validate ("12345678");
137                 }
138         }
139 }
140