2007-01-08 Nagappan A <anagappan@novell.com>
[mono.git] / mcs / class / System.Data / Test / ProviderTests / System.Data.SqlClient / SqlConnectionStringBuilderTest.cs
1 // SqlConnectionStringBuilderTest.cs - NUnit Test Cases for Testing the 
2 // SqlConnectionStringBuilder class
3 //
4 // Author: 
5 //      Sureshkumar T (tsureshkumar@novell.com)
6 //
7 //
8 // Copyright (C) 2004 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 #if NET_2_0
31
32 #region Using directives
33
34 using System;
35 using System.Text;
36 using System.Collections;
37
38 using System.Data;
39 using System.Data.SqlClient;
40
41 using NUnit.Framework;
42
43 #endregion
44
45 namespace MonoTests.System.Data.Common
46 {
47
48         [TestFixture]
49         public class SqlConnectionStringBuilderTest
50         {
51                 private SqlConnectionStringBuilder builder = null;
52                 
53                 [Test]
54                 public void DefaultValuestTest ()
55                 {
56                         builder = new SqlConnectionStringBuilder ();
57                         Assert.AreEqual ("", builder.ConnectionString, "#DV1 default values is wrong");
58                 }
59
60                 [Test]
61                 public void DefaultValuestTest2 ()
62                 {
63                         builder = new SqlConnectionStringBuilder ("SERVER=localhost;");
64                         Assert.AreEqual ("Data Source=localhost", builder.ConnectionString, "#DVT1 default values is wrong");
65                 }
66
67                 [Test]
68                 public void PropertiesTest ()
69                 {
70                         builder = new SqlConnectionStringBuilder ("SERVER=localhost;");
71                         builder.AsynchronousProcessing = true;
72                         builder.ApplicationName = "mono test";
73                         Assert.AreEqual (true, 
74                                          builder.ConnectionString.Contains ("Asynchronous Processing=True"),
75                                          "#PT1 boolean value must be true");
76                 }
77                 
78                 [Test]
79                 public void ItemTest ()
80                 {
81                         builder = new SqlConnectionStringBuilder ("SERVER=localhost;");
82                         builder ["Network Library"] = "DBMSSOCN";
83                         Assert.AreEqual (true, 
84                                          builder.ConnectionString.Contains ("Network Library=dbmssocn"),
85                                          "#PT1 network library should exist");
86                 }
87
88                 public void NullTest ()
89                 {
90                         builder = new SqlConnectionStringBuilder ("SERVER=localhost;Network=DBMSSOCN");
91                         builder ["Network Library"] = null;
92                         Assert.AreEqual ("Data Source=localhost", builder.ConnectionString,
93                                          "#NT1 should remove the key if set with null");
94                 }
95
96                 public void ContainsKeyTest ()
97                 {
98                         builder = new SqlConnectionStringBuilder ("SERVER=localhost;Network=DBMSSOCN");
99                         Assert.AreEqual (true, builder.ContainsKey ("NETWORK"),
100                                          "#CKT1 should say true");
101                         Assert.AreEqual (false, builder.ContainsKey ("ABCD"),
102                                          "#CKT2 should say false");
103                 }
104                 
105                 [Test, ExpectedException (typeof (ArgumentException))]
106                 public void InvalidKeyTest ()
107                 {
108                         builder = new SqlConnectionStringBuilder ("SERVER=localhost;Network=DBMSSOCN");
109                         int value = (int) builder ["ABCD"];
110                         value++; // to avoid warning
111                 }
112
113                 [Test]
114                 public void RemoveTest ()
115                 {
116                         builder = new SqlConnectionStringBuilder ("SERVER = localhost ;Network=DBMSSOCN");
117                         // non existing key
118                         Assert.AreEqual (false, builder.Remove ("ABCD"),
119                                          "#RT1 cannot remove non existant key");
120                         Assert.AreEqual (true, builder.Remove ("NETWORK library"),
121                                          "#RT2 should remove the key");
122                         Assert.AreEqual ("Data Source=localhost", builder.ConnectionString,
123                                          "#RT3 should have removed the key");
124                 }
125                 
126         }
127 }
128
129 #endif // NET_2_0