2004-06-23 Sureshkumar T <TSureshkumar@novell.com>
authorSureshkumar T <suresh@mono-cvs.ximian.com>
Wed, 23 Jun 2004 05:13:42 +0000 (05:13 -0000)
committerSureshkumar T <suresh@mono-cvs.ximian.com>
Wed, 23 Jun 2004 05:13:42 +0000 (05:13 -0000)
        * Added test to check whether the OdbcConnection.Close method closes
          all the handles.
        * New files:
                OdbcConnectionTest.cs   - test suite for OdbcConnection class.

svn path=/trunk/mcs/; revision=30160

mcs/class/System.Data/Test/System.Data.Odbc/ChangeLog
mcs/class/System.Data/Test/System.Data.Odbc/OdbcConnectionTest.cs [new file with mode: 0644]

index 6b166f23716dc682540976b3125569a4cae17b25..bd7b77d4f196b1ef9e80554e9dfc793c01b98610 100644 (file)
@@ -1,3 +1,9 @@
+2004-06-23  Sureshkumar T <TSureshkumar@novell.com>
+       * Added test to check whether the OdbcConnection.Close method closes
+         all the handles.
+       * New files:
+               OdbcConnectionTest.cs   - test suite for OdbcConnection class.
+
 2004-06-16  Sureshkumar T <TSureshkumar@novell.com>
        * Added Odbc tests using MySql test database
        * New files:
diff --git a/mcs/class/System.Data/Test/System.Data.Odbc/OdbcConnectionTest.cs b/mcs/class/System.Data/Test/System.Data.Odbc/OdbcConnectionTest.cs
new file mode 100644 (file)
index 0000000..1704070
--- /dev/null
@@ -0,0 +1,53 @@
+//\r
+// OdbcConnectionTest.cs - NUnit Test Cases for testing the\r
+//                          OdbcConnectionTest class\r
+// Author:\r
+//      Sureshkumar T (TSureshkumar@novell.com)\r
+//\r
+// Copyright (c) 2004 Novell Inc., and the individuals listed\r
+// on the ChangeLog entries.\r
+//\r
+// Permission is hereby granted, free of charge, to any person obtaining\r
+// a copy of this software and associated documentation files (the\r
+// "Software"), to deal in the Software without restriction, including\r
+// without limitation the rights to use, copy, modify, merge, publish,\r
+// distribute, sublicense, and/or sell copies of the Software, and to\r
+// permit persons to whom the Software is furnished to do so, subject to\r
+// the following conditions:\r
+//\r
+// The above copyright notice and this permission notice shall be\r
+// included in all copies or substantial portions of the Software.\r
+//\r
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,\r
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\r
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\r
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\r
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
+//\r
+\r
+using System;\r
+using System.Data;\r
+using System.Data.Odbc;\r
+\r
+using NUnit.Framework;\r
+\r
+namespace MonoTests.System.Data.Odbc\r
+{\r
+\r
+  [TestFixture]\r
+  public class OdbcConnectionTest : MySqlOdbcBaseClient \r
+  {\r
+          [Test]\r
+          public void MaximumConnectionsLeakTest () {\r
+               OdbcConnection conn = new OdbcConnection (connectionString);\r
+               // if your db allows a maximum no. of simultaneous connections\r
+               // below 200, this test will work. Otherwise, change this limit\r
+               for (int i=0; i < 200; i++) {\r
+                       conn.Open ();\r
+                       conn.Close ();\r
+               }\r
+          }\r
+    }\r
+}\r