forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDistinctTests.cs
166 lines (146 loc) · 3.8 KB
/
DistinctTests.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
using System;
using System.Linq;
using NHibernate.Cfg;
using NUnit.Framework;
namespace NHibernate.Test.Linq.ByMethod
{
[TestFixture]
public class DistinctTests : LinqTestCase
{
public class OrderDto
{
public string ShipCountry { get; set; }
public DateTime? ShippingDate { get; set; }
public DateTime? OrderDate { get; set; }
}
private static T Transform<T>(T value)
{
return value;
}
[Test]
public void DistinctOnAnonymousTypeProjection()
{
//NH-2380
var result = db.Orders
.Select(x => new {x.ShippingDate})
.Distinct()
.ToArray();
Assert.That(result.Length, Is.EqualTo(388));
}
[Test]
public void DistinctAndOrderByOnAnonymousTypeProjection()
{
var result = db.Orders
.Where(x => x.ShippingDate != null)
.Select(x => new { x.ShippingDate })
.OrderByDescending(x => x.ShippingDate)
.Distinct()
.ToArray();
var expectedResults = result
.OrderByDescending(x => x.ShippingDate)
.Distinct()
.ToArray();
Assert.That(result.Length, Is.EqualTo(387));
CollectionAssert.AreEqual(expectedResults, result);
}
[Test]
public void DistinctOnComplexAnonymousTypeProjection()
{
//NH-2380
var result = db.Orders
.Select(x => new
{
x.ShippingDate,
x.OrderDate
})
.Distinct()
.ToArray();
Assert.That(result.Length, Is.EqualTo(774));
}
[Test]
public void DistinctOnTypeProjection()
{
//NH-2486
OrderDto[] result = db.Orders
.Select(x => new OrderDto
{
ShippingDate = x.ShippingDate
})
.Distinct()
.ToArray();
Assert.That(result.Length, Is.EqualTo(388));
}
[Test]
public void DistinctOnTypeProjectionTwoProperty()
{
//NH-2486
OrderDto[] result = db.Orders
.Select(x => new OrderDto
{
ShippingDate = x.ShippingDate,
OrderDate = x.OrderDate
})
.Distinct()
.ToArray();
Assert.That(result.Length, Is.EqualTo(774));
}
[Test]
public void DistinctOnTypeProjectionWithHqlMethodIsOk()
{
// Sort of related to NH-2645.
OrderDto[] result = db.Orders
.Select(x => new OrderDto
{
ShipCountry = x.ShippingAddress.Country.ToLower(), // Should be translated to HQL/SQL.
ShippingDate = x.ShippingDate,
OrderDate = x.OrderDate.Value.Date,
})
.Distinct()
.ToArray();
Assert.That(result.Length, Is.EqualTo(824));
}
[Test]
public void DistinctOnTypeProjectionWithCustomProjectionMethodsIsBlocked1()
{
// Sort of related to NH-2645.
Assert.That(
() =>
{
OrderDto[] result = db.Orders
.Select(
x => new OrderDto
{
ShippingDate = Transform(x.ShippingDate),
OrderDate = Transform(x.OrderDate)
})
.Distinct()
.ToArray();
},
Throws.TypeOf<NotSupportedException>()
.And.Message.EqualTo(
"Cannot use distinct on result that depends on methods for which no SQL equivalent exist."));
}
[Test]
public void DistinctOnTypeProjectionWithCustomProjectionMethodsIsBlocked2()
{
// Sort of related to NH-2645.
Assert.That(
() =>
{
OrderDto[] result = db.Orders
.Select(
x => new OrderDto
{
ShippingDate = x.ShippingDate,
// As of 2012-01-25, AddMonths() is executed locally.
OrderDate = x.OrderDate.Value.AddMonths(5),
})
.Distinct()
.ToArray();
},
Throws.TypeOf<NotSupportedException>()
.And.Message.EqualTo(
"Cannot use distinct on result that depends on methods for which no SQL equivalent exist."));
}
}
}