forked from zzzprojects/System.Linq.Dynamic.Core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEntitiesTests.cs
More file actions
323 lines (247 loc) · 10.8 KB
/
EntitiesTests.cs
File metadata and controls
323 lines (247 loc) · 10.8 KB
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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
#if !DNXCORE50
using System.Collections;
using System.Linq.Dynamic.Core.Tests.Helpers.Entities;
using Microsoft.Data.Entity;
using TestToolsToXunitProxy;
using Assert = Xunit.Assert;
namespace System.Linq.Dynamic.Core.Tests
{
/// <summary>
/// Summary description for EntitiesTests
/// </summary>
public class EntitiesTests : IDisposable
{
BlogContext _context;
#region Entities Test Support
static readonly Random Rnd = new Random(1);
public EntitiesTests()
{
var builder = new DbContextOptionsBuilder();
builder.UseSqlite($"Filename=DynamicLinqTestDb_{Guid.NewGuid()}.db");
_context = new BlogContext(builder.Options);
_context.Database.EnsureDeleted();
_context.Database.EnsureCreated();
}
// Use TestCleanup to run code after each test has run
public void Dispose()
{
_context.Database.EnsureDeleted();
_context.Dispose();
_context = null;
}
void PopulateTestData(int blogCount = 25, int postCount = 10)
{
for (int i = 0; i < blogCount; i++)
{
var blog = new Blog { Name = "Blog" + (i + 1) };
_context.Blogs.Add(blog);
for (int j = 0; j < postCount; j++)
{
var post = new Post()
{
Blog = blog,
Title = $"Blog {i + 1} - Post {j + 1}",
Content = "My Content",
PostDate = DateTime.Today.AddDays(-Rnd.Next(0, 100)).AddSeconds(Rnd.Next(0, 30000)),
NumberOfReads = Rnd.Next(0, 5000)
};
_context.Posts.Add(post);
}
}
_context.SaveChanges();
}
#endregion
#region Select Tests
[TestMethod]
public void Entities_Select_SingleColumn()
{
//Arrange
PopulateTestData(5, 0);
var expected = _context.Blogs.Select(x => x.BlogId).ToArray();
//Act
var test = _context.Blogs.Select<int>("BlogId").ToArray();
//Assert
Assert.Equal<ICollection>(expected, test);
}
[TestMethod]
public void Entities_Select_MultipleColumn()
{
//Arrange
PopulateTestData(5, 0);
var expected = _context.Blogs.Select(x => new { x.BlogId, x.Name }).ToArray();
//Act
var test = _context.Blogs.Select("new (BlogId, Name)").ToDynamicArray();
//Assert
CollectionAssert.AreEqual(
expected,
test.Select(x => new { BlogId = (int)x.BlogId, Name = (string)x.Name }).ToArray() //convert to same anomymous type used by expected so they can be found equal
);
}
[TestMethod]
public void Entities_Select_BlogPosts()
{
//Arrange
PopulateTestData(5, 5);
var expected = _context.Blogs.Where(x => x.BlogId == 1).SelectMany(x => x.Posts).Select(x => x.PostId).ToArray();
//Act
var test = _context.Blogs.Where(x => x.BlogId == 1).SelectMany("Posts").Select<int>("PostId").ToArray();
//Assert
CollectionAssert.AreEqual(expected, test);
}
//[TestMethod]
//public void Entities_Select_BlogAndPosts()
//{
// //Arrange
// PopulateTestData(5, 5);
// var expected = _context.Blogs.Select(x => new { x.BlogId, x.Name, x.Posts }).ToArray();
// //Act
// var test = _context.Blogs.Select("new (BlogId, Name, Posts)").ToDynamicArray();
// //Assert
// Assert.AreEqual(expected.Length, test.Length);
// for (int i = 0; i < expected.Length; i++)
// {
// var expectedRow = expected[i];
// var testRow = test[i];
// Assert.AreEqual(expectedRow.BlogId, testRow.BlogId);
// Assert.AreEqual(expectedRow.Name, testRow.Name);
// Assert.IsTrue(expectedRow.Posts != null);
// CollectionAssert.AreEqual(expectedRow.Posts.ToList(), testRow.Posts);
// }
//}
#endregion
#region GroupBy Tests
[TestMethod]
public void Entities_GroupBy_SingleKey()
{
//Arrange
PopulateTestData(5, 5);
var expected = _context.Posts.GroupBy(x => x.BlogId).ToArray();
//Act
var test = _context.Posts.GroupBy("BlogId").ToDynamicArray();
//Assert
TestToolsToXunitProxy.Assert.AreEqual(expected.Length, test.Length);
for (int i = 0; i < expected.Length; i++)
{
var expectedRow = expected[i];
//For some reason, the DynamicBinder doesn't allow us to access values of the Group object, so we have to cast first
var testRow = (IGrouping<int, Post>)test[i];
TestToolsToXunitProxy.Assert.AreEqual(expectedRow.Key, testRow.Key);
CollectionAssert.AreEqual(expectedRow.ToArray(), testRow.ToArray());
}
}
[TestMethod]
public void Entities_GroupBy_MultiKey()
{
//Arrange
PopulateTestData(5, 15);
var expected = _context.Posts.GroupBy(x => new { x.BlogId, x.PostDate }).ToArray();
//Act
var test = _context.Posts.GroupBy("new (BlogId, PostDate)").ToDynamicArray();
//Assert
TestToolsToXunitProxy.Assert.AreEqual(expected.Length, test.Length);
for (int i = 0; i < expected.Length; i++)
{
var expectedRow = expected[i];
//For some reason, the DynamicBinder doesn't allow us to access values of the Group object, so we have to cast first
var testRow = (IGrouping<DynamicClass, Post>)test[i];
TestToolsToXunitProxy.Assert.AreEqual(expectedRow.Key.BlogId, ((dynamic)testRow.Key).BlogId);
TestToolsToXunitProxy.Assert.AreEqual(expectedRow.Key.PostDate, ((dynamic)testRow.Key).PostDate);
CollectionAssert.AreEqual(expectedRow.ToArray(), testRow.ToArray());
}
}
[TestMethod]
public void Entities_GroupBy_SingleKey_SingleResult()
{
//Arrange
PopulateTestData(5, 5);
var expected = _context.Posts.GroupBy(x => x.PostDate, x => x.Title).ToArray();
//Act
var test = _context.Posts.GroupBy("PostDate", "Title").ToDynamicArray();
//Assert
TestToolsToXunitProxy.Assert.AreEqual(expected.Length, test.Length);
for (int i = 0; i < expected.Length; i++)
{
var expectedRow = expected[i];
//For some reason, the DynamicBinder doesn't allow us to access values of the Group object, so we have to cast first
var testRow = (IGrouping<DateTime, String>)test[i];
TestToolsToXunitProxy.Assert.AreEqual(expectedRow.Key, testRow.Key);
CollectionAssert.AreEqual(expectedRow.ToArray(), testRow.ToArray());
}
}
[TestMethod]
public void Entities_GroupBy_SingleKey_MultiResult()
{
//Arrange
PopulateTestData(5, 5);
var expected = _context.Posts.GroupBy(x => x.PostDate, x => new { x.Title, x.Content }).ToArray();
//Act
var test = _context.Posts.GroupBy("PostDate", "new (Title, Content)").ToDynamicArray();
//Assert
TestToolsToXunitProxy.Assert.AreEqual(expected.Length, test.Length);
for (int i = 0; i < expected.Length; i++)
{
var expectedRow = expected[i];
//For some reason, the DynamicBinder doesn't allow us to access values of the Group object, so we have to cast first
var testRow = (IGrouping<DateTime, DynamicClass>)test[i];
TestToolsToXunitProxy.Assert.AreEqual(expectedRow.Key, testRow.Key);
CollectionAssert.AreEqual(
expectedRow.ToArray(),
testRow.Cast<dynamic>().Select(x => new { Title = (string)x.Title, Content = (string)x.Content }).ToArray());
}
}
[TestMethod]
public void Entities_GroupBy_SingleKey_Count()
{
//Arrange
PopulateTestData(5, 5);
var expected = _context.Posts.GroupBy(x => x.PostDate).Select(x => new { x.Key, Count = x.Count() }).ToArray();
//Act
var test = _context.Posts.GroupBy("PostDate").Select("new(Key, Count() AS Count)").ToDynamicArray();
//Assert
TestToolsToXunitProxy.Assert.AreEqual(expected.Length, test.Length);
for (int i = 0; i < expected.Length; i++)
{
var expectedRow = expected[i];
var testRow = test[i];
TestToolsToXunitProxy.Assert.AreEqual(expectedRow.Key, testRow.Key);
TestToolsToXunitProxy.Assert.AreEqual(expectedRow.Count, testRow.Count);
}
}
[TestMethod]
public void Entities_GroupBy_SingleKey_Sum()
{
//Arrange
PopulateTestData(5, 5);
var expected = _context.Posts.GroupBy(x => x.PostDate).Select(x => new { x.Key, Reads = x.Sum(y => y.NumberOfReads) }).ToArray();
//Act
var test = _context.Posts.GroupBy("PostDate").Select("new(Key, Sum(NumberOfReads) AS Reads)").ToDynamicArray();
//Assert
TestToolsToXunitProxy.Assert.AreEqual(expected.Length, test.Length);
for (int i = 0; i < expected.Length; i++)
{
var expectedRow = expected[i];
var testRow = test[i];
TestToolsToXunitProxy.Assert.AreEqual(expectedRow.Key, testRow.Key);
TestToolsToXunitProxy.Assert.AreEqual(expectedRow.Reads, testRow.Reads);
}
}
#endregion
#region Executor Tests
[TestMethod]
public void FirstOrDefault_AsStringExpressions()
{
//Arrange
PopulateTestData();
//remove all posts from first record (to allow Defaults case to validate)
_context.Posts.RemoveRange(_context.Blogs.OrderBy(x => x.BlogId).First<Blog>().Posts);
_context.SaveChanges();
//Act
var firstExpected = _context.Blogs.OrderBy(x => x.Posts.OrderBy(y => y.PostDate).FirstOrDefault().PostDate).Select(x => x.BlogId);
var firstTest = _context.Blogs.OrderBy("Posts.OrderBy(PostDate).FirstOrDefault().PostDate").Select<int>("BlogId");
//Assert
CollectionAssert.AreEqual(firstExpected.ToArray(), firstTest.ToArray());
}
#endregion
}
}
#endif