ChangeLog 9.4 KB

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