ChangeLog 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. 2007-06-07 Nagappan A <[email protected]>
  2. * SqlCommandTest.cs: Fixes compilation warnings.
  3. 2007-05-30 Nagappan A <[email protected]>
  4. * SqlCommandTest.cs (StoredProc_NoParameterTest)
  5. (StoredProc_ParameterTest, rpc_helper_function): Added new methods
  6. to test the implementation of TDS RPC.
  7. 2007-04-03 Amit Biswas <[email protected]>
  8. * SqlDataReaderTest.cs (GetSqlBytesTest): Test case for GetSqlBytes
  9. (GetProviderSpecificFieldTypeTest): Test case for GetProviderSpecificFieldTypeTest
  10. (GetProviderSpecificValueTest): Test case for GetProviderSpecificValueTest
  11. (GetProviderSpecificValueLowerBoundaryTest):
  12. (GetProviderSpecificValueUpperBoundaryTest):
  13. (GetProviderSpecificValuesTest): Test case for GetProviderSpecificValuesTest
  14. (GetProviderSpecificValuesSmallArrayTest): Test case with an array smaller than no. of columns
  15. (GetProviderSpecificValuesLargeArrayTest): Test case with an array larger than no. of columns
  16. (GetProviderSpecificValuesNullTest): Test case for null parameters
  17. * SqlParameterTest.cs (XmlSchemaTest): Test case for properties related to XML schema
  18. (SourceColumnNullMappingTest): Test case for SourceColumnNullMappingTest
  19. (ctor7Test): Test case to the constructor new in .net 2.0
  20. * SqlParameterTest.cs (ParameterType): Corrected a bug in the test case regarding
  21. default values of SqlDbType and DbType
  22. (SqlDbTypeTest): Test for SqlDbType and DbType properties
  23. (ResetSqlDbTypeTest): Test for ResetSqlDbType method
  24. (ResetDbTypeTest): Test for ResetDbType method
  25. * SqlParameterCollectionTest.cs (CopyToTest): Test case for CopyTo method
  26. 2007-03-23 Nidhi Rawal <[email protected]>
  27. * SqlCommandTest.cs (BeginExecuteXmlReaderTest): Written test case for the method
  28. BeginExecuteXmlReader.
  29. (BeginExecuteXmlReaderExceptionTest): Written test case for the method BeginExecuteXmlReader
  30. to check for InvalidOperationException.
  31. (CloneObjTest): Written test case for the method Clone.
  32. * SqlConnectionTest.cs (ChangePasswordNullConnStringTest): Written test case for the method
  33. ChangePassword to check for null connection string.
  34. (ChangePasswordNullPasswordTest): Written test case for the method ChangePassword to check for
  35. null new password.
  36. (ChangePasswordEmptyPasswordTest): Written test case for the method ChangePassword to check for
  37. password as empty string.
  38. (ChangePasswordExceedPasswordTest): Written test case for the method ChangePassword to check
  39. if the password exceeds its permitted size.
  40. * SqlClientFactory.cs: Created the class.
  41. (CreatePermissionTest): Added a test case for the method CreatePermission.
  42. 2007-03-20 Nidhi Rawal <[email protected]>
  43. * SqlConnectionStringBuilderTest.cs: Fixed the bug by including the
  44. category sqlserver, in the absence of which none of the test-cases
  45. were executing.
  46. (TrustServerCertificateTest): Written test-case for the property TrustServerCertificate.
  47. (TypeSystemVersionTest): Written test-case for the property TypeSystemVersion.
  48. (UserInstanceTest): Written test-case for the property UserInstance.
  49. (SettingUserInstanceTest): Written test-case for checking the connection string after
  50. assigning the value for keyword User Instance.
  51. (ContextConnectionTest): Written test-case for the property ContextConnection.
  52. (SettingContextConnectionTest): Written test-case for checking the connection string after
  53. assigning the value for keyword Context Connection.
  54. * SqlCommandTest.cs (NotificationTest): Written test-case for property Notification.
  55. (NotificationAutoEnlistTest): Written the test-case for property NotificationAutoEnlist.
  56. * SqlConnectionTest.cs (FireInfoMessageEventOnUserErrorsTest): Written
  57. test-case for the property FireInfoMessageEventOnUserErrors.
  58. (StatisticsEnabledTest): Written test-case for the property StatisticsEnabled.
  59. * SqlDataAdapterTest.cs (UpdateBatchSizeTest): Written test-case for the
  60. property UpdateBatchSize.
  61. (UpdateBatchSizeArgumentOutOfRangeTest): Written test-case for the ArgumentOutOfRange
  62. exception for UpdateBatchSize property.
  63. 2007-03-19 Nidhi Rawal <[email protected]>
  64. * SqlParameterTest.cs (CompareInfoTest): Written the test case
  65. for property CompareInfo.
  66. (LocaleIdTest): Written the test case for property LocaleId.
  67. (SqlValueTest): Written test case for property SqlValue.
  68. 2007-03-16 Andreia Gaita <[email protected]>
  69. * SqlCommandTest.cs: Add OutputParamSizeTest1-4 to test size/value
  70. validation exception.
  71. 2007-03-14 Nagappan A <[email protected]>
  72. * SqlCommandTest.cs (ExecuteScalarTest, ExecuteReaderTest)
  73. (ExecuteReaderTest, PrepareTest, TransactionTest): Modified
  74. expected exception to NullReferenceException as it has to be
  75. thrown in 2.0 profile.
  76. 2007-03-09 Andreia Gaita <[email protected]>
  77. * SqlCommandTest.cs: Add new test to check string parameters with
  78. value = null and size 0. Fixed tests for NET 2.0 (different exceptions
  79. thrown)
  80. 2007-03-09 Andreia Gaita <[email protected]>
  81. * SqlCommandTest.cs: Add parameterized stored procedure call tests
  82. to ExecuteScalar and ExecuteNonQuery.
  83. 2007-01-08 Nagappan A <[email protected]>
  84. * SqlCommandBuilderTest.cs (GetInsertCommandTest)
  85. (GetInsertCommandTestWithExpression, GetUpdateCommandTest): Fixed
  86. NET 2.0 based test conditions.
  87. (GetUpdateCommandBoolTest): Added new test case.
  88. (GetUpdateCommandTest_CheckNonUpdatableColumns): Fixed NET 2.0
  89. based test conditions.
  90. (GetUpdateCommandBoolTest_CheckNonUpdatableColumns): Added new test
  91. case.
  92. (GetUpdateDeleteCommandBoolTest_CheckParameters): Added new test
  93. case.
  94. (GetUpdateCommandDBConcurrencyExceptionTest): Fixed NET 2.0 based
  95. test conditions.
  96. * SqlDataAdapterTest.cs: Commented not working test-cases.
  97. 2006-12-20 Nagappan A <[email protected]>
  98. * SqlDataAdapterTest.cs (SqlDataAdapterInheritTest): Implemented
  99. new class to verify protected method of DbDataAdapter.
  100. * Fixed existing test-cases to work with 2.0 profile.
  101. 2006-12-05 Nagappan A <[email protected]>
  102. * SqlDataAdapterTest.cs (CreateViewSSPITest): To test create view
  103. of SqlClient.
  104. 2006-08-30 Nagappan A <[email protected]>
  105. * SqlConnectionTest.cs: SqlConnection.GetSchema testcases
  106. 2006-05-26 Senganal T <[email protected]>
  107. * SqlParameterTest.cs : Test if Parameter Type is inferred correctly
  108. when Value is null or DBNull. Also, if Type is not explicitly set,
  109. test if it is inferred from the value of the parameter evertime the
  110. value is set.
  111. 2006-04-18 Senganal T <[email protected]>
  112. * SqlConnectionTest.cs :
  113. - OpenTest_1 : test InvalidOperationException is raised if
  114. ConnectionString is empty
  115. - DisposeTest : test nullreference exception is not raised
  116. 2006-04-07 Senganal T <[email protected]>
  117. * SqlDataAdapterTest,cs :
  118. - Added testcase for #78010
  119. 2006-04-07 Senganal T <[email protected]>
  120. * SqlCommandBuilderTest.cs :
  121. - Corrected the testcase to check for queries corresponding to
  122. ms.net 2.0
  123. - verify that columns that do not allow nulls are not included
  124. in the null-checks.
  125. - Added testcase to check for DBConcurrencyException for
  126. Delete Command.
  127. - Check the DataType of the null-check parameters
  128. 2006-03-08 Senganal T <[email protected]>
  129. * SqlCommandBuilderTest.cs :
  130. - Added testcase to verify UpdateCommand created with AutoIncrement
  131. columns.
  132. 2006-02-13 Senganal T <[email protected]>
  133. * SqlAdapterTest.cs : Added testcases for verifying FillError Behavior
  134. 2006-02-13 Senganal T <[email protected]>
  135. * SqlAdapterTest.cs : Added testcases for #77480
  136. 2006-02-10 Senganal T <[email protected]>
  137. * SqlDataReaderTest.cs : Added more tests to verify Sequential
  138. reading of row data.
  139. 2006-02-05 Senganal T <[email protected]>
  140. * SqlParameterTest.cs : New : Testcase for bug #77410
  141. 2006-01-17 Senganal T <[email protected]>
  142. * SqlCommandBuilderTest.cs : corrected a failing testcase
  143. 2006-01-17 Senganal T <[email protected]>
  144. * SqlCommandBuilderTest.cs : Added testcase for bug #77225
  145. 2005-12-03 Senganal T <[email protected]>
  146. * SqlCommandTest.cs : Added testcase for bug #76880
  147. 2005-11-23 Senganal T <[email protected]>
  148. * SqlCommandTest.cs : Added testcases for bug #76778
  149. 2005-10-27 Senganal T <[email protected]>
  150. * SqlCommandTest.cs : Added Testcase for bug #75698
  151. 2005-10-17 Senganal T <[email protected]>
  152. * SqlDataAdapterTest.cs : Added Testcase for bug #76433.
  153. 2005-09-24 Sureshkumar T <[email protected]>
  154. * SqlDataAdapterTest.cs (Fill_Test_Exceptions): passing null
  155. dataset name throws ArgumentNullException in ms.net
  156. * SqlConnectionTest.cs: HostName compare: convert to uppercase.
  157. * SqlDataReaderTest.cs: remove Opening connection in few test
  158. cases as it was done in SetUp.
  159. - id type change changes
  160. 2005-09-21 Senganal T <[email protected]>
  161. * SqlConnectionTest.cs: removed some hardcoded database names
  162. in DatabasePropertyTest ().
  163. 2005-09-16 Senganal T <[email protected]>
  164. * SqlCommandTest.cs: added more testcases for connected mode
  165. * SqlConnectionTest.cs: added more testcases for connected mode
  166. * SqlDataAdapterTest.cs: added more testcases for connected mode
  167. * SqlDataReaderTest.cs: added more testcases for connected mode
  168. 2005-09-01 Sureshkumar T <[email protected]>
  169. * SqlCommandBuilderTest.cs: added tests for SqlCommandBuilder
  170. * SqlCommandTest.cs: pulled from Test/System.Data.SqlClient
  171. * SqlConnectionStringBuilderTest.cs: pulled from Test/System.Data.SqlClient
  172. * SqlConnectionTest.cs: pulled from Test/System.Data.SqlClient
  173. * SqlDataAdapterTest.cs: pulled from Test/System.Data.SqlClient
  174. * SqlDataReaderTest.cs: pulled from Test/System.Data.SqlClient
  175. * SqlTransactionTest.cs: pulled from Test/System.Data.SqlClient
  176. Added attribute Category ("sqlserver") to all these test fixtures.