ChangeLog 10 KB

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