-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathNullableTest.cs
247 lines (193 loc) · 7.31 KB
/
NullableTest.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using SQLite;
#if NETFX_CORE
using Microsoft.VisualStudio.TestPlatform.UnitTestFramework;
using SetUp = Microsoft.VisualStudio.TestPlatform.UnitTestFramework.TestInitializeAttribute;
using TestFixture = Microsoft.VisualStudio.TestPlatform.UnitTestFramework.TestClassAttribute;
using Test = Microsoft.VisualStudio.TestPlatform.UnitTestFramework.TestMethodAttribute;
#else
using NUnit.Framework;
#endif
using System.IO;
namespace SQLite.Tests
{
[TestFixture]
public class NullableTest
{
public class NullableIntClass
{
[PrimaryKey, AutoIncrement]
public int ID { get; set; }
public Nullable<int> NullableInt { get; set; }
public override bool Equals(object obj)
{
NullableIntClass other = (NullableIntClass)obj;
return this.ID == other.ID && this.NullableInt == other.NullableInt;
}
public override int GetHashCode ()
{
return ID.GetHashCode () + NullableInt.GetHashCode ();
}
}
[Test]
[Description("Create a table with a nullable int column then insert and select against it")]
public void NullableInt()
{
SQLiteConnection db = new SQLiteConnection(TestPath.GetTempFileName());
db.CreateTable<NullableIntClass>();
NullableIntClass withNull = new NullableIntClass() { NullableInt = null };
NullableIntClass with0 = new NullableIntClass() { NullableInt = 0 };
NullableIntClass with1 = new NullableIntClass() { NullableInt = 1 };
NullableIntClass withMinus1 = new NullableIntClass() { NullableInt = -1 };
db.Insert(withNull);
db.Insert(with0);
db.Insert(with1);
db.Insert(withMinus1);
NullableIntClass[] results = db.Table<NullableIntClass>().OrderBy(x => x.ID).ToArray();
Assert.AreEqual(4, results.Length);
Assert.AreEqual(withNull, results[0]);
Assert.AreEqual(with0, results[1]);
Assert.AreEqual(with1, results[2]);
Assert.AreEqual(withMinus1, results[3]);
}
public class NullableFloatClass
{
[PrimaryKey, AutoIncrement]
public int ID { get; set; }
public Nullable<float> NullableFloat { get; set; }
public override bool Equals(object obj)
{
NullableFloatClass other = (NullableFloatClass)obj;
return this.ID == other.ID && this.NullableFloat == other.NullableFloat;
}
public override int GetHashCode ()
{
return ID.GetHashCode () + NullableFloat.GetHashCode ();
}
}
[Test]
[Description("Create a table with a nullable int column then insert and select against it")]
public void NullableFloat()
{
SQLiteConnection db = new SQLiteConnection(TestPath.GetTempFileName());
db.CreateTable<NullableFloatClass>();
NullableFloatClass withNull = new NullableFloatClass() { NullableFloat = null };
NullableFloatClass with0 = new NullableFloatClass() { NullableFloat = 0 };
NullableFloatClass with1 = new NullableFloatClass() { NullableFloat = 1 };
NullableFloatClass withMinus1 = new NullableFloatClass() { NullableFloat = -1 };
db.Insert(withNull);
db.Insert(with0);
db.Insert(with1);
db.Insert(withMinus1);
NullableFloatClass[] results = db.Table<NullableFloatClass>().OrderBy(x => x.ID).ToArray();
Assert.AreEqual(4, results.Length);
Assert.AreEqual(withNull, results[0]);
Assert.AreEqual(with0, results[1]);
Assert.AreEqual(with1, results[2]);
Assert.AreEqual(withMinus1, results[3]);
}
public class StringClass
{
[PrimaryKey, AutoIncrement]
public int ID { get; set; }
//Strings are allowed to be null by default
public string StringData { get; set; }
public override bool Equals(object obj)
{
StringClass other = (StringClass)obj;
return this.ID == other.ID && this.StringData == other.StringData;
}
public override int GetHashCode ()
{
return ID.GetHashCode () + StringData.GetHashCode ();
}
}
[Test]
public void NullableString()
{
SQLiteConnection db = new SQLiteConnection(TestPath.GetTempFileName());
db.CreateTable<StringClass>();
StringClass withNull = new StringClass() { StringData = null };
StringClass withEmpty = new StringClass() { StringData = "" };
StringClass withData = new StringClass() { StringData = "data" };
db.Insert(withNull);
db.Insert(withEmpty);
db.Insert(withData);
StringClass[] results = db.Table<StringClass>().OrderBy(x => x.ID).ToArray();
Assert.AreEqual(3, results.Length);
Assert.AreEqual(withNull, results[0]);
Assert.AreEqual(withEmpty, results[1]);
Assert.AreEqual(withData, results[2]);
}
[Test]
public void WhereNotNull()
{
SQLiteConnection db = new SQLiteConnection(TestPath.GetTempFileName());
db.CreateTable<NullableIntClass>();
NullableIntClass withNull = new NullableIntClass() { NullableInt = null };
NullableIntClass with0 = new NullableIntClass() { NullableInt = 0 };
NullableIntClass with1 = new NullableIntClass() { NullableInt = 1 };
NullableIntClass withMinus1 = new NullableIntClass() { NullableInt = -1 };
db.Insert(withNull);
db.Insert(with0);
db.Insert(with1);
db.Insert(withMinus1);
NullableIntClass[] results = db.Table<NullableIntClass>().Where(x => x.NullableInt != null).OrderBy(x => x.ID).ToArray();
Assert.AreEqual(3, results.Length);
Assert.AreEqual(with0, results[0]);
Assert.AreEqual(with1, results[1]);
Assert.AreEqual(withMinus1, results[2]);
}
[Test]
public void WhereNull()
{
SQLiteConnection db = new SQLiteConnection(TestPath.GetTempFileName());
db.CreateTable<NullableIntClass>();
NullableIntClass withNull = new NullableIntClass() { NullableInt = null };
NullableIntClass with0 = new NullableIntClass() { NullableInt = 0 };
NullableIntClass with1 = new NullableIntClass() { NullableInt = 1 };
NullableIntClass withMinus1 = new NullableIntClass() { NullableInt = -1 };
db.Insert(withNull);
db.Insert(with0);
db.Insert(with1);
db.Insert(withMinus1);
NullableIntClass[] results = db.Table<NullableIntClass>().Where(x => x.NullableInt == null).OrderBy(x => x.ID).ToArray();
Assert.AreEqual(1, results.Length);
Assert.AreEqual(withNull, results[0]);
}
[Test]
public void StringWhereNull()
{
SQLiteConnection db = new SQLiteConnection(TestPath.GetTempFileName());
db.CreateTable<StringClass>();
StringClass withNull = new StringClass() { StringData = null };
StringClass withEmpty = new StringClass() { StringData = "" };
StringClass withData = new StringClass() { StringData = "data" };
db.Insert(withNull);
db.Insert(withEmpty);
db.Insert(withData);
StringClass[] results = db.Table<StringClass>().Where(x => x.StringData == null).OrderBy(x => x.ID).ToArray();
Assert.AreEqual(1, results.Length);
Assert.AreEqual(withNull, results[0]);
}
[Test]
public void StringWhereNotNull()
{
SQLiteConnection db = new SQLiteConnection(TestPath.GetTempFileName());
db.CreateTable<StringClass>();
StringClass withNull = new StringClass() { StringData = null };
StringClass withEmpty = new StringClass() { StringData = "" };
StringClass withData = new StringClass() { StringData = "data" };
db.Insert(withNull);
db.Insert(withEmpty);
db.Insert(withData);
StringClass[] results = db.Table<StringClass>().Where(x => x.StringData != null).OrderBy(x => x.ID).ToArray();
Assert.AreEqual(2, results.Length);
Assert.AreEqual(withEmpty, results[0]);
Assert.AreEqual(withData, results[1]);
}
}
}