MySqlTestBed.cs 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. //
  2. // MySqlTestBed.cs : This is base class which manages the connections to
  3. // mysql database. This serves as a base class for all
  4. // mysql database dependant tests.
  5. //
  6. // To run :
  7. // * create a test database in mysql server.
  8. // * create an DNS entry.
  9. // * update the MySqlTestBed.config with the DNS names and
  10. // username, password for connection in the configuration key
  11. // MySql-DSN
  12. // * compile using following command
  13. // mcs /r:System.Data.dll,NUnit.Framework.dll /t:library /debug
  14. // /out:MySqlTestBed.dll MySqlTestBed.cs System.Data.Odbc/*.cs
  15. // * To run the tests
  16. // mono /usr/local/bin/nunit-console.exe MySqlTestBed.dll
  17. //
  18. // Author:
  19. // Sureshkumar T ([email protected])
  20. //
  21. // Copyright (c) 2004 Novell Inc., and the individuals listed
  22. // on the ChangeLog entries.
  23. //
  24. // Permission is hereby granted, free of charge, to any person obtaining
  25. // a copy of this software and associated documentation files (the
  26. // "Software"), to deal in the Software without restriction, including
  27. // without limitation the rights to use, copy, modify, merge, publish,
  28. // distribute, sublicense, and/or sell copies of the Software, and to
  29. // permit persons to whom the Software is furnished to do so, subject to
  30. // the following conditions:
  31. //
  32. // The above copyright notice and this permission notice shall be
  33. // included in all copies or substantial portions of the Software.
  34. //
  35. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  36. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  37. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  38. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  39. // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  40. // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  41. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  42. //
  43. using System;
  44. using System.Data;
  45. using System.Data.Odbc;
  46. using System.Collections.Specialized;
  47. namespace MonoTests.System.Data
  48. {
  49. public class MySqlOdbcBaseClient
  50. {
  51. #region protected members
  52. protected string connectionString = null;
  53. protected OdbcConnection conn = null;
  54. protected bool isConnAlive = false;
  55. #endregion
  56. public MySqlOdbcBaseClient ()
  57. {
  58. //Connection String with DSN.
  59. NameValueCollection appSettings = System.Configuration.ConfigurationSettings.AppSettings ;
  60. connectionString = appSettings ["MySql-DSN"];
  61. conn = new OdbcConnection (connectionString);
  62. }
  63. protected void OpenConnection ()
  64. {
  65. conn.ConnectionString = connectionString;
  66. conn.Open ();
  67. // run tests only if the connection is open,
  68. // otherwise make it fail, to setup with correct
  69. // database settings
  70. if (conn != null && conn.State != ConnectionState.Closed)
  71. isConnAlive = true;
  72. }
  73. protected void CloseConnection ()
  74. {
  75. if (conn != null && conn.State != ConnectionState.Closed) {
  76. conn.Close ();
  77. isConnAlive = false;
  78. }
  79. }
  80. protected void CreateTestSetup ()
  81. {
  82. if (!isConnAlive)
  83. return ;
  84. // Create test database & tables
  85. // mysql odbc does not supports batch sql statements
  86. string createQuery = "DROP TABLE IF EXISTS test;" ;
  87. ExecuteQuery (createQuery);
  88. createQuery = "CREATE TABLE test (" +
  89. "pk_tint TINYINT NOT NULL PRIMARY KEY," +
  90. "col_char CHAR(20)," +
  91. "col_int INT," +
  92. "col_blob TINYBLOB," +
  93. "col_datetime DATETIME," +
  94. "col_date DATE," +
  95. "col_time TIME" +
  96. ");";
  97. ExecuteQuery (createQuery);
  98. createQuery = "INSERT INTO test VALUES (1, 'mono test" +
  99. "#1', 255, 127123645917568585638457243856234985, '2004-08-22', '2004-08-22', '12:00:00' );" ;
  100. ExecuteQuery (createQuery);
  101. createQuery = "INSERT INTO test VALUES (2, 'mono test" +
  102. "#2', 256, NULL, NULL, NULL, NULL );";
  103. ExecuteQuery (createQuery);
  104. createQuery = "INSERT INTO test VALUES (3, 'mono test" +
  105. "#3', 257 , 127123645917568585638457243856234985, '2004-08-22', '2004-08-22', '12:00:00');" ;
  106. ExecuteQuery (createQuery);
  107. createQuery = "INSERT INTO test VALUES (4, 'mono test" +
  108. "#4', 258 , 127123645917568585638457243856234985, '2004-08-22', '2004-08-22', '12:00:00');" ;
  109. ExecuteQuery (createQuery);
  110. createQuery = "INSERT INTO test VALUES (5, 'mono test" +
  111. "#5', 259, 127123645917568585638457243856234985, '2004-08-22', '2004-08-22', '12:00:00' );" ;
  112. ExecuteQuery (createQuery);
  113. }
  114. private void ExecuteQuery (string query)
  115. {
  116. OdbcCommand cmd = new OdbcCommand ();
  117. cmd.Connection = conn;
  118. cmd.CommandText = query;
  119. try {
  120. int recordsAff = cmd.ExecuteNonQuery ();
  121. } catch (Exception e) {
  122. }
  123. }
  124. protected void CleanTestSetup ()
  125. {
  126. if (!isConnAlive)
  127. return;
  128. // delete test database
  129. string dropQuery = "DROP table IF EXISTS test";
  130. //ExecuteQuery(dropQuery);
  131. }
  132. }
  133. }