| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661 |
- //
- // Copyright (c) 2006 Mainsoft Co.
- //
- // 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.Text;
- using System.Data;
- using System.Data.OleDb ;
- using MonoTests.System.Data.Utils;
- using NUnit.Framework;
- namespace MonoTests.System.Data.OleDb
- {
- [TestFixture]
- public class OleDbDataReader_NextResult : ADONetTesterClass
- {
- OleDbConnection con = new OleDbConnection(MonoTests.System.Data.Utils.ConnectedDataProvider.ConnectionString);
- Exception exp = null;
- [SetUp]
- public void SetUp() {
- base.PrepareDataForTesting(MonoTests.System.Data.Utils.ConnectedDataProvider.ConnectionString);
- con.Open();
- }
- [TearDown]
- public void TearDown() {
- if (con.State == ConnectionState.Open) con.Close();
- }
- public static void Main()
- {
- OleDbDataReader_NextResult tc = new OleDbDataReader_NextResult();
- Exception exp = null;
- try
- {
- tc.BeginTest("OleDbDataReader_NextResult");
- tc.run();
- }
- catch(Exception ex){exp = ex;}
- finally {tc.EndTest(exp);}
- }
- public void run()
- {
- base.PrepareDataForTesting(MonoTests.System.Data.Utils.ConnectedDataProvider.ConnectionString);
- con.Open();
- TestMultipleResultSetsWithSP();
- TestMultipleResultSetsWithSQLText();
- if (con.State == ConnectionState.Open) con.Close();
- }
- [Test]
- public void TestMultipleResultSetsWithSQLText()
- {
- if (ConnectedDataProvider.GetDbType() == DataBaseServer.Oracle)
- {
- this.Log("Multiple result sets by sql text is not tested in oracle.");
- return;
- }
- if (ConnectedDataProvider.GetDbType() == DataBaseServer.DB2)
- {
- this.Log("Multiple result sets using compound statement not supported at DB2.");
- return;
- }
- bool NextResultExists = false;
- OleDbDataReader rdr = null;
- OleDbCommand cmd;
- int TblResult0=-1;
- int TblResult1=-1;
- int TblResult2=-1;
- try
- {
- BeginCase("Setup: Get expected results.");
- //get excpected results
- GetExcpectedResults(ref TblResult0, ref TblResult1, ref TblResult2);
- this.Pass("Setup: Get expected results ended.");
- }
- catch (Exception ex)
- {
- exp = ex;
- }
- finally
- {
- EndCase(exp);
- }
- string cmdTxt = BuildCommandText();
- cmd = new OleDbCommand(cmdTxt, con);
- cmd.CommandType = CommandType.Text;
- rdr = cmd.ExecuteReader();
- // -------------- ResultSet 1 ------------
- try
- {
- exp = null;
- BeginCase("(Multiple Resultsets sql text) - Check if ResultSet 1 exists");
- Compare(rdr != null, true);
- }
- catch(Exception ex)
- {
- exp = ex;
- }
- finally
- {
- EndCase(exp);
- }
- try
- {
- exp = null;
- BeginCase("(Multiple Resultsets sql text) - Check if ResultSet 1 contains data");
- NextResultExists = rdr.Read();
- Compare(NextResultExists, true);
- }
- catch(Exception ex)
- {
- exp = ex;
- }
- finally
- {
- EndCase(exp);
- }
- int i = 1;
- try
- {
- exp = null;
- BeginCase("(Multiple Resultsets sql text) - Check ResultSet 1 Data");
- while (rdr.Read())
- {
- i++;
- }
- Compare(i, TblResult0);
- }
- catch(Exception ex)
- {
- exp = ex;
- }
- finally
- {
- EndCase(exp);
- }
- try
- {
- exp = null;
- BeginCase("(Multiple Resultsets sql text) - Check ResultSet 1 Schema");
- Compare(rdr.GetSchemaTable().Rows[0].ItemArray.GetValue(0).ToString().ToUpper(), "CUSTOMERID");
- }
- catch(Exception ex)
- {
- exp = ex;
- }
- finally
- {
- EndCase(exp);
- }
- // -------------- ResultSet 2 ------------
- try
- {
- exp = null;
- BeginCase("(Multiple Resultsets sql text) - Check if ResultSet 2 exists");
- NextResultExists = rdr.NextResult();
- Compare(NextResultExists, true);
- }
- catch(Exception ex)
- {
- exp = ex;
- }
- finally
- {
- EndCase(exp);
- }
- try
- {
- exp = null;
- BeginCase("(Multiple Resultsets sql text) - Check if ResultSet 2 contains data");
- NextResultExists = rdr.Read();
- Compare(NextResultExists, true);
- }
- catch(Exception ex)
- {
- exp = ex;
- }
- finally
- {
- EndCase(exp);
- }
- try
- {
- exp = null;
- BeginCase("(Multiple Resultsets sql text) - Check ResultSet 2 Data");
- i = 1;
- while (rdr.Read())
- {
- i++;
- }
- Compare(i, TblResult1);
- }
- catch(Exception ex)
- {
- exp = ex;
- }
- finally
- {
- EndCase(exp);
- }
- try
- {
- exp = null;
- BeginCase("(Multiple Resultsets sql text) - Check ResultSet 2 Schema");
- Compare(rdr.GetSchemaTable().Rows[0].ItemArray.GetValue(0).ToString().ToUpper(), "CATEGORYID");
- }
- catch(Exception ex)
- {
- exp = ex;
- }
- // -------------- ResultSet 3 ------------
- finally
- {
- EndCase(exp);
- }
- try
- {
- exp = null;
- BeginCase("(Multiple Resultsets sql text) - Check if ResultSet 3 exists");
- NextResultExists = rdr.NextResult();
- Compare(NextResultExists, true);
- }
- catch(Exception ex)
- {
- exp = ex;
- }
- finally
- {
- EndCase(exp);
- }
- try
- {
- exp = null;
- BeginCase("(Multiple Resultsets sql text) - Check if ResultSet 3 contains data");
- NextResultExists = rdr.Read();
- Compare(NextResultExists, true);
- }
- catch(Exception ex)
- {
- exp = ex;
- }
- finally
- {
- EndCase(exp);
- }
- try
- {
- exp = null;
- BeginCase("(Multiple Resultsets sql text) - Check ResultSet 3 Data");
- i = 1;
- while (rdr.Read())
- {
- i++;
- }
- Compare(i, TblResult2);
- }
- catch(Exception ex)
- {
- exp = ex;
- }
- finally
- {
- EndCase(exp);
- }
- try
- {
- exp = null;
- BeginCase("(Multiple Resultsets sql text) - Check ResultSet 3 Schema");
- Compare(rdr.GetSchemaTable().Rows[0].ItemArray.GetValue(0).ToString().ToUpper(), "REGIONID");
- }
- catch(Exception ex)
- {
- exp = ex;
- }
- finally
- {
- EndCase(exp);
- }
- try
- {
- exp = null;
- BeginCase("(Multiple Resultsets sql text) - Check that resultset 4 does not exist.");
- NextResultExists = rdr.NextResult();
- Compare(NextResultExists, false);
- }
- catch(Exception ex)
- {
- exp = ex;
- }
- finally
- {
- EndCase(exp);
- }
- try
- {
- exp = null;
- BeginCase("(Multiple Resultsets sql text) - Check that resultset 4 does not contain data.");
- NextResultExists = rdr.Read();
- Compare(NextResultExists, false);
- }
- catch(Exception ex)
- {
- exp = ex;
- }
- finally
- {
- EndCase(exp);
- }
- if (!rdr.IsClosed)
- rdr.Close();
- }
- [Test]
- public void TestMultipleResultSetsWithSP()
- {
- #if !JAVA
- if (ConnectedDataProvider.GetDbType() == DataBaseServer.Oracle)
- {
- this.Log("Not testing Stored procedures with multiple ref-cursors on Oracle with .NET due to bug in .NET (only the first ref-cursor is retrived).");
- return;
- }
- if (ConnectedDataProvider.GetDbType(con) == DataBaseServer.PostgreSQL)
- {
- // fail to work on .NET OLEDB
- this.Log("Not testing PostgreSQL CommandType.StoredProcedure which return SETOF");
- return;
- }
- #endif
-
- bool NextResultExists = false;
- // transaction use was add for PostgreSQL
- OleDbTransaction tr = con.BeginTransaction();
- OleDbCommand cmd = new OleDbCommand("GH_MULTIRECORDSETS", con, tr);
- cmd.CommandType = CommandType.StoredProcedure;
- OleDbDataReader rdr = cmd.ExecuteReader();
- try
- {
- exp = null;
- BeginCase("(Multiple Resultsets stored proc.) - Check if ResultSet 1 exists");
- Compare(rdr != null, true);
- }
- catch(Exception ex)
- {
- exp = ex;
- }
- finally
- {
- EndCase(exp);
- }
- try
- {
- exp = null;
- BeginCase("(Multiple Resultsets stored proc.) - Check if ResultSet 1 contains data");
- NextResultExists = rdr.Read();
- Compare(NextResultExists, true);
- }
- catch(Exception ex)
- {
- exp = ex;
- }
- finally
- {
- EndCase(exp);
- }
- try
- {
- exp = null;
- BeginCase("(Multiple Resultsets stored proc.) - Check ResultSet 1 Data");
- Compare(rdr.GetValue(1).ToString(), "Yavine");
- }
- catch(Exception ex)
- {
- exp = ex;
- }
- finally
- {
- EndCase(exp);
- }
- try
- {
- exp = null;
- BeginCase("(Multiple Resultsets stored proc.) - Check ResultSet 1 Schema");
- Compare(rdr.GetSchemaTable().Rows[0].ItemArray.GetValue(0).ToString().ToUpper(), "EMPLOYEEID");
- }
- catch(Exception ex)
- {
- exp = ex;
- }
- finally
- {
- EndCase(exp);
- }
-
- // -------------- ResultSet 2 ------------
- try
- {
- exp = null;
- BeginCase("(Multiple Resultsets stored proc.) - Check if ResultSet 2 exists");
- NextResultExists = rdr.NextResult();
- Compare(NextResultExists, true);
- }
- catch(Exception ex)
- {
- exp = ex;
- }
- finally
- {
- EndCase(exp);
- }
- try
- {
- exp = null;
- BeginCase("(Multiple Resultsets stored proc.) - Check if ResultSet 2 contains data");
- NextResultExists = rdr.Read();
- Compare(NextResultExists, true);
- }
- catch(Exception ex)
- {
- exp = ex;
- }
- finally
- {
- EndCase(exp);
- }
- try
- {
- exp = null;
- BeginCase("(Multiple Resultsets stored proc.) - Check ResultSet 2 Data");
- Compare(rdr.GetValue(1).ToString(), "Morgenstern Gesundkost");
- }
- catch(Exception ex)
- {
- exp = ex;
- }
- finally
- {
- EndCase(exp);
- }
- try
- {
- exp = null;
- BeginCase("(Multiple Resultsets stored proc.) - Check ResultSet 2 Schema");
- Compare(rdr.GetSchemaTable().Rows[0].ItemArray.GetValue(0).ToString().ToUpper(), "CUSTOMERID");
- }
- catch(Exception ex)
- {
- exp = ex;
- }
- finally
- {
- EndCase(exp);
- }
- // -------------- ResultSet 3 ------------
- try
- {
- exp = null;
- BeginCase("(Multiple Resultsets stored proc.) - Check if ResultSet 3 exists");
- NextResultExists = rdr.NextResult();
- Compare(NextResultExists, true);
- }
- catch(Exception ex)
- {
- exp = ex;
- }
- finally
- {
- EndCase(exp);
- }
- try
- {
- exp = null;
- BeginCase("(Multiple Resultsets stored proc.) - Check if ResultSet 3 contains data");
- NextResultExists = rdr.Read();
- Compare(NextResultExists, false);
- }
- catch(Exception ex)
- {
- exp = ex;
- }
- finally
- {
- EndCase(exp);
- }
- try
- {
- exp = null;
- BeginCase("(Multiple Resultsets stored proc.) - Check ResultSet 3 Schema");
- Compare(rdr.GetSchemaTable().Rows[0].ItemArray.GetValue(0).ToString().ToUpper(), "ORDERID");
- }
- catch(Exception ex)
- {
- exp = ex;
- }
- finally
- {
- EndCase(exp);
- }
- try
- {
- exp = null;
- BeginCase("(Multiple Resultsets stored proc.) - Check that resultset 4 does not exist.");
- NextResultExists = rdr.NextResult();
- Compare(NextResultExists, false);
- }
- catch(Exception ex)
- {
- exp = ex;
- }
- finally
- {
- EndCase(exp);
- }
- try
- {
- exp = null;
- BeginCase("(Multiple Resultsets stored proc.) - Check that resultset 4 does not contain data.");
- NextResultExists = rdr.Read();
- Compare(NextResultExists, false);
- }
- catch(Exception ex)
- {
- exp = ex;
- }
- finally
- {
- EndCase(exp);
- }
- //Cleanup:
- if (!rdr.IsClosed)
- {
- rdr.Close();
- }
- // transaction use was add for PostgreSQL
- tr.Commit();
- }
- #region "Private Utilities"
- private string BuildCommandText()
- {
- string beginStatement;
- string endStatement;
- string commandDelimiter;
- string[] commands = new string[] {"select * from Customers", "select * from Categories", "select * from Region"};
- GetDBSpecificSyntax(ConnectedDataProvider.GetDbType(), out beginStatement, out endStatement, out commandDelimiter);
- StringBuilder cmdBuilder = new StringBuilder();
- cmdBuilder.Append(beginStatement);
- cmdBuilder.Append(" ");
- foreach (string statement in commands)
- {
- cmdBuilder.Append(statement);
- cmdBuilder.Append(commandDelimiter);
- cmdBuilder.Append(" ");
- }
- cmdBuilder.Append(endStatement);
- return cmdBuilder.ToString();
- }
- private void GetDBSpecificSyntax(DataBaseServer dbServer, out string beginStatement, out string endStatement, out string commandDelimiter)
- {
- switch (dbServer)
- {
- case DataBaseServer.SQLServer:
- beginStatement = "BEGIN";
- endStatement = "END";
- commandDelimiter = ";";
- break;
- case DataBaseServer.Sybase:
- beginStatement = "BEGIN";
- endStatement = "END";
- commandDelimiter = "\r\n";
- break;
- case DataBaseServer.Oracle:
- beginStatement = "BEGIN";
- endStatement = "END;";
- commandDelimiter = ";";
- break;
- case DataBaseServer.DB2:
- {
- beginStatement = "";
- endStatement = "";
- }
- commandDelimiter = ";";
- break;
- case DataBaseServer.PostgreSQL:
- beginStatement = "";
- endStatement = "";
- commandDelimiter = ";";
- break;
- default:
- this.Fail("Unknown DataBaseServer type");
- throw new ApplicationException("Unknown DataBaseServer type");
- }
- }
- private void GetExcpectedResults(ref int TblResult0, ref int TblResult1, ref int TblResult2)
- {
- // get excpected results
-
- // transaction use was add for PostgreSQL
- OleDbTransaction tr = con.BeginTransaction();
- OleDbCommand cmd = new OleDbCommand("", con,tr);
- cmd.CommandText = "Select count(*) from Customers";
- TblResult0 = Int32.Parse(cmd.ExecuteScalar().ToString());
- cmd.CommandText = "Select count(*) from Categories";
- TblResult1 = Int32.Parse(cmd.ExecuteScalar().ToString());
- cmd.CommandText = "Select count(*) from Region";
- TblResult2 = Int32.Parse(cmd.ExecuteScalar().ToString());
- tr.Commit();
- }
- #endregion
- }
- }
|