CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
SafeDataReaderTests.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="SafeDataReaderTests.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>no summary</summary>
7//-----------------------------------------------------------------------
8using System;
9using System.Collections.Generic;
10using System.Globalization;
11using System.Text;
12using System.Threading;
14using System.Data;
15using System.Data.SqlClient;
16using System.Configuration;
17
18#if !NUNIT
19using Microsoft.VisualStudio.TestTools.UnitTesting;
20#else
21using NUnit.Framework;
22using TestClass = NUnit.Framework.TestFixtureAttribute;
23using TestInitialize = NUnit.Framework.SetUpAttribute;
24using TestCleanup = NUnit.Framework.TearDownAttribute;
25using TestMethod = NUnit.Framework.TestAttribute;
26using System.Configuration;
27#endif
28
29#if DEBUG
30
31namespace Csla.Test.SafeDataReader
32{
33 [TestClass()]
34 public class SafeDataReaderTests
35 {
36 [TestInitialize]
37 public void Initialize()
38 {
39 Thread.CurrentThread.CurrentCulture = CultureInfo.GetCultureInfo("en-US");
40 Thread.CurrentThread.CurrentUICulture = CultureInfo.GetCultureInfo("en-US");
41 }
42
43 private static string CONNECTION_STRING = WellKnownValues.DataPortalTestDatabase;
44
45
46 public void ClearDataBase()
47 {
48 SqlConnection cn = new SqlConnection(CONNECTION_STRING);
49 SqlCommand cm = new SqlCommand("DELETE FROM Table2", cn);
50
51 try
52 {
53 cn.Open();
54 cm.ExecuteNonQuery();
55 }
56 catch (Exception)
57 {
58 //do nothing
59 }
60 finally
61 {
62 cn.Close();
63 }
64 }
65
66 [TestMethod()]
67 [TestCategory("SkipWhenLiveUnitTesting")]
68 public void CloseSafeDataReader()
69 {
70 // TODO: Connection strings were lost, and I don't know how to set them correctly
71 SqlConnection cn = new SqlConnection(CONNECTION_STRING);
72 cn.Open();
73
74 using (SqlCommand cm = cn.CreateCommand())
75 {
76 cm.CommandText = "SELECT FirstName FROM Table2";
77
78 using (Csla.Data.SafeDataReader dr = new Csla.Data.SafeDataReader(cm.ExecuteReader()))
79 {
80 Assert.AreEqual(false, dr.IsClosed);
81 dr.Close();
82 Assert.AreEqual(true, dr.IsClosed);
83 }
84 }
85 }
86
87 [TestMethod()]
88 public void TestFieldCount()
89 {
90 // TODO: Connection strings were lost, and I don't know how to set them correctly
91 SqlConnection cn = new SqlConnection(CONNECTION_STRING);
92 cn.Open();
93
94 using (SqlCommand cm = cn.CreateCommand())
95 {
96 cm.CommandText = "SELECT FirstName, LastName FROM Table2";
97
98 using (Csla.Data.SafeDataReader dr = new Csla.Data.SafeDataReader(cm.ExecuteReader()))
99 {
100 Assert.IsTrue(dr.FieldCount > 0);
101 Assert.AreEqual(false, dr.NextResult());
102 dr.Close();
103 }
104 cn.Close();
105 }
106 }
107
108 [TestMethod()]
109
110 public void GetSchemaTable()
111 {
112 // TODO: Connection strings were lost, and I don't know how to set them correctly
113 SqlConnection cn = new SqlConnection(CONNECTION_STRING);
114 SqlCommand cm = cn.CreateCommand();
115 DataTable dtSchema = null;
116 cm.CommandText = "SELECT * FROM MultiDataTypes";
117 cn.Open();
118
119 using (cm)
120 {
121 using (Csla.Data.SafeDataReader dr = new Csla.Data.SafeDataReader(cm.ExecuteReader()))
122 {
123 dtSchema = dr.GetSchemaTable();
124 dr.Close();
125 }
126 }
127 cn.Close();
128
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]);
132 }
133
134 [TestMethod()]
135 public void IsDBNull()
136 {
137 // TODO: Connection strings were lost, and I don't know how to set them correctly
138 SqlConnection cn = new SqlConnection(CONNECTION_STRING);
139 SqlCommand cm = cn.CreateCommand();
140 cm.CommandText = "SELECT TEXT, BIGINTFIELD, IMAGEFIELD FROM MultiDataTypes";
141
142 cn.Open();
143 using (cm)
144 {
145 using (Csla.Data.SafeDataReader dr = new Csla.Data.SafeDataReader(cm.ExecuteReader()))
146 {
147 dr.Read();
148 Assert.AreEqual(true, dr.IsDBNull(2));
149 Assert.AreEqual(false, dr.IsDBNull(1));
150 dr.Close();
151 }
152 }
153 cn.Close();
154 }
155
156 [TestMethod()]
157 public void GetDataTypes()
158 {
159 // TODO: Connection strings were lost, and I don't know how to set them correctly
160 SqlConnection cn = new SqlConnection(CONNECTION_STRING);
161 SqlCommand cm = cn.CreateCommand();
162 cm.CommandText =
163 "SELECT BITFIELD, CHARFIELD, DATETIMEFIELD, UNIQUEIDENTIFIERFIELD, SMALLINTFIELD, INTFIELD, BIGINTFIELD, TEXT FROM MultiDataTypes";
164 bool bitfield;
165 char charfield;
166 Csla.SmartDate datetimefield;
167 Guid uniqueidentifierfield;
168 System.Int16 smallintfield;
169 System.Int32 intfield;
170 System.Int64 bigintfield;
171 System.String text;
172
173 cn.Open();
174 using (cm)
175 {
176 using (Csla.Data.SafeDataReader dr = new Csla.Data.SafeDataReader(cm.ExecuteReader()))
177 {
178 dr.Read();
179 bitfield = dr.GetBoolean("BITFIELD");
180 //this causes an error in vb version (char array initialized to nothing in vb version
181 //and it's initialized with new Char[1] in c# version)
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");
189 dr.Close();
190 }
191 }
192 cn.Close();
193
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);
202 }
203
204
205
206
207
208 [TestMethod()]
209 [ExpectedException(typeof(SqlException))]
210 public void ThrowSqlException()
211 {
212 // TODO: Connection strings were lost, and I don't know how to set them correctly
213 SqlConnection cn = new SqlConnection(CONNECTION_STRING);
214 cn.Open();
215
216 using (SqlCommand cm = cn.CreateCommand())
217 {
218 cm.CommandText = "SELECT FirstName FROM NonExistantTable";
219
220 Csla.Data.SafeDataReader dr = new Csla.Data.SafeDataReader(cm.ExecuteReader());
221 }
222 }
223
224 [TestMethod()]
225 public void TestSafeDataReader()
226 {
227 List<string> list = new List<string>();
228
229 // TODO: Connection strings were lost, and I don't know how to set them correctly
230 SqlConnection cn = new SqlConnection(CONNECTION_STRING);
231 cn.Open();
232
233 using (SqlCommand cm = cn.CreateCommand())
234 {
235 cm.CommandText = "SELECT Name, Date, Age FROM Table1";
236
237 using (Csla.Data.SafeDataReader dr = new Csla.Data.SafeDataReader(cm.ExecuteReader()))
238 {
239 while (dr.Read()) //returns two results
240 {
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);
244
245 list.Add(output);
246 Console.WriteLine(output);
247 }
248 dr.Close();
249 Assert.AreEqual(true, dr.IsClosed);
250 }
251 cn.Close();
252 }
253
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]);
256 }
257 }
258}
259#endif
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.
Definition: SmartDate.cs:32