| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483 |
- //
- // SqlCommandTest.cs - NUnit Test Cases for testing the
- // SqlCommand class
- // Author:
- // Umadevi S ([email protected])
- // Sureshkumar T ([email protected])
- // Senganal T ([email protected])
- //
- // Copyright (c) 2004 Novell Inc., and the individuals listed
- // on the ChangeLog entries.
- //
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- using System;
- using System.Data;
- using System.Data.Common;
- using System.Data.SqlClient;
- #if NET_2_0
- using System.Data.Sql;
- using System.Xml;
- #endif
- using NUnit.Framework;
- namespace MonoTests.System.Data.SqlClient
- {
- [TestFixture]
- [Category ("sqlserver")]
- public class SqlCommandTest
- {
- public SqlConnection conn = null ;
- SqlCommand cmd = null;
- string connectionString = ConnectionManager.Singleton.ConnectionString;
- [SetUp]
- public void Setup ()
- {
- }
- [TearDown]
- public void TearDown ()
- {
- if (conn != null)
- conn.Close ();
- }
- [Test]
- public void ConstructorTest ()
- {
- // Test Default Constructor
- cmd = new SqlCommand ();
- Assert.AreEqual (String.Empty, cmd.CommandText,
- "#1 Command Test should be empty");
- Assert.AreEqual (30, cmd.CommandTimeout,
- "#2 CommandTimeout should be 30");
- Assert.AreEqual (CommandType.Text, cmd.CommandType,
- "#3 CommandType should be text");
- Assert.IsNull (cmd.Connection, "#4 Connection Should be null");
- Assert.AreEqual (0, cmd.Parameters.Count,
- "#5 Parameter shud be empty");
- // Test Overloaded Constructor
- String cmdText = "select * from tbl1" ;
- cmd = new SqlCommand (cmdText);
- Assert.AreEqual (cmdText, cmd.CommandText,
- "#5 CommandText should be the same as passed");
- Assert.AreEqual (30, cmd.CommandTimeout,
- "#6 CommandTimeout should be 30");
- Assert.AreEqual (CommandType.Text, cmd.CommandType,
- "#7 CommandType should be text");
- Assert.IsNull (cmd.Connection , "#8 Connection Should be null");
-
- // Test Overloaded Constructor
- SqlConnection conn = new SqlConnection ();
- cmd = new SqlCommand (cmdText , conn);
- Assert.AreEqual (cmdText, cmd.CommandText,
- "#9 CommandText should be the same as passed");
- Assert.AreEqual (30, cmd.CommandTimeout,
- "#10 CommandTimeout should be 30");
- Assert.AreEqual (CommandType.Text, cmd.CommandType,
- "#11 CommandType should be text");
- Assert.AreSame (cmd.Connection, conn, "#12 Connection Should be same");
- // Test Overloaded Constructor
- SqlTransaction trans = null ;
- try {
- conn = new SqlConnection (connectionString);
- conn.Open ();
- trans = conn.BeginTransaction ();
- cmd = new SqlCommand (cmdText, conn, trans);
- Assert.AreEqual (cmdText, cmd.CommandText,
- "#9 CommandText should be the same as passed");
- Assert.AreEqual (30, cmd.CommandTimeout,
- "#10 CommandTimeout should be 30");
- Assert.AreEqual (CommandType.Text, cmd.CommandType,
- "#11 CommandType should be text");
- Assert.AreEqual (cmd.Connection, conn,
- "#12 Connection Should be null");
- Assert.AreEqual (cmd.Transaction, trans,
- "#13 Transaction Property should be set");
-
- // Test if parameters are reset to Default Values
- cmd = new SqlCommand ();
- Assert.AreEqual (String.Empty, cmd.CommandText,
- "#1 Command Test should be empty");
- Assert.AreEqual (30, cmd.CommandTimeout,
- "#2 CommandTimeout should be 30");
- Assert.AreEqual (CommandType.Text, cmd.CommandType,
- "#3 CommandType should be text");
- Assert.IsNull (cmd.Connection, "#4 Connection Should be null");
- }finally {
- trans.Rollback ();
- }
- }
- [Test]
- public void ExecuteScalarTest ()
- {
- conn = new SqlConnection (connectionString);
- cmd = new SqlCommand ("" , conn);
- cmd.CommandText = "Select count(*) from numeric_family where id<=4";
- //Check Exception is thrown when executed on a closed connection
- try {
- cmd.ExecuteScalar ();
- Assert.Fail ("#1 InvalidOperation Exception must be thrown");
- }catch (AssertionException e) {
- throw e;
- }catch (Exception e) {
- #if NET_2_0
- Assert.AreEqual (typeof (NullReferenceException), e.GetType (),
- "#2 Incorrect Exception : " + e.StackTrace);
- #else
- Assert.AreEqual (typeof (InvalidOperationException), e.GetType (),
- "#2 Incorrect Exception : " + e.StackTrace);
- #endif
- }
- // Check the Return value for a Correct Query
- object result = 0;
- conn.Open ();
- result = cmd.ExecuteScalar ();
- Assert.AreEqual (4, (int)result, "#3 Query Result returned is incorrect");
- cmd.CommandText = "select id , type_bit from numeric_family order by id asc" ;
- result = Convert.ToInt32 (cmd.ExecuteScalar ());
- Assert.AreEqual (1, result,
- "#4 ExecuteScalar Should return (1,1) the result set" );
- cmd.CommandText = "select id from numeric_family where id=-1";
- result = cmd.ExecuteScalar ();
- Assert.IsNull (result, "#5 Null should be returned if result set is empty");
- // Check SqlException is thrown for Invalid Query
- cmd.CommandText = "select count* from numeric_family";
- try {
- result = cmd.ExecuteScalar ();
- Assert.Fail ("#6 InCorrect Query should cause an SqlException");
- }catch (AssertionException e) {
- throw e;
- }catch (Exception e) {
- Assert.AreEqual (typeof(SqlException), e.GetType(),
- "#7 Incorrect Exception : " + e.StackTrace);
- }
- // Parameterized stored procedure calls
- int int_value = 20;
- string string_value = "output value changed";
- string return_value = "first column of first rowset";
-
- cmd.CommandText =
- "create procedure #tmp_executescalar_outparams "+
- " (@p1 int, @p2 int out, @p3 varchar(200) out) "+
- "as " +
- "select '" + return_value + "' as 'col1', @p1 as 'col2' "+
- "set @p2 = @p2 * 2 "+
- "set @p3 = N'" + string_value + "' "+
- "select 'second rowset' as 'col1', 2 as 'col2' "+
- "return 1";
-
- cmd.CommandType = CommandType.Text;
- cmd.ExecuteNonQuery ();
- cmd.CommandText = "#tmp_executescalar_outparams";
- cmd.CommandType = CommandType.StoredProcedure;
- SqlParameter p1 = new SqlParameter ();
- p1.ParameterName = "@p1";
- p1.Direction = ParameterDirection.Input;
- p1.DbType = DbType.Int32;
- p1.Value = int_value;
- cmd.Parameters.Add (p1);
- SqlParameter p2 = new SqlParameter ();
- p2.ParameterName = "@p2";
- p2.Direction = ParameterDirection.InputOutput;
- p2.DbType = DbType.Int32;
- p2.Value = int_value;
- cmd.Parameters.Add (p2);
- SqlParameter p3 = new SqlParameter ();
- p3.ParameterName = "@p3";
- p3.Direction = ParameterDirection.Output;
- p3.DbType = DbType.String;
- p3.Size = 200;
- cmd.Parameters.Add (p3);
- result = cmd.ExecuteScalar ();
- Assert.AreEqual (return_value, result, "#8 ExecuteScalar Should return 'first column of first rowset'");
- Assert.AreEqual (int_value * 2, p2.Value, "#9 ExecuteScalar should fill the parameter collection with the outputted values");
- Assert.AreEqual (string_value, p3.Value, "#10 ExecuteScalar should fill the parameter collection with the outputted values");
- p3.Size = 0;
- p3.Value = null;
- try {
- cmd.ExecuteScalar ();
- Assert.Fail ("#11 Query should throw System.InvalidOperationException due to size = 0 and value = null");
- }
- catch (AssertionException e) {
- throw e;
- }
- catch (Exception e) {
- Assert.AreEqual (typeof (InvalidOperationException), e.GetType (),
- "#12 Incorrect Exception : " + e.StackTrace);
- }
- conn.Close ();
-
- }
- [Test]
- public void ExecuteNonQuery ()
- {
- conn = new SqlConnection (connectionString);
- cmd = new SqlCommand ("", conn);
- int result = 0;
- // Test for exceptions
- // Test exception is thrown if connection is closed
- cmd.CommandText = "Select id from numeric_family where id=1";
- try {
- cmd.ExecuteNonQuery ();
- Assert.Fail ("#1 Connextion shud be open");
- }catch (AssertionException e) {
- throw e;
- }catch (Exception e) {
- #if NET_2_0
- Assert.AreEqual (typeof(NullReferenceException), e.GetType(),
- "#2 Incorrect Exception : " + e);
- #else
- Assert.AreEqual (typeof(InvalidOperationException), e.GetType(),
- "#2 Incorrect Exception : " + e);
- #endif
- }
-
- // Test Exception is thrown if Query is incorrect
- conn.Open ();
- cmd.CommandText = "Select id1 from numeric_family";
- try {
- cmd.ExecuteNonQuery ();
- Assert.Fail ("#1 invalid Query");
- }catch (AssertionException e) {
- throw e;
- }catch (Exception e) {
- Assert.AreEqual (typeof(SqlException), e.GetType(),
- "#2 Incorrect Exception : " + e);
- }
- // Test Select/Insert/Update/Delete Statements
- SqlTransaction trans = conn.BeginTransaction ();
- cmd.Transaction = trans;
- try {
- cmd.CommandText = "Select id from numeric_family where id=1";
- result = cmd.ExecuteNonQuery ();
- Assert.AreEqual (-1, result, "#1");
- cmd.CommandText = "Insert into numeric_family (id,type_int) values (100,200)";
- result = cmd.ExecuteNonQuery ();
- Assert.AreEqual (1, result, "#2 One row shud be inserted");
- cmd.CommandText = "Update numeric_family set type_int=300 where id=100";
- result = cmd.ExecuteNonQuery ();
- Assert.AreEqual (1, result, "#3 One row shud be updated");
- // Test Batch Commands
- cmd.CommandText = "Select id from numeric_family where id=1;";
- cmd.CommandText += "update numeric_family set type_int=10 where id=1000";
- cmd.CommandText += "update numeric_family set type_int=10 where id=100";
- result = cmd.ExecuteNonQuery ();
- Assert.AreEqual (1, result, "#4 One row shud be updated");
-
- cmd.CommandText = "Delete from numeric_family where id=100";
- result = cmd.ExecuteNonQuery ();
- Assert.AreEqual (1, result, "#5 One row shud be deleted");
- }finally {
- trans.Rollback ();
- }
- // Parameterized stored procedure calls
- int int_value = 20;
- string string_value = "output value changed";
- cmd.CommandText =
- "create procedure #tmp_executescalar_outparams " +
- " (@p1 int, @p2 int out, @p3 varchar(200) out) " +
- "as " +
- "select 'test' as 'col1', @p1 as 'col2' " +
- "set @p2 = @p2 * 2 " +
- "set @p3 = N'" + string_value + "' " +
- "select 'second rowset' as 'col1', 2 as 'col2' " +
- "return 1";
- cmd.CommandType = CommandType.Text;
- cmd.ExecuteNonQuery ();
- cmd.CommandText = "#tmp_executescalar_outparams";
- cmd.CommandType = CommandType.StoredProcedure;
- SqlParameter p1 = new SqlParameter ();
- p1.ParameterName = "@p1";
- p1.Direction = ParameterDirection.Input;
- p1.DbType = DbType.Int32;
- p1.Value = int_value;
- cmd.Parameters.Add (p1);
- SqlParameter p2 = new SqlParameter ();
- p2.ParameterName = "@p2";
- p2.Direction = ParameterDirection.InputOutput;
- p2.DbType = DbType.Int32;
- p2.Value = int_value;
- cmd.Parameters.Add (p2);
- SqlParameter p3 = new SqlParameter ();
- p3.ParameterName = "@p3";
- p3.Direction = ParameterDirection.Output;
- p3.DbType = DbType.String;
- p3.Size = 200;
- cmd.Parameters.Add (p3);
- cmd.ExecuteNonQuery ();
- Assert.AreEqual (int_value * 2, p2.Value, "#6 ExecuteNonQuery should fill the parameter collection with the outputted values");
- Assert.AreEqual (string_value, p3.Value, "#7 ExecuteNonQuery should fill the parameter collection with the outputted values");
- }
- [Test]
- public void ExecuteReaderTest ()
- {
- //SqlDataReader reader = null;
- conn = new SqlConnection (connectionString);
- // Test exception is thrown if conn is closed
- cmd = new SqlCommand ("Select count(*) from numeric_family");
- try {
- /*reader = */cmd.ExecuteReader ();
- }catch (AssertionException e) {
- throw e;
- }catch (Exception e) {
- #if NET_2_0
- Assert.AreEqual (typeof(NullReferenceException), e.GetType(),
- "#1 Incorrect Exception");
- #else
- Assert.AreEqual (typeof(InvalidOperationException), e.GetType(),
- "#1 Incorrect Exception");
- #endif
- }
- conn.Open ();
- // Test exception is thrown for Invalid Query
- cmd = new SqlCommand ("InvalidQuery", conn);
- try {
- /*reader = */cmd.ExecuteReader ();
- Assert.Fail ("#1 Exception shud be thrown");
- }catch (AssertionException e) {
- throw e;
- }catch (Exception e) {
- Assert.AreEqual (typeof(SqlException), e.GetType (),
- "#2 Incorrect Exception : " + e);
- }
-
- // NOTE
- // Test SqlException is thrown if a row is locked
- // should lock a particular row and then modify it
- /*
- */
-
- // Test Connection cannot be modified when reader is in use
- // NOTE : msdotnet contradicts documented behavior
- /*
- cmd.CommandText = "select * from numeric_family where id=1";
- reader = cmd.ExecuteReader ();
- reader.Read ();
- conn.Close (); // valid operation
- conn = new SqlConnection (connectionString);
- */
- /*
- // NOTE msdotnet contradcits documented behavior
- // If the above testcase fails, then this shud be tested
- // Test connection can be modified once reader is closed
- conn.Close ();
- reader.Close ();
- conn = new SqlConnection (connectionString); // valid operation
- */
- }
- [Test]
- public void ExecuteReaderCommandBehaviorTest ()
- {
- // Test for command behaviors
- DataTable schemaTable = null;
- SqlDataReader reader = null;
- conn = new SqlConnection (connectionString);
- conn.Open ();
- cmd = new SqlCommand ("", conn);
- cmd.CommandText = "Select id from numeric_family where id <=4 order by id asc;";
- cmd.CommandText += "Select type_bit from numeric_family where id <=4 order by id asc";
- // Test for default command behavior
- reader = cmd.ExecuteReader ();
- int rows = 0;
- int results = 0;
- do {
- while (reader.Read ())
- rows++ ;
- Assert.AreEqual (4, rows, "#1 Multiple rows shud be returned");
- results++;
- rows = 0;
- }while (reader.NextResult());
- Assert.AreEqual (2, results, "#2 Multiple result sets shud be returned");
- reader.Close ();
- // Test if closing reader, closes the connection
- reader = cmd.ExecuteReader (CommandBehavior.CloseConnection);
- reader.Close ();
- Assert.AreEqual (ConnectionState.Closed, conn.State,
- "#3 Command Behavior is not followed");
- conn.Open();
- // Test if row info and primary Key info is returned
- reader = cmd.ExecuteReader (CommandBehavior.KeyInfo);
- schemaTable = reader.GetSchemaTable ();
- Assert.IsTrue(reader.HasRows, "#4 Data Rows shud also be returned");
- Assert.IsTrue ((bool)schemaTable.Rows[0]["IsKey"],
- "#5 Primary Key info shud be returned");
- reader.Close ();
- // Test only column information is returned
- reader = cmd.ExecuteReader (CommandBehavior.SchemaOnly);
- schemaTable = reader.GetSchemaTable ();
- Assert.IsFalse (reader.HasRows, "#6 row data shud not be returned");
- Assert.AreEqual(DBNull.Value, schemaTable.Rows[0]["IsKey"],
- "#7 Primary Key info shud not be returned");
- Assert.AreEqual ("id", schemaTable.Rows[0]["ColumnName"],
- "#8 Schema Data is Incorrect");
- reader.Close ();
- // Test only one result set (first) is returned
- reader = cmd.ExecuteReader (CommandBehavior.SingleResult);
- schemaTable = reader.GetSchemaTable ();
- Assert.IsFalse (reader.NextResult(),
- "#9 Only one result set shud be returned");
- Assert.AreEqual ("id", schemaTable.Rows[0]["ColumnName"],
- "#10 The result set returned shud be the first result set");
- reader.Close ();
- // Test only one row is returned for all result sets
- // msdotnet doesnt work correctly.. returns only one result set
- reader = cmd.ExecuteReader (CommandBehavior.SingleRow);
- rows=0;
- results=0;
- do {
- while (reader.Read ())
- rows++ ;
- Assert.AreEqual (1, rows, "#11 Only one row shud be returned");
- results++;
- rows = 0;
- }while (reader.NextResult());
- // NOTE msdotnet contradicts documented behavior.
- // Multiple result sets shud be returned , and in this case : 2
- //Assert.AreEqual (2, results, "# Multiple result sets shud be returned");
- Assert.AreEqual (2, results, "#12 Multiple result sets shud be returned");
- reader.Close ();
- }
- [Test]
- public void PrepareTest_CheckValidStatement ()
- {
- cmd = new SqlCommand ();
- conn = new SqlConnection (connectionString);
- conn.Open ();
-
- cmd.CommandText = "Select id from numeric_family where id=@ID" ;
- cmd.Connection = conn ;
- // Test if Parameters are correctly populated
- cmd.Parameters.Clear ();
- cmd.Parameters.Add ("@ID", SqlDbType.TinyInt);
- cmd.Parameters["@ID"].Value = 2 ;
- cmd.Prepare ();
- Assert.AreEqual (2, cmd.ExecuteScalar (), "#3 Prepared Stmt not working");
- cmd.Parameters[0].Value = 3;
- Assert.AreEqual (3, cmd.ExecuteScalar (), "#4 Prep Stmt not working");
- conn.Close ();
- }
- [Test]
- public void PrepareTest ()
- {
- cmd = new SqlCommand ();
- conn = new SqlConnection (connectionString);
- conn.Open ();
-
- cmd.CommandText = "Select id from numeric_family where id=@ID" ;
- cmd.Connection = conn ;
- // Test InvalidOperation Exception is thrown if Parameter Type
- // is not explicitly set
- #if NET_2_0
- cmd.Parameters.AddWithValue ("@ID", 2);
- #else
- cmd.Parameters.Add ("@ID", 2);
- #endif
- try {
- cmd.Prepare ();
- Assert.Fail ("#1 Parameter Type shud be explicitly Set");
- }catch (AssertionException e) {
- throw e;
- }catch (Exception e) {
- Assert.AreEqual (typeof(InvalidOperationException), e.GetType (),
- "#2 Incorrect Exception : " + e.StackTrace);
- }
- // Test Exception is thrown for variable size data if precision/scale
- // is not set
- cmd.CommandText = "select type_varchar from string_family where type_varchar=@p1";
- cmd.Parameters.Clear ();
- cmd.Parameters.Add ("@p1", SqlDbType.VarChar);
- cmd.Parameters["@p1"].Value = "afasasadadada";
- try {
- cmd.Prepare ();
- Assert.Fail ("#5 Exception shud be thrown");
- }catch (AssertionException e) {
- throw e;
- }catch (Exception e) {
- Assert.AreEqual (typeof(InvalidOperationException), e.GetType(),
- "#6 Incorrect Exception " + e.StackTrace);
- }
- // Test Exception is not thrown for Stored Procs
- try {
- cmd.CommandType = CommandType.StoredProcedure;
- cmd.CommandText = "ABFSDSFSF" ;
- cmd.Prepare ();
- }catch {
- Assert.Fail ("#7 Exception shud not be thrown for Stored Procs");
- }
- cmd.CommandType = CommandType.Text;
- conn.Close ();
- //Test InvalidOperation Exception is thrown if connection is not set
- cmd.Connection = null;
- try {
- cmd.Prepare ();
- #if NET_2_0
- Assert.Fail ("#8 NullReferenceException should be thrown");
- #else
- Assert.Fail ("#8 InvalidOperation Exception should be thrown");
- #endif
- }
- catch (AssertionException e) {
- throw e;
- }catch (Exception e) {
- #if NET_2_0
- Assert.AreEqual (typeof (NullReferenceException), e.GetType (),
- "#9 Incorrect Exception : " + e.StackTrace);
- #else
- Assert.AreEqual (typeof (InvalidOperationException), e.GetType (),
- "#9 Incorrect Exception : " + e.StackTrace);
- #endif
- }
- //Test InvalidOperation Exception is thrown if connection is closed
- cmd.Connection = conn ;
- try{
- cmd.Prepare ();
- Assert.Fail ("#4 InvalidOperation Exception shud be thrown");
- }catch (AssertionException e) {
- throw e;
- }catch (Exception e) {
- #if NET_2_0
- Assert.AreEqual (typeof(NullReferenceException), e.GetType(),
- "Incorrect Exception : " + e.StackTrace);
- #else
- Assert.AreEqual (typeof(InvalidOperationException), e.GetType(),
- "Incorrect Exception : " + e.StackTrace);
- #endif
- }
- }
- [Test]
- public void ResetTimeOut ()
- {
- SqlCommand cmd = new SqlCommand ();
- cmd.CommandTimeout = 50 ;
- Assert.AreEqual ( cmd.CommandTimeout, 50,
- "#1 CommandTimeout should be modfiable");
- cmd.ResetCommandTimeout ();
- Assert.AreEqual (cmd.CommandTimeout, 30,
- "#2 Reset Should set the Timeout to default value");
- }
- [Test]
- [ExpectedException (typeof(ArgumentException))]
- public void CommandTimeout ()
- {
- cmd = new SqlCommand ();
- cmd.CommandTimeout = 10;
- Assert.AreEqual (10, cmd.CommandTimeout, "#1");
- cmd.CommandTimeout = -1;
- }
-
- [Test]
- #if NET_2_0
- [ExpectedException (typeof(ArgumentOutOfRangeException))]
- #else
- [ExpectedException (typeof(ArgumentException))]
- #endif
- public void CommandTypeTest ()
- {
- cmd = new SqlCommand ();
- Assert.AreEqual (CommandType.Text ,cmd.CommandType,
- "Default CommandType is text");
- cmd.CommandType = (CommandType)(-1);
- }
-
- [Test]
- [Ignore ("msdotnet contradicts documented behavior")]
- [ExpectedException (typeof(InvalidOperationException))]
- public void ConnectionTest ()
- {
- SqlTransaction trans = null;
- try {
- conn = new SqlConnection (connectionString);
- conn.Open ();
- trans = conn.BeginTransaction ();
- cmd = new SqlCommand ("", conn,trans);
- cmd.CommandText = "Select id from numeric_family where id=1";
- cmd.Connection = new SqlConnection ();
- }finally {
- trans.Rollback();
- conn.Close ();
- }
- }
-
- [Test]
- public void TransactionTest ()
- {
- conn = new SqlConnection (connectionString);
- cmd = new SqlCommand ("", conn);
- Assert.IsNull (cmd.Transaction, "#1 Default value is null");
-
- SqlConnection conn1 = new SqlConnection (connectionString);
- conn1.Open ();
- SqlTransaction trans1 = conn1.BeginTransaction ();
- cmd.Transaction = trans1 ;
- try {
- cmd.ExecuteNonQuery ();
- Assert.Fail ("#2 Connection cannot be different");
- }catch (Exception e) {
- #if NET_2_0
- Assert.AreEqual (typeof(NullReferenceException), e.GetType(),
- "#3 Incorrect Exception : " + e);
- #else
- Assert.AreEqual (typeof(InvalidOperationException), e.GetType(),
- "#3 Incorrect Exception : " + e);
- #endif
- }finally {
- conn1.Close ();
- conn.Close ();
- }
- }
- // Need to add more tests
- [Test]
- #if NET_2_0
- [ExpectedException (typeof(ArgumentOutOfRangeException))]
- #else
- [ExpectedException (typeof(ArgumentException))]
- #endif
- public void UpdatedRowSourceTest ()
- {
- cmd = new SqlCommand ();
- Assert.AreEqual (UpdateRowSource.Both, cmd.UpdatedRowSource,
- "#1 Default value is both");
- cmd.UpdatedRowSource = UpdateRowSource.None;
- Assert.AreEqual (UpdateRowSource.None, cmd.UpdatedRowSource,
- "#2");
- cmd.UpdatedRowSource = (UpdateRowSource) (-1);
- }
- [Test]
- public void ExecuteNonQueryTempProcedureTest () {
- conn = (SqlConnection) ConnectionManager.Singleton.Connection;
- try {
- ConnectionManager.Singleton.OpenConnection ();
- // create temp sp here, should normally be created in Setup of test
- // case, but cannot be done right now because of ug #68978
- DBHelper.ExecuteNonQuery (conn, CREATE_TMP_SP_TEMP_INSERT_PERSON);
- SqlCommand cmd = new SqlCommand();
- cmd.Connection = conn;
- cmd.CommandText = "#sp_temp_insert_employee";
- cmd.CommandType = CommandType.StoredProcedure;
- Object TestPar = "test";
- cmd.Parameters.Add("@fname", SqlDbType.VarChar);
- cmd.Parameters ["@fname"].Value = TestPar;
- Assert.AreEqual(1,cmd.ExecuteNonQuery());
- } finally {
- DBHelper.ExecuteNonQuery (conn, DROP_TMP_SP_TEMP_INSERT_PERSON);
- DBHelper.ExecuteSimpleSP (conn, "sp_clean_person_table");
- ConnectionManager.Singleton.CloseConnection ();
- }
- }
- // Test for bug #76778
- // Test for a case, when query size is greater than the block size
- [Test]
- public void LongQueryTest ()
- {
- SqlConnection conn = new SqlConnection (
- connectionString + ";Pooling=false");
- using (conn) {
- conn.Open ();
- SqlCommand cmd = conn.CreateCommand ();
- String value = new String ('a', 10000);
- cmd.CommandText = String.Format ("Select '{0}'", value);
- cmd.ExecuteNonQuery ();
- }
- }
- // Test for bug #76778
- // To make sure RPC (when implemented) works ok..
- [Test]
- public void LongStoredProcTest()
- {
- SqlConnection conn = new SqlConnection (
- connectionString + ";Pooling=false");
- using (conn) {
- conn.Open ();
- /*int size = conn.PacketSize ; */
- SqlCommand cmd = conn.CreateCommand ();
- // create a temp stored proc ..
- cmd.CommandText = "Create Procedure #sp_tmp_long_params ";
- cmd.CommandText += "@p1 nvarchar (4000), ";
- cmd.CommandText += "@p2 nvarchar (4000), ";
- cmd.CommandText += "@p3 nvarchar (4000), ";
- cmd.CommandText += "@p4 nvarchar (4000) out ";
- cmd.CommandText += "As ";
- cmd.CommandText += "Begin ";
- cmd.CommandText += "Set @p4 = N'Hello' ";
- cmd.CommandText += "Return 2 ";
- cmd.CommandText += "End";
- cmd.ExecuteNonQuery ();
- //execute the proc
- cmd.CommandType = CommandType.StoredProcedure;
- cmd.CommandText = "#sp_tmp_long_params";
- String value = new String ('a', 4000);
- SqlParameter p1 = new SqlParameter ("@p1",
- SqlDbType.NVarChar,4000);
- p1.Value = value;
- SqlParameter p2 = new SqlParameter ("@p2",
- SqlDbType.NVarChar,4000);
- p2.Value = value;
- SqlParameter p3 = new SqlParameter ("@p3",
- SqlDbType.NVarChar,4000);
- p3.Value = value;
- SqlParameter p4 = new SqlParameter ("@p4",
- SqlDbType.NVarChar,4000);
- p4.Direction = ParameterDirection.Output;
- // for now, name shud be @RETURN_VALUE
- // can be changed once RPC is implemented
- SqlParameter p5 = new SqlParameter ("@RETURN_VALUE", SqlDbType.Int);
- p5.Direction = ParameterDirection.ReturnValue ;
- cmd.Parameters.Add (p1);
- cmd.Parameters.Add (p2);
- cmd.Parameters.Add (p3);
- cmd.Parameters.Add (p4);
- cmd.Parameters.Add (p5);
- cmd.ExecuteNonQuery ();
- Assert.AreEqual ("Hello", p4.Value, "#1");
- Assert.AreEqual (2, p5.Value, "#2");
- }
- }
- // Test for bug #76880
- [Test]
- public void DateTimeParameterTest ()
- {
- SqlConnection conn = new SqlConnection (connectionString);
- using (conn) {
- conn.Open ();
- SqlCommand cmd = conn.CreateCommand ();
- cmd.CommandText = "select * from datetime_family where type_datetime=@p1";
- cmd.Parameters.Add ("@p1", SqlDbType.DateTime).Value= "10-10-2005";
- // shudnt cause and exception
- SqlDataReader rdr = cmd.ExecuteReader ();
- rdr.Close ();
- }
- }
- /**
- * Verifies whether an enum value is converted to a numeric value when
- * used as value for a numeric parameter (bug #66630)
- */
- [Test]
- public void EnumParameterTest() {
- conn = (SqlConnection) ConnectionManager.Singleton.Connection;
- try {
- ConnectionManager.Singleton.OpenConnection ();
- // create temp sp here, should normally be created in Setup of test
- // case, but cannot be done right now because of ug #68978
- DBHelper.ExecuteNonQuery (conn, "CREATE PROCEDURE #Bug66630 ("
- + "@Status smallint = 7"
- + ")"
- + "AS" + Environment.NewLine
- + "BEGIN" + Environment.NewLine
- + "SELECT CAST(5 AS int), @Status" + Environment.NewLine
- + "END");
-
- SqlCommand cmd = new SqlCommand("#Bug66630", conn);
- cmd.CommandType = CommandType.StoredProcedure;
- cmd.Parameters.Add("@Status", SqlDbType.Int).Value = Status.Error;
- using (SqlDataReader dr = cmd.ExecuteReader()) {
- // one record should be returned
- Assert.IsTrue(dr.Read(), "EnumParameterTest#1");
- // we should get two field in the result
- Assert.AreEqual(2, dr.FieldCount, "EnumParameterTest#2");
- // field 1
- Assert.AreEqual("int", dr.GetDataTypeName(0), "EnumParameterTest#3");
- Assert.AreEqual(5, dr.GetInt32(0), "EnumParameterTest#4");
- // field 2
- Assert.AreEqual("smallint", dr.GetDataTypeName(1), "EnumParameterTest#5");
- Assert.AreEqual((short) Status.Error, dr.GetInt16(1), "EnumParameterTest#6");
- // only one record should be returned
- Assert.IsFalse(dr.Read(), "EnumParameterTest#7");
- }
- } finally {
- DBHelper.ExecuteNonQuery (conn, "if exists (select name from sysobjects " +
- " where name like '#temp_Bug66630' and type like 'P') " +
- " drop procedure #temp_Bug66630; ");
- ConnectionManager.Singleton.CloseConnection ();
- }
- }
- /**
- * The below test does not need a connection but since the setup opens
- * the connection i will need to close it
- */
- [Test]
- public void CloneTest() {
- ConnectionManager.Singleton.OpenConnection ();
- SqlCommand cmd = new SqlCommand();
- cmd.Connection = null;
- cmd.CommandText = "sp_insert";
- cmd.CommandType = CommandType.StoredProcedure;
- Object TestPar = DBNull.Value;
- cmd.Parameters.Add("@TestPar1", SqlDbType.Int);
- cmd.Parameters["@TestPar1"].Value = TestPar;
- #if NET_2_0
- cmd.Parameters.AddWithValue ("@BirthDate", DateTime.Now);
- #else
- cmd.Parameters.Add ("@BirthDate", DateTime.Now);
- #endif
- cmd.DesignTimeVisible = true;
- cmd.CommandTimeout = 100;
- Object clone1 = ((ICloneable)(cmd)).Clone();
- SqlCommand cmd1 = (SqlCommand) clone1;
- Assert.AreEqual(2, cmd1.Parameters.Count);
- Assert.AreEqual(100, cmd1.CommandTimeout);
- #if NET_2_0
- cmd1.Parameters.AddWithValue ("@test", DateTime.Now);
- #else
- cmd1.Parameters.Add ("@test", DateTime.Now);
- #endif
- // to check that it is deep copy and not a shallow copy of the
- // parameter collection
- Assert.AreEqual(3, cmd1.Parameters.Count);
- Assert.AreEqual(2, cmd.Parameters.Count);
- }
- [Test]
- public void StoredProc_NoParameterTest ()
- {
- string query = "create procedure #tmp_sp_proc as begin";
- query += " select 'data' end";
- SqlConnection conn = new SqlConnection (connectionString);
- SqlCommand cmd = conn.CreateCommand ();
- cmd.CommandText = query ;
- conn.Open ();
- cmd.ExecuteNonQuery ();
-
- cmd.CommandType = CommandType.StoredProcedure;
- cmd.CommandText = "#tmp_sp_proc";
- using (SqlDataReader reader = cmd.ExecuteReader()) {
- if (reader.Read ())
- Assert.AreEqual ("data", reader.GetString(0),"#1");
- else
- Assert.Fail ("#2 Select shud return data");
- }
- conn.Close ();
- }
-
- [Test]
- public void StoredProc_ParameterTest ()
- {
- string create_query = CREATE_TMP_SP_PARAM_TEST;
- string drop_query = DROP_TMP_SP_PARAM_TEST;
- SqlConnection conn = new SqlConnection (connectionString);
-
- conn.Open ();
- SqlCommand cmd = conn.CreateCommand ();
- int label = 0 ;
- string error = "";
- while (label != -1) {
- try {
- switch (label) {
- case 0 :
- // Test BigInt Param
- DBHelper.ExecuteNonQuery (conn,
- String.Format(create_query, "bigint"));
- rpc_helper_function (cmd, SqlDbType.BigInt, 0, Int64.MaxValue);
- rpc_helper_function (cmd, SqlDbType.BigInt, 0, Int64.MinValue);
- break;
- case 1 :
- // Test Binary Param
- DBHelper.ExecuteNonQuery (conn,
- String.Format(create_query, "binary(5)"));
- //rpc_helper_function (cmd, SqlDbType.Binary, 0, new byte[] {});
- rpc_helper_function (cmd, SqlDbType.Binary, 5, new byte[] {1,2,3,4,5});
- break;
- case 2 :
- // Test Bit Param
- DBHelper.ExecuteNonQuery (conn,
- String.Format(create_query, "bit"));
- rpc_helper_function (cmd, SqlDbType.Bit, 0, true);
- rpc_helper_function (cmd, SqlDbType.Bit, 0, false);
- break;
- case 3 :
- // Testing Char
- DBHelper.ExecuteNonQuery (conn,
- String.Format(create_query, "char(10)"));
- rpc_helper_function (cmd, SqlDbType.Char, 10, "characters");
- /*
- rpc_helper_function (cmd, SqlDbType.Char, 10, "");
- rpc_helper_function (cmd, SqlDbType.Char, 10, null);
- */
- break;
- case 4 :
- // Testing DateTime
- DBHelper.ExecuteNonQuery (conn,
- String.Format(create_query, "datetime"));
- rpc_helper_function (cmd, SqlDbType.DateTime, 0, "2079-06-06 23:59:00");
- /*
- rpc_helper_function (cmd, SqlDbType.DateTime, 10, "");
- rpc_helper_function (cmd, SqlDbType.DateTime, 10, null);
- */
- break;
- case 5 :
- // Test Decimal Param
- DBHelper.ExecuteNonQuery (conn,
- String.Format(create_query,"decimal(10,2)"));
- /*
- rpc_helper_function (cmd, SqlDbType.Decimal, 0, 10.01);
- rpc_helper_function (cmd, SqlDbType.Decimal, 0, -10.01);
- */
- break;
- case 6 :
- // Test Float Param
- DBHelper.ExecuteNonQuery (conn,
- String.Format(create_query,"float"));
- rpc_helper_function (cmd, SqlDbType.Float, 0, 10.0);
- rpc_helper_function (cmd, SqlDbType.Float, 0, 0);
- /*
- rpc_helper_function (cmd, SqlDbType.Float, 0, null);
- */
- break;
- case 7 :
- // Testing Image
- /* NOT WORKING
- DBHelper.ExecuteNonQuery (conn,
- String.Format(create_query, "image"));
- rpc_helper_function (cmd, SqlDbType.Image, 0, );
- rpc_helper_function (cmd, SqlDbType.Image, 0, );
- rpc_helper_function (cmd, SqlDbType.Image, 0, );
- /* NOT WORKING*/
- break;
- case 8 :
- // Test Integer Param
- DBHelper.ExecuteNonQuery (conn,
- String.Format(create_query,"int"));
- rpc_helper_function (cmd, SqlDbType.Int, 0, 10);
- /*
- rpc_helper_function (cmd, SqlDbType.Int, 0, null);
- */
- break;
- case 9 :
- // Test Money Param
- DBHelper.ExecuteNonQuery (conn,
- String.Format(create_query,"money"));
- /*
- rpc_helper_function (cmd, SqlDbType.Money, 0, 10.0);
- rpc_helper_function (cmd, SqlDbType.Money, 0, null);
- */
- break;
- case 23 :
- // Test NChar Param
- DBHelper.ExecuteNonQuery (conn,
- String.Format(create_query,"nchar(10)"));
- /*
- rpc_helper_function (cmd, SqlDbType.NChar, 10, "nchar");
- rpc_helper_function (cmd, SqlDbType.NChar, 10, "");
- rpc_helper_function (cmd, SqlDbType.NChar, 10, null);
- */
- break;
- case 10 :
- // Test NText Param
- DBHelper.ExecuteNonQuery (conn,
- String.Format(create_query,"ntext"));
- /*
- rpc_helper_function (cmd, SqlDbType.NText, 0, "ntext");
- rpc_helper_function (cmd, SqlDbType.NText, 0, "");
- rpc_helper_function (cmd, SqlDbType.NText, 0, null);
- */
- break;
- case 11 :
- // Test NVarChar Param
- DBHelper.ExecuteNonQuery (conn,
- String.Format(create_query,"nvarchar(10)"));
- rpc_helper_function (cmd, SqlDbType.NVarChar, 10, "nvarchar");
- rpc_helper_function (cmd, SqlDbType.NVarChar, 10, "");
- //rpc_helper_function (cmd, SqlDbType.NVarChar, 10, null);
- break;
- case 12 :
- // Test Real Param
- DBHelper.ExecuteNonQuery (conn,
- String.Format(create_query,"real"));
- rpc_helper_function (cmd, SqlDbType.Real, 0, 10.0);
- //rpc_helper_function (cmd, SqlDbType.Real, 0, null);
- break;
- case 13 :
- // Test SmallDateTime Param
- DBHelper.ExecuteNonQuery (conn,
- String.Format(create_query,"smalldatetime"));
- rpc_helper_function (cmd, SqlDbType.SmallDateTime, 0, "6/6/2079 11:59:00 PM");
- /*
- rpc_helper_function (cmd, SqlDbType.SmallDateTime, 0, "");
- rpc_helper_function (cmd, SqlDbType.SmallDateTime, 0, null);
- */
- break;
- case 14 :
- // Test SmallInt Param
- DBHelper.ExecuteNonQuery (conn,
- String.Format(create_query,"smallint"));
- rpc_helper_function (cmd, SqlDbType.SmallInt, 0, 10);
- rpc_helper_function (cmd, SqlDbType.SmallInt, 0, -10);
- //rpc_helper_function (cmd, SqlDbType.SmallInt, 0, null);
- break;
- case 15 :
- // Test SmallMoney Param
- DBHelper.ExecuteNonQuery (conn,
- String.Format(create_query,"smallmoney"));
- /*
- rpc_helper_function (cmd, SqlDbType.SmallMoney, 0, 10.0);
- rpc_helper_function (cmd, SqlDbType.SmallMoney, 0, -10.0);
- rpc_helper_function (cmd, SqlDbType.SmallMoney, 0, null);
- */
- break;
- case 16 :
- // Test Text Param
- DBHelper.ExecuteNonQuery (conn,
- String.Format(create_query,"text"));
- /*
- rpc_helper_function (cmd, SqlDbType.Text, 0, "text");
- rpc_helper_function (cmd, SqlDbType.Text, 0, "");
- rpc_helper_function (cmd, SqlDbType.Text, 0, null);
- */
- break;
- case 17 :
- // Test TimeStamp Param
- /* NOT WORKING
- DBHelper.ExecuteNonQuery (conn,
- String.Format(create_query,"timestamp"));
- rpc_helper_function (cmd, SqlDbType.TimeStamp, 0, "");
- rpc_helper_function (cmd, SqlDbType.TimeStamp, 0, "");
- rpc_helper_function (cmd, SqlDbType.TimeStamp, 0, null);
- */
- break;
- case 18 :
- // Test TinyInt Param
- DBHelper.ExecuteNonQuery (conn,
- String.Format(create_query,"tinyint"));
- /*
- rpc_helper_function (cmd, SqlDbType.TinyInt, 0, 10);
- rpc_helper_function (cmd, SqlDbType.TinyInt, 0, -10);
- rpc_helper_function (cmd, SqlDbType.TinyInt, 0, null);
- */
- break;
- case 19 :
- // Test UniqueIdentifier Param
- /*
- DBHelper.ExecuteNonQuery (conn,
- String.Format(create_query,"uniqueidentifier"));
- rpc_helper_function (cmd, SqlDbType.UniqueIdentifier, 0, "0f159bf395b1d04f8c2ef5c02c3add96");
- rpc_helper_function (cmd, SqlDbType.UniqueIdentifier, 0, null);
- */
- break;
- case 20 :
- // Test VarBinary Param
- /* NOT WORKING
- DBHelper.ExecuteNonQuery (conn,
- String.Format(create_query,"varbinary (10)"));
- rpc_helper_function (cmd, SqlDbType.VarBinary, 0,);
- rpc_helper_function (cmd, SqlDbType.VarBinary, 0,);
- rpc_helper_function (cmd, SqlDbType.VarBinary, 0, null);
- */
- break;
- case 21 :
- // Test Varchar Param
- DBHelper.ExecuteNonQuery (conn,
- String.Format(create_query,"varchar(10)"));
- rpc_helper_function (cmd, SqlDbType.VarChar, 10, "VarChar");
- break;
- case 22 :
- // Test Variant Param
- /* NOT WORKING
- DBHelper.ExecuteNonQuery (conn,
- String.Format(create_query,"variant"));
- rpc_helper_function (cmd, SqlDbType.Variant, 0, );
- rpc_helper_function (cmd, SqlDbType.Variant, 0, );
- rpc_helper_function (cmd, SqlDbType.Variant, 0, null);
- */
- break;
- default :
- label = -2;
- break;
- }
- }catch (AssertionException e) {
- error += String.Format (" Case {0} INCORRECT VALUE : {1}\n",label, e.Message);
- }catch (Exception e) {
- error += String.Format (" Case {0} NOT WORKING : {1}\n",label, e.Message);
- }
- label++;
- if (label != -1)
- DBHelper.ExecuteNonQuery (conn, drop_query);
- }
- if (error != String.Empty)
- Assert.Fail (error);
- }
- private void rpc_helper_function (SqlCommand cmd, SqlDbType type, int size, object val)
- {
- cmd.Parameters.Clear ();
- SqlParameter param1 ;
- SqlParameter param2 ;
- if (size != 0) {
- param1 = new SqlParameter ("@param1", type, size);
- param2 = new SqlParameter ("@param2", type, size);
- }
- else {
- param1 = new SqlParameter ("@param1", type);
- param2 = new SqlParameter ("@param2", type);
- }
- SqlParameter retval = new SqlParameter ("retval", SqlDbType.Int);
- param1.Value = val;
- param1.Direction = ParameterDirection.Input;
- param2.Direction = ParameterDirection.Output;
- retval.Direction = ParameterDirection.ReturnValue;
- cmd.Parameters.Add (param1);
- cmd.Parameters.Add (param2);
- cmd.Parameters.Add (retval);
- cmd.CommandText = "#tmp_sp_param_test";
- cmd.CommandType = CommandType.StoredProcedure;
- using (SqlDataReader reader = cmd.ExecuteReader ()) {
- while (reader.Read ()) {
- if (param1.Value != null && param1.Value.GetType () == typeof (string))
- Assert.AreEqual (param1.Value,
- reader.GetValue(0).ToString (),"#1");
- else
- Assert.AreEqual (param1.Value,
- reader.GetValue(0),"#1");
- }
- }
- if (param1.Value != null && param1.Value.GetType () == typeof (string) && param2.Value != null)
- Assert.AreEqual (param1.Value.ToString (), param2.Value.ToString (), "#2");
- else
- Assert.AreEqual (param1.Value, param2.Value, "#2");
- Assert.AreEqual (5, retval.Value, "#3");
- }
- [Test]
- [ExpectedException (typeof (InvalidOperationException))]
- public void OutputParamSizeTest1 ()
- {
- conn = (SqlConnection) ConnectionManager.Singleton.Connection;
- ConnectionManager.Singleton.OpenConnection ();
- cmd = new SqlCommand ();
- cmd.Connection = conn;
- cmd.CommandText = "create procedure #testsize (@p1 as varchar(10) output) as return";
- cmd.CommandType = CommandType.Text;
- cmd.ExecuteNonQuery ();
- cmd.CommandText = "#testsize";
- cmd.CommandType = CommandType.StoredProcedure;
- SqlParameter p1 = new SqlParameter ();
- p1.ParameterName = "@p1";
- p1.Direction = ParameterDirection.InputOutput;
- p1.DbType = DbType.String;
- p1.IsNullable = false;
- cmd.Parameters.Add (p1);
- cmd.ExecuteNonQuery ();
- }
- [Test]
- [ExpectedException (typeof (InvalidOperationException))]
- public void OutputParamSizeTest2 ()
- {
- conn = (SqlConnection) ConnectionManager.Singleton.Connection;
- ConnectionManager.Singleton.OpenConnection ();
- cmd = new SqlCommand ();
- cmd.Connection = conn;
- cmd.CommandText = "create procedure #testsize (@p1 as varchar(10) output) as return";
- cmd.CommandType = CommandType.Text;
- cmd.ExecuteNonQuery ();
- cmd.CommandText = "#testsize";
- cmd.CommandType = CommandType.StoredProcedure;
- SqlParameter p1 = new SqlParameter ();
- p1.ParameterName = "@p1";
- p1.Direction = ParameterDirection.Output;
- p1.DbType = DbType.String;
- p1.IsNullable = false;
- cmd.Parameters.Add (p1);
- cmd.ExecuteNonQuery ();
- }
- [Test]
- [ExpectedException (typeof (InvalidOperationException))]
- public void OutputParamSizeTest3 ()
- {
- conn = (SqlConnection) ConnectionManager.Singleton.Connection;
- ConnectionManager.Singleton.OpenConnection ();
- cmd = new SqlCommand ();
- cmd.Connection = conn;
- cmd.CommandText = "create procedure #testsize (@p1 as varchar(10) output) as return";
- cmd.CommandType = CommandType.Text;
- cmd.ExecuteNonQuery ();
- cmd.CommandText = "#testsize";
- cmd.CommandType = CommandType.StoredProcedure;
- SqlParameter p1 = new SqlParameter ();
- p1.ParameterName = "@p1";
- p1.Direction = ParameterDirection.InputOutput;
- p1.DbType = DbType.String;
- p1.IsNullable = true;
- cmd.Parameters.Add (p1);
- cmd.ExecuteNonQuery ();
- }
- [Test]
- [ExpectedException (typeof (InvalidOperationException))]
- public void OutputParamSizeTest4 ()
- {
- conn = (SqlConnection) ConnectionManager.Singleton.Connection;
- ConnectionManager.Singleton.OpenConnection ();
- cmd = new SqlCommand ();
- cmd.Connection = conn;
- cmd.CommandText = "create procedure #testsize (@p1 as varchar(10) output) as return";
- cmd.CommandType = CommandType.Text;
- cmd.ExecuteNonQuery ();
- cmd.CommandText = "#testsize";
- cmd.CommandType = CommandType.StoredProcedure;
- SqlParameter p1 = new SqlParameter ();
- p1.ParameterName = "@p1";
- p1.Direction = ParameterDirection.Output;
- p1.DbType = DbType.String;
- p1.IsNullable = true;
- cmd.Parameters.Add (p1);
- cmd.ExecuteNonQuery ();
- }
- #if NET_2_0
- [Test]
- public void NotificationTest ()
- {
- cmd = new SqlCommand ();
- SqlNotificationRequest notification = new SqlNotificationRequest("MyNotification","MyService",15);
- Assert.AreEqual (null, cmd.Notification, "#1 The default value for this property should be null");
- cmd.Notification = notification;
- Assert.AreEqual ("MyService", cmd.Notification.Options, "#2 The value should be MyService as the constructor is initiated with this value");
- Assert.AreEqual (15, cmd.Notification.Timeout, "#2 The value should be 15 as the constructor is initiated with this value");
- }
- [Test]
- public void NotificationAutoEnlistTest ()
- {
- cmd = new SqlCommand ();
- Assert.AreEqual (true, cmd.NotificationAutoEnlist, "#1 Default value of the property should be true");
- cmd.NotificationAutoEnlist = false;
- Assert.AreEqual (false, cmd.NotificationAutoEnlist, "#2 The value of the property should be false after setting it to false");
- }
- [Test]
- public void BeginExecuteXmlReaderTest ()
- {
- cmd = new SqlCommand ();
- string connectionString1 = null;
- connectionString1 = ConnectionManager.Singleton.ConnectionString + "Asynchronous Processing=true";
- try {
- SqlConnection conn1 = new SqlConnection (connectionString1);
- conn1.Open ();
- cmd.CommandText = "Select lname from employee where id<2 FOR XML AUTO, XMLDATA" ;
- cmd.Connection = conn1;
-
- IAsyncResult result = cmd.BeginExecuteXmlReader ();
- XmlReader reader = cmd.EndExecuteXmlReader (result);
- while (reader.Read ())
- {
- if (reader.LocalName.ToString () == "employee")
- {
- Assert.AreEqual ("kumar", reader["lname"], "#1 ");
- }
- }
- } finally {
- ConnectionManager.Singleton.CloseConnection ();
- }
- }
-
- [Test]
- public void BeginExecuteXmlReaderExceptionTest ()
- {
- cmd = new SqlCommand ();
- try {
- SqlConnection conn = new SqlConnection (connectionString);
- conn.Open ();
- cmd.CommandText = "Select lname from employee where id<2 FOR XML AUTO, XMLDATA" ;
- cmd.Connection = conn;
-
- try {
- /*IAsyncResult result = */cmd.BeginExecuteXmlReader ();
- } catch (InvalidOperationException) {
- Assert.AreEqual (ConnectionManager.Singleton.ConnectionString, connectionString, "#1 Connection string has changed");
- return;
- }
- Assert.Fail ("Expected Exception InvalidOperationException not thrown");
- } finally {
- ConnectionManager.Singleton.CloseConnection ();
- }
- }
-
- [Test]
- public void SqlCommandDisposeTest ()
- {
- IDataReader reader = null;
- try {
- conn = (SqlConnection) ConnectionManager.Singleton.Connection;
- ConnectionManager.Singleton.OpenConnection ();
- IDbCommand command = conn.CreateCommand ();
- try {
- string sql = "SELECT * FROM employee";
- command.CommandText = sql;
- reader = command.ExecuteReader();
- } finally {
- command.Dispose();
- }
- while (reader.Read());
- } finally {
- reader.Dispose();
- ConnectionManager.Singleton.CloseConnection ();
- }
- }
-
- [Test]
- public void CloneObjTest ()
- {
- SqlCommand cmd = new SqlCommand();
- cmd.CommandText = "sp_insert";
- cmd.CommandType = CommandType.StoredProcedure;
- Object TestPar = DBNull.Value;
- cmd.Parameters.Add ("@TestPar1", SqlDbType.Int);
- cmd.Parameters ["@TestPar1"].Value = TestPar;
- #if NET_2_0
- cmd.Parameters.AddWithValue ("@BirthDate", DateTime.Now);
- #else
- cmd.Parameters.Add ("@BirthDate", DateTime.Now);
- #endif
- cmd.DesignTimeVisible = true;
- cmd.CommandTimeout = 100;
- SqlCommand cmd1 = cmd.Clone ();
- Assert.AreEqual (2, cmd1.Parameters.Count);
- Assert.AreEqual (100, cmd1.CommandTimeout);
- #if NET_2_0
- cmd1.Parameters.AddWithValue ("@test", DateTime.Now);
- #else
- cmd1.Parameters.Add ("@test", DateTime.Now);
- #endif
- Assert.AreEqual (3, cmd1.Parameters.Count);
- Assert.AreEqual (2, cmd.Parameters.Count);
- }
- #endif
- private enum Status {
- OK = 0,
- Error = 3
- }
- private readonly string CREATE_TMP_SP_PARAM_TEST = "create procedure #tmp_sp_param_test (@param1 {0}, @param2 {0} output) as begin select @param1 set @param2=@param1 return 5 end";
- private readonly string DROP_TMP_SP_PARAM_TEST = "drop procedure #tmp_sp_param_test";
- private readonly string CREATE_TMP_SP_TEMP_INSERT_PERSON = ("create procedure #sp_temp_insert_employee ( " + Environment.NewLine +
- "@fname varchar (20)) " + Environment.NewLine +
- "as " + Environment.NewLine +
- "begin" + Environment.NewLine +
- "declare @id int;" + Environment.NewLine +
- "select @id = max (id) from employee;" + Environment.NewLine +
- "set @id = @id + 6000 + 1;" + Environment.NewLine +
- "insert into employee (id, fname, dob, doj) values (@id, @fname, '1980-02-11', getdate ());" + Environment.NewLine +
- "return @id;" + Environment.NewLine +
- "end");
- private readonly string DROP_TMP_SP_TEMP_INSERT_PERSON = ("if exists (select name from sysobjects where " + Environment.NewLine +
- "name = '#sp_temp_insert_employee' and type = 'P') " + Environment.NewLine +
- "drop procedure #sp_temp_insert_employee; ");
- }
- }
|