ChangeLog 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394
  1. 2009-01-04 Gert Driesen <[email protected]>
  2. * SqlCommandBuilderTest.cs: Improved tests to also check
  3. behavior of RefreshSchema.
  4. * SqlDataReaderTest.cs: Added tests for GetBytes.
  5. 2009-01-03 Gert Driesen <[email protected]>
  6. * SqlCommandBuilderTest.cs: Improve Get*Command tests.
  7. * SqlCommandTest.cs: Fixed warning.
  8. * SqlConnectionTest.cs: Removed unused property.
  9. * SqlDataReaderTest.cs: Enabled GetChars test on 1.0
  10. profile. Added GetValues test. Added and improved
  11. GetSqlValue tests. Improved HasRows and NextResult
  12. tests. Added GetFieldType tests. Added big batch of
  13. schema-related tests.
  14. * SqlParameterTest.cs: Moved disconnected tests to
  15. System.Data test suite. Improved test for bug
  16. #382635. Added test for failed conversion to SQL type.
  17. 2008-12-31 Gert Driesen <[email protected]>
  18. * SqlCommandBuilderTest.cs: Improve Get*Command tests.
  19. * SqlCommandTest.cs: Added test for bug #341743. Added test
  20. for connection state after executing invalid SQL. Improved
  21. stored procedure test to check behavior with and without
  22. leading '@' for parameter names. Minor formatting changes.
  23. * SqlConnectionTest.cs: Split up connection string errors
  24. test.
  25. * SqlDataReaderTest.cs: Improved GetInt64Test. Improved and
  26. added GetBytes tests. Added GetSqlValues and HasRows tests.
  27. Added GetSchemaTable test. Improved GetProviderSpecificFieldType
  28. tests.
  29. * SqlParameterTest.cs: Improved ParameterType test. Added
  30. type inferrence tests.
  31. * SqlTransactionTest.cs: Allow not working tests to run on MS.
  32. 2008-12-30 Gert Driesen <[email protected]>
  33. * SqlConnectionTest.cs: Improve Database test.
  34. 2008-11-11 Gert Driesen <[email protected]>
  35. * SqlCommandTest.cs: Added (SMALL)MONEY rounding tests.
  36. 2008-11-11 Gert Driesen <[email protected]>
  37. * SqlCommandTest.cs: Added tests for bug #428139. Added test for
  38. SMALLMONEY overflows. Added workaround for Assert.AreEqual bug in
  39. NUnit v2.2.0.
  40. 2008-11-09 Gert Driesen <[email protected]>
  41. * SqlConnectionTest.cs: Added tests for ClearPool and ClearAllPools.
  42. 2008-11-08 Gert Driesen <[email protected]>
  43. * SqlConnectionTest.cs: Added test for bug #383061.
  44. 2008-09-17 Veerapuram Varadhan <[email protected]>
  45. * SqlCommandBuilderTest.cs: Added test for DeriverParameters.
  46. 2008-07-28 Gert Driesen <[email protected]>
  47. * SqlCommandTest.cs: Enabled test for bug #412569.
  48. 2008-07-28 Gert Driesen <[email protected]>
  49. * SqlCommandTest.cs: Enabled and improved tests for pending transaction
  50. and transaction that is not associated with connection. Added tests for
  51. Prepare.
  52. 2008-07-28 Gert Driesen <[email protected]>
  53. * SqlCommandTest.cs: Enabled and improved tests for Execute* with
  54. only a transaction set.
  55. 2008-07-28 Gert Driesen <[email protected]>
  56. * SqlCommandTest.cs: Enabled test for bug #412579.
  57. 2008-07-28 Gert Driesen <[email protected]>
  58. * SqlCommandTest.cs: Enabled and improved test for bug #412576.
  59. Enabled test for changing Connection while reader is open.
  60. 2008-07-28 Gert Driesen <[email protected]>
  61. * SqlConnectionTest.cs: Enabled and improved test for bug #412571.
  62. 2008-07-28 Gert Driesen <[email protected]>
  63. * SqlConnectionTest.cs: Enabled test for bug #412574.
  64. 2008-07-28 Gert Driesen <[email protected]>
  65. * SqlCommandTest.cs: Moved tests that do not require connection to
  66. regular test suite. Improved existing tests, and added set of new
  67. tests. Reduce failure count.
  68. * SqlConnectionTest.cs: Moved tests that do not require connection to
  69. regular test suite. Improved existing tests, and added set of new
  70. tests. Reduce failure count.
  71. * SqlTransactionTest.cs: Added several tests.
  72. 2008-07-10 Veerapuram Varadhan <[email protected]>
  73. * SqlCommandTest.cs (bug326182_*): Test case for Bug#326182 - StoredProcedure
  74. parameters gets mixed up
  75. 2008-05-29 Veerapuram Varadhan <[email protected]>
  76. * SqlParameterTest.cs (ParameterSize_compatibility_Test) : New
  77. test case for Bug#382635 - truncate parameter values accordingly.
  78. 2007-10-19 Nagappan A <[email protected]>
  79. * SqlCommandBuilderTest.cs: Fixed compilation warnings.
  80. 2007-07-31 Nagappan A <[email protected]>
  81. * SqlConnectionTest.cs (InterfaceTransactionTest): Fixes bug
  82. 82189. SqlConnection throws an exception if Connection or
  83. Transaction is set to null on IDbCommand interface.
  84. 2007-07-24 Nagappan A <[email protected]>
  85. * SqlParameterTest.cs (ParameterSizeTest): Fixes Large strings
  86. truncated with SqlClient - Bug # 82170.
  87. 2007-07-22 Nagappan A <[email protected]>
  88. * SqlTransactionTest.cs: Added exception handling.
  89. 2007-06-11 Nagappan A <[email protected]>
  90. * SqlCommandTest.cs (SqlCommandDisposeTest): Added new test case
  91. to check, the SqlCommand.Dispose, not to dispose SqlConnection and
  92. SqlTransaction instances.
  93. 2007-06-07 Nagappan A <[email protected]>
  94. * SqlCommandTest.cs: Fixes compilation warnings.
  95. 2007-05-30 Nagappan A <[email protected]>
  96. * SqlCommandTest.cs (StoredProc_NoParameterTest)
  97. (StoredProc_ParameterTest, rpc_helper_function): Added new methods
  98. to test the implementation of TDS RPC.
  99. 2007-04-03 Amit Biswas <[email protected]>
  100. * SqlDataReaderTest.cs (GetSqlBytesTest): Test case for GetSqlBytes
  101. (GetProviderSpecificFieldTypeTest): Test case for GetProviderSpecificFieldTypeTest
  102. (GetProviderSpecificValueTest): Test case for GetProviderSpecificValueTest
  103. (GetProviderSpecificValueLowerBoundaryTest):
  104. (GetProviderSpecificValueUpperBoundaryTest):
  105. (GetProviderSpecificValuesTest): Test case for GetProviderSpecificValuesTest
  106. (GetProviderSpecificValuesSmallArrayTest): Test case with an array smaller than no. of columns
  107. (GetProviderSpecificValuesLargeArrayTest): Test case with an array larger than no. of columns
  108. (GetProviderSpecificValuesNullTest): Test case for null parameters
  109. * SqlParameterTest.cs (XmlSchemaTest): Test case for properties related to XML schema
  110. (SourceColumnNullMappingTest): Test case for SourceColumnNullMappingTest
  111. (ctor7Test): Test case to the constructor new in .net 2.0
  112. * SqlParameterTest.cs (ParameterType): Corrected a bug in the test case regarding
  113. default values of SqlDbType and DbType
  114. (SqlDbTypeTest): Test for SqlDbType and DbType properties
  115. (ResetSqlDbTypeTest): Test for ResetSqlDbType method
  116. (ResetDbTypeTest): Test for ResetDbType method
  117. * SqlParameterCollectionTest.cs (CopyToTest): Test case for CopyTo method
  118. 2007-03-23 Nidhi Rawal <[email protected]>
  119. * SqlCommandTest.cs (BeginExecuteXmlReaderTest): Written test case for the method
  120. BeginExecuteXmlReader.
  121. (BeginExecuteXmlReaderExceptionTest): Written test case for the method BeginExecuteXmlReader
  122. to check for InvalidOperationException.
  123. (CloneObjTest): Written test case for the method Clone.
  124. * SqlConnectionTest.cs (ChangePasswordNullConnStringTest): Written test case for the method
  125. ChangePassword to check for null connection string.
  126. (ChangePasswordNullPasswordTest): Written test case for the method ChangePassword to check for
  127. null new password.
  128. (ChangePasswordEmptyPasswordTest): Written test case for the method ChangePassword to check for
  129. password as empty string.
  130. (ChangePasswordExceedPasswordTest): Written test case for the method ChangePassword to check
  131. if the password exceeds its permitted size.
  132. * SqlClientFactory.cs: Created the class.
  133. (CreatePermissionTest): Added a test case for the method CreatePermission.
  134. 2007-03-20 Nidhi Rawal <[email protected]>
  135. * SqlConnectionStringBuilderTest.cs: Fixed the bug by including the
  136. category sqlserver, in the absence of which none of the test-cases
  137. were executing.
  138. (TrustServerCertificateTest): Written test-case for the property TrustServerCertificate.
  139. (TypeSystemVersionTest): Written test-case for the property TypeSystemVersion.
  140. (UserInstanceTest): Written test-case for the property UserInstance.
  141. (SettingUserInstanceTest): Written test-case for checking the connection string after
  142. assigning the value for keyword User Instance.
  143. (ContextConnectionTest): Written test-case for the property ContextConnection.
  144. (SettingContextConnectionTest): Written test-case for checking the connection string after
  145. assigning the value for keyword Context Connection.
  146. * SqlCommandTest.cs (NotificationTest): Written test-case for property Notification.
  147. (NotificationAutoEnlistTest): Written the test-case for property NotificationAutoEnlist.
  148. * SqlConnectionTest.cs (FireInfoMessageEventOnUserErrorsTest): Written
  149. test-case for the property FireInfoMessageEventOnUserErrors.
  150. (StatisticsEnabledTest): Written test-case for the property StatisticsEnabled.
  151. * SqlDataAdapterTest.cs (UpdateBatchSizeTest): Written test-case for the
  152. property UpdateBatchSize.
  153. (UpdateBatchSizeArgumentOutOfRangeTest): Written test-case for the ArgumentOutOfRange
  154. exception for UpdateBatchSize property.
  155. 2007-03-19 Nidhi Rawal <[email protected]>
  156. * SqlParameterTest.cs (CompareInfoTest): Written the test case
  157. for property CompareInfo.
  158. (LocaleIdTest): Written the test case for property LocaleId.
  159. (SqlValueTest): Written test case for property SqlValue.
  160. 2007-03-16 Andreia Gaita <[email protected]>
  161. * SqlCommandTest.cs: Add OutputParamSizeTest1-4 to test size/value
  162. validation exception.
  163. 2007-03-14 Nagappan A <[email protected]>
  164. * SqlCommandTest.cs (ExecuteScalarTest, ExecuteReaderTest)
  165. (ExecuteReaderTest, PrepareTest, TransactionTest): Modified
  166. expected exception to NullReferenceException as it has to be
  167. thrown in 2.0 profile.
  168. 2007-03-09 Andreia Gaita <[email protected]>
  169. * SqlCommandTest.cs: Add new test to check string parameters with
  170. value = null and size 0. Fixed tests for NET 2.0 (different exceptions
  171. thrown)
  172. 2007-03-09 Andreia Gaita <[email protected]>
  173. * SqlCommandTest.cs: Add parameterized stored procedure call tests
  174. to ExecuteScalar and ExecuteNonQuery.
  175. 2007-01-08 Nagappan A <[email protected]>
  176. * SqlCommandBuilderTest.cs (GetInsertCommandTest)
  177. (GetInsertCommandTestWithExpression, GetUpdateCommandTest): Fixed
  178. NET 2.0 based test conditions.
  179. (GetUpdateCommandBoolTest): Added new test case.
  180. (GetUpdateCommandTest_CheckNonUpdatableColumns): Fixed NET 2.0
  181. based test conditions.
  182. (GetUpdateCommandBoolTest_CheckNonUpdatableColumns): Added new test
  183. case.
  184. (GetUpdateDeleteCommandBoolTest_CheckParameters): Added new test
  185. case.
  186. (GetUpdateCommandDBConcurrencyExceptionTest): Fixed NET 2.0 based
  187. test conditions.
  188. * SqlDataAdapterTest.cs: Commented not working test-cases.
  189. 2006-12-20 Nagappan A <[email protected]>
  190. * SqlDataAdapterTest.cs (SqlDataAdapterInheritTest): Implemented
  191. new class to verify protected method of DbDataAdapter.
  192. * Fixed existing test-cases to work with 2.0 profile.
  193. 2006-12-05 Nagappan A <[email protected]>
  194. * SqlDataAdapterTest.cs (CreateViewSSPITest): To test create view
  195. of SqlClient.
  196. 2006-08-30 Nagappan A <[email protected]>
  197. * SqlConnectionTest.cs: SqlConnection.GetSchema testcases
  198. 2006-05-26 Senganal T <[email protected]>
  199. * SqlParameterTest.cs : Test if Parameter Type is inferred correctly
  200. when Value is null or DBNull. Also, if Type is not explicitly set,
  201. test if it is inferred from the value of the parameter evertime the
  202. value is set.
  203. 2006-04-18 Senganal T <[email protected]>
  204. * SqlConnectionTest.cs :
  205. - OpenTest_1 : test InvalidOperationException is raised if
  206. ConnectionString is empty
  207. - DisposeTest : test nullreference exception is not raised
  208. 2006-04-07 Senganal T <[email protected]>
  209. * SqlDataAdapterTest,cs :
  210. - Added testcase for #78010
  211. 2006-04-07 Senganal T <[email protected]>
  212. * SqlCommandBuilderTest.cs :
  213. - Corrected the testcase to check for queries corresponding to
  214. ms.net 2.0
  215. - verify that columns that do not allow nulls are not included
  216. in the null-checks.
  217. - Added testcase to check for DBConcurrencyException for
  218. Delete Command.
  219. - Check the DataType of the null-check parameters
  220. 2006-03-08 Senganal T <[email protected]>
  221. * SqlCommandBuilderTest.cs :
  222. - Added testcase to verify UpdateCommand created with AutoIncrement
  223. columns.
  224. 2006-02-13 Senganal T <[email protected]>
  225. * SqlAdapterTest.cs : Added testcases for verifying FillError Behavior
  226. 2006-02-13 Senganal T <[email protected]>
  227. * SqlAdapterTest.cs : Added testcases for #77480
  228. 2006-02-10 Senganal T <[email protected]>
  229. * SqlDataReaderTest.cs : Added more tests to verify Sequential
  230. reading of row data.
  231. 2006-02-05 Senganal T <[email protected]>
  232. * SqlParameterTest.cs : New : Testcase for bug #77410
  233. 2006-01-17 Senganal T <[email protected]>
  234. * SqlCommandBuilderTest.cs : corrected a failing testcase
  235. 2006-01-17 Senganal T <[email protected]>
  236. * SqlCommandBuilderTest.cs : Added testcase for bug #77225
  237. 2005-12-03 Senganal T <[email protected]>
  238. * SqlCommandTest.cs : Added testcase for bug #76880
  239. 2005-11-23 Senganal T <[email protected]>
  240. * SqlCommandTest.cs : Added testcases for bug #76778
  241. 2005-10-27 Senganal T <[email protected]>
  242. * SqlCommandTest.cs : Added Testcase for bug #75698
  243. 2005-10-17 Senganal T <[email protected]>
  244. * SqlDataAdapterTest.cs : Added Testcase for bug #76433.
  245. 2005-09-24 Sureshkumar T <[email protected]>
  246. * SqlDataAdapterTest.cs (Fill_Test_Exceptions): passing null
  247. dataset name throws ArgumentNullException in ms.net
  248. * SqlConnectionTest.cs: HostName compare: convert to uppercase.
  249. * SqlDataReaderTest.cs: remove Opening connection in few test
  250. cases as it was done in SetUp.
  251. - id type change changes
  252. 2005-09-21 Senganal T <[email protected]>
  253. * SqlConnectionTest.cs: removed some hardcoded database names
  254. in DatabasePropertyTest ().
  255. 2005-09-16 Senganal T <[email protected]>
  256. * SqlCommandTest.cs: added more testcases for connected mode
  257. * SqlConnectionTest.cs: added more testcases for connected mode
  258. * SqlDataAdapterTest.cs: added more testcases for connected mode
  259. * SqlDataReaderTest.cs: added more testcases for connected mode
  260. 2005-09-01 Sureshkumar T <[email protected]>
  261. * SqlCommandBuilderTest.cs: added tests for SqlCommandBuilder
  262. * SqlCommandTest.cs: pulled from Test/System.Data.SqlClient
  263. * SqlConnectionStringBuilderTest.cs: pulled from Test/System.Data.SqlClient
  264. * SqlConnectionTest.cs: pulled from Test/System.Data.SqlClient
  265. * SqlDataAdapterTest.cs: pulled from Test/System.Data.SqlClient
  266. * SqlDataReaderTest.cs: pulled from Test/System.Data.SqlClient
  267. * SqlTransactionTest.cs: pulled from Test/System.Data.SqlClient
  268. Added attribute Category ("sqlserver") to all these test fixtures.