forked from zzzprojects/System.Linq.Dynamic.Core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEntitiesTests.GroupBy.cs
More file actions
164 lines (129 loc) · 5.61 KB
/
EntitiesTests.GroupBy.cs
File metadata and controls
164 lines (129 loc) · 5.61 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
using System.Collections;
using System.Linq.Dynamic.Core.Tests.Helpers.Entities;
#if EFCORE
using Microsoft.EntityFrameworkCore;
#else
using System.Data.Entity;
#endif
using Xunit;
namespace System.Linq.Dynamic.Core.Tests
{
public partial class EntitiesTests : IDisposable
{
[Fact]
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
Assert.Equal(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];
Assert.Equal(expectedRow.Key, testRow.Key);
Assert.Equal(expectedRow.ToArray(), testRow.ToArray());
}
}
[Fact]
public void Entities_GroupBy_MultiKey()
{
//Arrange
PopulateTestData(5, 15);
var expected = _context.Posts.GroupBy(x => new { x.BlogId, x.PostDate }).OrderBy(x => x.Key.PostDate).ToArray();
//Act
var test = _context.Posts.GroupBy("new (BlogId, PostDate)").OrderBy("Key.PostDate").ToDynamicArray();
//Assert
Assert.Equal(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];
Assert.Equal(expectedRow.Key.BlogId, ((dynamic)testRow.Key).BlogId);
Assert.Equal(expectedRow.Key.PostDate, ((dynamic)testRow.Key).PostDate);
Assert.Equal(expectedRow.ToArray(), testRow.ToArray());
}
}
[Fact]
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
Assert.Equal(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];
Assert.Equal(expectedRow.Key, testRow.Key);
Assert.Equal(expectedRow.ToArray(), testRow.ToArray());
}
}
[Fact]
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
Assert.Equal(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];
Assert.Equal(expectedRow.Key, testRow.Key);
Assert.Equal(
expectedRow.ToArray(),
testRow.Cast<dynamic>().Select(x => new { Title = (string)x.Title, Content = (string)x.Content }).ToArray());
}
}
[Fact]
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
Assert.Equal(expected.Length, test.Length);
for (int i = 0; i < expected.Length; i++)
{
var expectedRow = expected[i];
var testRow = test[i];
Assert.Equal(expectedRow.Key, testRow.Key);
Assert.Equal(expectedRow.Count, testRow.Count);
}
}
[Fact]
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
Assert.Equal(expected.Length, test.Length);
for (int i = 0; i < expected.Length; i++)
{
var expectedRow = expected[i];
var testRow = test[i];
Assert.Equal(expectedRow.Key, testRow.Key);
Assert.Equal(expectedRow.Reads, testRow.Reads);
}
}
}
}