ChangeLog 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464
  1. 2006-07-18 Dean Brettle <[email protected]>
  2. * SqlTest.cs: Added test for inserting zero-length varbinary.
  3. 2006-06-09 Juraj Skripsky <[email protected]>
  4. * DataTableTest.cs (SelectEscaping): Add tests for calling Select()
  5. with escaped string literals.
  6. 2006-03-12 Boris Kirzner <[email protected]>
  7. * System.Data.Test.sln, System.Data.Test.vmwcsproj:
  8. changes for automated testing for TARGET_JVM.
  9. 2006-01-31 Senganal <[email protected]>
  10. * DataSetTest.cs : Added testcase for #77411.
  11. 2006-01-02 Boris Kirzner <[email protected]>
  12. * System.Data.Test.vmwcsproj: added new tests to TARGET_JVM project file.
  13. 2005-12-12 Konstantin Triger <[email protected]>
  14. * System.Data.Test.vmwcsproj: add NET_1_1 define.
  15. 2005-12-07 Boris Kirzner <[email protected]>
  16. * System.Data.Test.sln, System.Data.Test.vmwcsproj: added solution and
  17. project files for TARGET_JVM.
  18. 2005-09-01 Sureshkumar T <[email protected]>
  19. * ProviderTests: Added a new framework for testing Data
  20. Providers. This framework is based on nunit category tests and
  21. also the provider factory provided by Mono.Data.
  22. 2005-09-01 Boris Kirzner <[email protected]>
  23. * System.Data/DataRowCollectionTest.cs: Added another test case for Find().
  24. 2005-08-16 Martin Baulig <[email protected]>
  25. * System.Data.Test.Utils/DataProvider.cs: Renamed namespace
  26. `MonoTests.System.Data.Test.Utils' -> `MonoTests.System.Data.Utils'
  27. to make it compile.
  28. 2005-05-26 Eyal Alaluf <[email protected]>
  29. * Added System.Data.Test.Utils - Keeps utilities comon for all tests
  30. 2005-02-15 Sureshkumar T <[email protected]>
  31. * MySqlTestBed.cs: fix for namespace collision MonoTests.System &
  32. corlib System.
  33. 2004-08-26 Sureshkumar T <[email protected]>
  34. * MySqlTestBed.cs - Added few more fields for DateTime testing
  35. 2004-08-13 Umadevi S <[email protected]>
  36. * Added standalone nunit testcases for datacontainer class.
  37. * Currently will use MSSQL server
  38. * New File
  39. MSSqlTestBed.cs - Base class for MSSql testing
  40. (similar to the mysqltestbed)
  41. 2004-06-16 Sureshkumar T <[email protected]>
  42. * Added standalone NUnit test cases for MySql db related tests.
  43. * Created sub-directory for System.Data.Odbc
  44. * New Files :
  45. MySqlTestBed.cs - Base class for all MySql db based tests.
  46. contains instructions to run these tests.
  47. MySqlTestBed.dll.config - configurable parameters to this test suite.
  48. System.Data.Odbc/OdbcDataReaderTest.cs
  49. System.Data.Odbc/OdbcDataAdapterTest.cs
  50. 2003-05-26 Ben Maurer <[email protected]>
  51. * data_linux_test.args: Updated for new test in System.Data
  52. 2003/04/15 Nick Drochak <[email protected]>
  53. * System.Data_test.build: Use nunit version 2.
  54. 2003-03-31 Nick Drochak <[email protected]>
  55. * makefile.gnu: NUnit.Framework.dll now in class/lib
  56. 2003-03-17 Martin Willemoes Hansen <[email protected]>
  57. * Removed AllTests.cs, System.Data/AllTests.cs,
  58. System.Data.SqlTypes/AllTests.cs,
  59. System.Xml/AllTests.cs,
  60. TheTests.cs
  61. * NUnit2ified makefile.gnu, data_linux_test.args
  62. System.Data/DataColumnCollectionTest.cs,
  63. System.Data/DataSetTest.cs,
  64. System.Data/DataColumnTest.cs,
  65. System.Data/DataTableTest.cs,
  66. System.Data/UniqueConstraintTest.cs,
  67. System.Data/ConstraintCollectionTest.cs,
  68. System.Data/DataRelationTest.cs,
  69. System.Data/ForeignKeyConstraintTest.cs,
  70. System.Data/ConstraintTest.cs,
  71. System.Data/DataRowCollectionTest.cs,
  72. System.Data/DataRowTest.cs,
  73. System.Data.SqlTypes/SqlBinaryTest.cs,
  74. System.Data.SqlTypes/SqlDateTimeTest.cs,
  75. System.Data.SqlTypes/SqlGuidTest.cs,
  76. System.Data.SqlTypes/SqlInt64Test.cs,
  77. System.Data.SqlTypes/SqlStringTest.cs,
  78. System.Data.SqlTypes/SqlBooleanTest.cs,
  79. System.Data.SqlTypes/SqlDecimalTest.cs,
  80. System.Data.SqlTypes/SqlInt16Test.cs,
  81. System.Data.SqlTypes/SqlMoneyTest.cs,
  82. System.Data.SqlTypes/SqlByteTest.cs,
  83. System.Data.SqlTypes/SqlDoubleTest.cs,
  84. System.Data.SqlTypes/SqlInt32Test.cs,
  85. System.Data.SqlTypes/SqlSingleTest.cs
  86. System.Xml/XmlDataDocumentTest.cs
  87. 2003-02-16 Daniel Morgan <[email protected]>
  88. * TestSqlConnection.cs: added test file
  89. to test SqlClient, SybaseClient, and TdsClient
  90. and connections
  91. * System.Data_test.build: excluded
  92. TestSqlConnection.cs from NUnit tests
  93. 2003-01-13 Ville Palo <[email protected]>
  94. * data_linux_test.args: Added some classes
  95. 2002-12-16 Ville Palo <[email protected]>
  96. * System.Xml/XmlDataDocumentTest.cs: some fixes.
  97. 2002-12-14 Ville Palo <[email protected]>
  98. * System.Xml/XmlDataDocumentTest.cs: Added three new tests
  99. 2002-12-10 Ville Palo <[email protected]>
  100. * System.Xml/XmlDataDocumentTest.cs: Added new tests
  101. * System.Xml/region.xml: Changed XmlDocument.
  102. 2002-11-24 Ville Palo <[email protected]>
  103. * System.Xml/XmlDataDocumentTest.cs: Added new test suite for
  104. XmlDataDocument.
  105. * System.Xml/store.xsd:
  106. * System.Xml/region.xsd
  107. * System.Xml/region.xml:
  108. * System.Xml/2books.xml: Needed by XmlDocumentTest.cs
  109. * AllTests.cs:
  110. * data_linux_test.args:Added XmlDataDocumentTest.cs
  111. 2002-11-12 Ville Palo <[email protected]>
  112. * System.Data.SqlTypes/SqlStringTest.cs: Added tests
  113. 2002-11-10 Ville Palo <[email protected]>
  114. * System.Data.SqlTypes/SqlStringTest.cs: Added more tests
  115. 2002-11-07 Ville Palo <[email protected]>
  116. * System.Data.SqlTypes/SqlDecimalTest.cs
  117. * System.Data.SqlTypes/SqlDoubleTest.cs
  118. * System.Data.SqlTypes/SqlMoneyTest.cs
  119. * System.Data.SqlTypes/SqlSingleTest.cs:
  120. mcs don't understand (currently) correctly what 1e10 means,
  121. with mcs it must be 1E+10.
  122. 2002-11-02 Ville Palo <[email protected]>
  123. * System.Data.SqlTypes/SqlDoubleTest.cs: More tests.
  124. 2002-10-31 Ville Palo <[email protected]>
  125. * System.Data.SqlTypes/SqlInt16Test.cs: Litle bugfix
  126. 2002-10-24 Ville Palo <[email protected]>
  127. * System.Data.SqlTypes/AllTests.cs:
  128. * System.Data.SqlTypes/SqlStringTest.cs:
  129. * System.Data.SqlTypes/SqlDecimalTest.cs: new test suites for
  130. SqlDecimal and SqlString
  131. 2002-10-19 Ville Palo <[email protected]>
  132. * System.Data.SqlTypes/AllTests.cs:
  133. * System.Data.SqlTypes/SqlGuidTest.cs: new test suite for SqlGuid.
  134. 2002-10-19 Ville Palo <[email protected]>
  135. * System.Data.SqlTypes/AllTest.cs:
  136. * System.Data.SqlTypes/SqlMoneyTest.cs new test suite for SqlMoney
  137. * System.Data.SqlTypes/SqlDateTimeTest.cs new test suite for
  138. SqlDateTime
  139. 2002-10-16 Daniel Morgan <[email protected]>
  140. * TestSqlDataReader.cs: got to work
  141. with new place for the PostgreSQL provider
  142. at Mono.Data.PostgreSqlClient.
  143. 2002-10-16 Rodrigo Moya <[email protected]>
  144. * System.Data.SqlTypes/AllTests.cs:
  145. * System.Data.SqlTypes/SqlBinary.cs: new test suite for SqlBinary, by
  146. Ville Palo ([email protected]).
  147. 2002-10-16 Daniel Morgan <[email protected]>
  148. * SqlSharpCli.cs: remove file
  149. from this directory because it has been
  150. moved to
  151. mcs/tools/SqlSharp
  152. 2002-10-16 Daniel Morgan <[email protected]>
  153. * PostresTest.cs: modified to
  154. use the new namepace and assembly for PostgreSQL
  155. provider which is Mono.Data.PostgreSqlClient
  156. 2002-10-15 Rodrigo Moya <[email protected]>
  157. * System.Data.SqlTypes/AllTests.cs: added new test.
  158. 2002-10-15 Ville Palo <[email protected]>
  159. * System.Data.SqlTypes/SqlSingleTest.cs: added test suite for
  160. SqlSingle.
  161. 2002-10-15 Daniel Morgan <[email protected]>
  162. * SqlSharpCli.cs: get it to work with System.Data.OleDb
  163. on MS .net when connected to Oracle 8i. Also, get data
  164. to space correctly when data size is smaller than the
  165. header size. If DataType is DateTime, use GetDataTime(),
  166. otherwise, use GetValue().
  167. 2002-10-13 Daniel Morgan <[email protected]>
  168. * SqlSharpCli.cs: better formatting of output
  169. 2002-10-13 Daniel Morgan <[email protected]>
  170. * SqlSharpCli.cs: modified
  171. - add support for the external Mono.Data.SqliteClient
  172. ADO.NET provider. All the user has to do is
  173. "/provider sqlite"
  174. to load it instead of the usual syntax for loading
  175. external providers
  176. "/loadextprovider Mono.Data.SqliteClient Mono.Data.SqliteClient.SqliteConnection".
  177. 2002-10-11 Daniel Morgan <[email protected]>
  178. * OdbcTest.cs: added
  179. for System.Data.Odbc tests. Modify this
  180. test as needed...
  181. 2002-10-10 Ville Palo ([email protected])
  182. * System.Data.SqlTypes/SqlDoubleTest.cs: new test suite for SqlDouble.
  183. 2002-10-10 Daniel Morgan <[email protected]>
  184. * SqlSharpCli.cs: modified
  185. - add support for System.Data.Odbc
  186. - created simple reader to display data for those providers
  187. which have not implemented GetSchemaTable - UseSimpleReader
  188. - allow only providers that support parameters to use them
  189. during exection of SQL - UseParameters
  190. - add support for postional parameter marker (question mark),
  191. the delimted named parameter markers (square brackets) in addition
  192. to colon and at parameter markers. Allow, the parameter marker
  193. to be settable.
  194. 2002-10-09 Ville Palo ([email protected])
  195. * System.Data.SqlTypes/SqlInt16Test.cs:
  196. * System.Data.SqlTypes/SqlInt64Test.cs: new test suites.
  197. 2002-10-04 Daniel Morgan <[email protected]>
  198. * SqlSharpCli.cs: modified
  199. - fix compile errors due to mcs has better error checking
  200. - fix exection of query with semicolon at end which resulted in an exception
  201. - added support for ? postioned parameters
  202. - added support for [] delimited named parameters
  203. - misc. tidbits
  204. 2002-10-03 ville <[email protected]>
  205. * System.Data.SqlClient/AllTests.cs:
  206. * System.Data.SqlClient/SqlByteTest.cs: added SqlByte test suite.
  207. 2002-10-01 Rodrigo Moya <[email protected]>
  208. * System.Data.SqlClient/AllTests.cs: added SqlBoolean test.
  209. 2002-10-01 ville <[email protected]>
  210. * System.Data.SqlClient/SqlBooleanTest.cs: new test suite for
  211. SqlBoolean class.
  212. 2002-09-06 Franklin Wise <[email protected]>
  213. * System.Data\ForeignKeyConstraintTest.cs: added
  214. TestEqualAndHashCode() test.
  215. * System.Data\UniqueConstraint.cs: Added testing for HashCode
  216. 2002-09-04 Franklin Wise <[email protected]>
  217. * New Files:
  218. System.Data\DataRowCollectionTest.cs
  219. System.Data\DataRowTest.cs
  220. System.Data\DataColumnCollectionTest.cs
  221. 2002-08-20 Franklin Wise <[email protected]>
  222. * NewFile: System.Data\DataTableTest.cs
  223. * AllTests.cs: Added DataTableTest to tests.
  224. 2002-08-19 Franklin Wise <[email protected]>
  225. * System.Data\ForeignKeyConstraintTest.cs: Added more tests.
  226. 2002-08-15 Franklin Wise <[email protected]>
  227. * AllTests.cs: Added ForeignKeyConstraintTest to active running tests.
  228. * NewFile: System.Data\ForeignKeyConstraintTest.cs
  229. * System.Data\ConstraintTest: Added new test.
  230. * System.Data\UniqueConstraintTest: Added more tests.
  231. 2002-08-14 Daniel Morgan <[email protected]>
  232. * SqlSharpCli.cs: modified
  233. - implemented the following commands:
  234. \f FILENAME to read a batch of Sql# commands/queries from file.");
  235. \o FILENAME to write out the result of Sql# commands executed to file.");
  236. \load FILENAME to load from file SQL commands into SQL buffer.");
  237. \save FILENAME to save SQL commands from SQL buffer to file.
  238. \print - show what's in the SQL buffer now.
  239. - can save output of result to an html file or text
  240. - entering command "\provider mysql" will dynamically load mysql provider
  241. from its assembly Mono.Data.MySql.dll
  242. 2002-08-13 Daniel Morgan <[email protected]>
  243. * Test/SqlSharpCli.cs: modified
  244. - removed dependency on Mono.Data.MySql assembly and classes
  245. (if you still want to use Mono.Data.MySql, use \loadextprovider to load it).
  246. - added use of provider System.Data.OleDb classes; however, you must
  247. have a working libgda.
  248. - added dynamic loading of .NET Data Provider's assembly and Connection class
  249. which can be loaded via \loadextprovider
  250. - renamed providers: postgresclient to postgresql, oracleclient to oracle
  251. - add new command \exenonquery to execute non queries
  252. - add new command \exescalar to execute and return one row/one column of data
  253. - added beginnings of internal variables by adding new commands: \set, \unset, and
  254. \variable
  255. - add new command \r to reset (clear) the query buffer
  256. - if quiting, need to close database connection if still open
  257. 2002-08-12 Franklin Wise <[email protected]>
  258. * NewFile: Added test for System.Data.UniqueConstraintTest.cs
  259. * NewFile: Added test for System.Data.ConstraintTest.cs
  260. * NewFile: Added test for System.Data.ConstraintCollection.cs
  261. * Added blank test for DataColumnTest so that NUnit won't warn
  262. of no tests
  263. * Updated System.Data.AllTests.cs to include the new tests
  264. 2002-05-27 Tim Coleman <[email protected]>
  265. * TestSqlDataAdapter.cs: remove explicit opening of connection.
  266. This should occur implicitly now.
  267. 2002-05-23 Daniel Morgan <[email protected]>
  268. * TestSqlParameters.cs: read and display the schema columns
  269. correctly
  270. 2002-05-16 Tim Coleman <[email protected]>
  271. * TestSqlDataAdapter.cs: Added the foreach loop to iterate through
  272. all of the DataRows in the DataSet table "Table", as the
  273. GetEnumerator method of InternalDataCollectionBase has now been
  274. implemented.
  275. 2002/05/17 Nick Drochak <[email protected]>
  276. * System.Data_test.build: Remove RunTests from the default build. We
  277. can add this later, but it keeps the build from breaking for now.
  278. * TestSqlDataAdapter.cs: Fix build breaker.
  279. 2002-05-11 Daniel Morgan <[email protected]>
  280. * Test/PostgresTest.cs: added call to PostgreSQL stored procedure
  281. version() which returns the version of the PostgreSQL DBMS you
  282. are connected to. This works and I did not realize it. Thanks
  283. goes to Gonzalo.
  284. 2002-05-11 Daniel Morgan <[email protected]>
  285. * AllTests.cs: needed a using for System.Data and System.Data.SqlClient,
  286. changed SqlTypes.AllTests.Suite to System.Data.SqlTypes.AllTests.Suite
  287. * System.Data/DataColumnTest.cs: changed typeof to DataColumnTest
  288. 2002-05-10 Rodrigo Moya <[email protected]>
  289. * TestDataColumn.cs: removed.
  290. * System.Data_test.build: removed reference to TestDataColumn.
  291. * TheTests.cs: added RunDataColumnTest class.
  292. (RunAllTests.AddAllTests): added test for RunDataColumnTest.
  293. * System.Data/AllTests.cs: test suite for System.Data.
  294. * System.Data/DataColumnTest.cs: NUnit test for DataColumn.
  295. 2002-05-09 Daniel Morgan <[email protected]>
  296. * System.Data_test.build: exclude file TestDataColumn.cs
  297. test.build files have two places where a file needs to
  298. be excluded
  299. 2002-05-06 Daniel Morgan <[email protected]>
  300. * System.Data.SqlTypes.SqlInt32Test.cs: missing
  301. declaration for SqlInt32 z which was a test build blocker
  302. * PostgresTest.cs: got rid of warning about missing e
  303. * Test/PostgresTest.cs: exclude PostgresTest.cs
  304. from test build
  305. 2002-05-05 Tim Coleman <[email protected]>
  306. * TheTests.cs:
  307. * System.Data.SqlTypes/SqlInt32Test.cs:
  308. More test cases for System.Data.SqlTypes.SqlInt32
  309. 2002-05-03 Tim Coleman <[email protected]>
  310. * Added ChangeLog to test dir
  311. * Added NUnit framework necessary for make test
  312. * Added subdirectory for System.Data.SqlTypes
  313. * New files:
  314. ChangeLog
  315. AllTests.cs
  316. TheTests.cs
  317. System.Data_test.build
  318. System.Data.SqlTypes
  319. System.Data.SqlTypes/AllTests.cs
  320. System.Data.SqlTypes/SqlInt32Test.cs