9using System.Collections.Generic;
10using System.Globalization;
12using System.Threading;
15using System.Data.SqlClient;
16using System.Configuration;
19using Microsoft.VisualStudio.TestTools.UnitTesting;
22using TestClass = NUnit.Framework.TestFixtureAttribute;
23using TestInitialize = NUnit.Framework.SetUpAttribute;
24using TestCleanup = NUnit.Framework.TearDownAttribute;
25using TestMethod = NUnit.Framework.TestAttribute;
26using System.Configuration;
31namespace Csla.Test.SafeDataReader
34 public class SafeDataReaderTests
37 public void Initialize()
39 Thread.CurrentThread.CurrentCulture = CultureInfo.GetCultureInfo(
"en-US");
40 Thread.CurrentThread.CurrentUICulture = CultureInfo.GetCultureInfo(
"en-US");
43 private static string CONNECTION_STRING = WellKnownValues.DataPortalTestDatabase;
46 public void ClearDataBase()
48 SqlConnection cn =
new SqlConnection(CONNECTION_STRING);
49 SqlCommand cm =
new SqlCommand(
"DELETE FROM Table2", cn);
67 [TestCategory(
"SkipWhenLiveUnitTesting")]
68 public void CloseSafeDataReader()
71 SqlConnection cn =
new SqlConnection(CONNECTION_STRING);
74 using (SqlCommand cm = cn.CreateCommand())
76 cm.CommandText =
"SELECT FirstName FROM Table2";
80 Assert.AreEqual(
false, dr.IsClosed);
82 Assert.AreEqual(
true, dr.IsClosed);
88 public void TestFieldCount()
91 SqlConnection cn =
new SqlConnection(CONNECTION_STRING);
94 using (SqlCommand cm = cn.CreateCommand())
96 cm.CommandText =
"SELECT FirstName, LastName FROM Table2";
100 Assert.IsTrue(dr.FieldCount > 0);
101 Assert.AreEqual(
false, dr.NextResult());
110 public void GetSchemaTable()
113 SqlConnection cn =
new SqlConnection(CONNECTION_STRING);
114 SqlCommand cm = cn.CreateCommand();
115 DataTable dtSchema =
null;
116 cm.CommandText =
"SELECT * FROM MultiDataTypes";
123 dtSchema = dr.GetSchemaTable();
129 Assert.AreEqual(
"BIGINTFIELD", dtSchema.Rows[0][0]);
130 Assert.AreEqual(typeof(System.Int64), dtSchema.Rows[0][12]);
131 Assert.AreEqual(typeof(System.Byte[]), dtSchema.Rows[1][12]);
135 public void IsDBNull()
138 SqlConnection cn =
new SqlConnection(CONNECTION_STRING);
139 SqlCommand cm = cn.CreateCommand();
140 cm.CommandText =
"SELECT TEXT, BIGINTFIELD, IMAGEFIELD FROM MultiDataTypes";
148 Assert.AreEqual(
true, dr.IsDBNull(2));
149 Assert.AreEqual(
false, dr.IsDBNull(1));
157 public void GetDataTypes()
160 SqlConnection cn =
new SqlConnection(CONNECTION_STRING);
161 SqlCommand cm = cn.CreateCommand();
163 "SELECT BITFIELD, CHARFIELD, DATETIMEFIELD, UNIQUEIDENTIFIERFIELD, SMALLINTFIELD, INTFIELD, BIGINTFIELD, TEXT FROM MultiDataTypes";
167 Guid uniqueidentifierfield;
168 System.Int16 smallintfield;
169 System.Int32 intfield;
170 System.Int64 bigintfield;
179 bitfield = dr.GetBoolean(
"BITFIELD");
182 charfield = dr.GetChar(
"CHARFIELD");
183 datetimefield = dr.GetSmartDate(
"DATETIMEFIELD");
184 uniqueidentifierfield = dr.GetGuid(
"UNIQUEIDENTIFIERFIELD");
185 smallintfield = dr.GetInt16(
"SMALLINTFIELD");
186 intfield = dr.GetInt32(
"INTFIELD");
187 bigintfield = dr.GetInt64(
"BIGINTFIELD");
188 text = dr.GetString(
"TEXT");
194 Assert.AreEqual(
false, bitfield);
195 Assert.AreEqual(
'z', charfield);
196 Assert.AreEqual(
"12/13/2005", datetimefield.ToString());
197 Assert.AreEqual(
"c0f92820-61b5-11da-8cd6-0800200c9a66", uniqueidentifierfield.ToString());
198 Assert.AreEqual(32767, smallintfield);
199 Assert.AreEqual(2147483647, intfield);
200 Assert.AreEqual(92233720368547111, bigintfield);
201 Assert.AreEqual(
"a bunch of text...a bunch of text...a bunch of text...a bunch of text...", text);
209 [ExpectedException(typeof(SqlException))]
210 public void ThrowSqlException()
213 SqlConnection cn =
new SqlConnection(CONNECTION_STRING);
216 using (SqlCommand cm = cn.CreateCommand())
218 cm.CommandText =
"SELECT FirstName FROM NonExistantTable";
225 public void TestSafeDataReader()
227 List<string> list =
new List<string>();
230 SqlConnection cn =
new SqlConnection(CONNECTION_STRING);
233 using (SqlCommand cm = cn.CreateCommand())
235 cm.CommandText =
"SELECT Name, Date, Age FROM Table1";
241 string output = dr.GetString(
"Name") +
", age " + dr.GetInt32(
"Age") +
", added on " + dr.GetSmartDate(
"Date");
242 Assert.AreEqual(
"varchar", dr.GetDataTypeName(
"Name"));
243 Assert.AreEqual(
false, dr.IsClosed);
246 Console.WriteLine(output);
249 Assert.AreEqual(
true, dr.IsClosed);
254 Assert.AreEqual(
"Bill, age 56, added on 12/23/2004", list[0]);
255 Assert.AreEqual(
"Jim, age 33, added on 1/14/2003", list[1]);
This is an IDataReader that 'fixes' any null values before they are returned to our business code.
@ Guid
Globally unique identifier / Guid
Provides a date data type that understands the concept of an empty date value.