Bug 15572. Lookup KnownTypeCollection element types in MSSimpleNamespace
[mono.git] / mcs / class / Mono.Data.Sqlite / Test / SqliteConnectionTest.cs
1 // SqliteConnectionTest.cs - NUnit Test Cases for SqliteConnection
2 //
3 // Authors:
4 //   Sureshkumar T <tsureshkumar@novell.com>
5 // 
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
31 using System;
32 using System.Data;
33 using Mono.Data.Sqlite;
34
35 using NUnit.Framework;
36
37 namespace MonoTests.Mono.Data.Sqlite
38 {
39         [TestFixture]
40         public class SqliteConnectionTest
41         {
42                 readonly static string _uri = "test.db";
43                 readonly static string _connectionString = "URI=file://" + _uri + ", version=3";
44                 SqliteConnection _conn = new SqliteConnection ();
45
46 #if NET_2_0
47                 [Test]
48                 [ExpectedException (typeof (ArgumentNullException))]
49                 public void ConnectionStringTest_Null ()
50                 {
51                         _conn.ConnectionString = null;
52                 }
53
54                 [Test]
55                 [ExpectedException (typeof (InvalidOperationException))]
56                 public void ConnectionStringTest_MustBeClosed ()
57                 {
58                         _conn.ConnectionString = _connectionString;
59                         try {
60                                 _conn.Open ();
61                                 _conn.ConnectionString = _connectionString;
62                         } finally {
63                                 _conn.Close ();
64                         }
65                 }
66
67 #else
68                 [Test]
69                 [ExpectedException (typeof (InvalidOperationException))]
70                 public void ConnectionStringTest_Empty ()
71                 {
72                         _conn.ConnectionString = "";
73                 }
74
75                 [Test]
76                 [ExpectedException (typeof (InvalidOperationException))]
77                 public void ConnectionStringTest_NoURI ()
78                 {
79                         _conn.ConnectionString = "version=3";
80                 }
81
82                 // In 2.0 _conn.Database always returns "main"
83                 [Test]
84                 public void ConnectionStringTest_IgnoreSpacesAndTrim ()
85                 {
86                         _conn.ConnectionString = "URI=file://xyz      , ,,, ,, version=3";
87                         Assert.AreEqual ("xyz", _conn.Database, "#1 file path is wrong");
88                 }
89 #endif
90                                 // behavior has changed, I guess
91                 //[Test]
92                 [Ignore ("opening a connection should not create db! though, leave for now")]
93                 public void OpenTest ()
94                 {
95                         try {
96                                 _conn.ConnectionString = _connectionString;
97                                 _conn.Open ();
98                                 Assert.AreEqual (ConnectionState.Open, _conn.State, "#1 not opened");
99                                 _conn.Close ();
100
101                                 // negative test: try opening a non-existent file
102                                 _conn.ConnectionString = "URI=file://abcdefgh.db, version=3";
103                                 try {
104                                         _conn.Open ();
105                                         Assert.Fail ("#1 should have failed on opening a non-existent db");
106                                 } catch (ArgumentException e) {Console.WriteLine (e);}
107                                 
108                         } finally {
109                                 if (_conn != null && _conn.State != ConnectionState.Closed)
110                                         _conn.Close ();
111                         }
112                 }
113
114         }
115 }