-
Notifications
You must be signed in to change notification settings - Fork 934
/
Copy pathOneToOneFixture.cs
283 lines (240 loc) · 6.61 KB
/
OneToOneFixture.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
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
using System;
using System.Linq;
using NHibernate.Cfg.MappingSchema;
using NHibernate.Mapping.ByCode;
using NHibernate.Test.Associations.OneToOneFixtureEntities;
using NHibernate.Util;
using NUnit.Framework;
namespace NHibernate.Test.Associations
{
[TestFixture]
public class OneToOneFixture : TestCaseMappingByCode
{
[Test]
public void OneToOneCompositeQueryByEntityParam()
{
using (var session = OpenSession())
{
var e = session.Query<EntityWithCompositeId>().FirstOrDefault();
var loadedEntity = session.Query<Parent>().Where(p => p.OneToOneComp == e).FirstOrDefault();
Assert.That(loadedEntity, Is.Not.Null);
}
}
//NH-3778 (GH-1368)
[Test]
public void OneToOneCompositeQueryOverByEntityParam()
{
using (var session = OpenSession())
{
var e = session.Query<EntityWithCompositeId>().FirstOrDefault();
var loadedEntity = session.QueryOver<Parent>().Where(p => p.OneToOneComp == e).SingleOrDefault();
Assert.That(loadedEntity, Is.Not.Null);
}
}
[Test]
public void OneToOneCompositeQueryByKey()
{
using (var session = OpenSession())
{
var e = session.Query<EntityWithCompositeId>().FirstOrDefault();
var loadedEntity = session.Query<Parent>().Where(p => p.OneToOneComp.Key == e.Key).FirstOrDefault();
Assert.That(loadedEntity, Is.Not.Null);
}
}
[Test]
public void OneToOneCompositeQueryOverByKey()
{
using (var session = OpenSession())
{
var e = session.Query<EntityWithCompositeId>().FirstOrDefault();
var loadedEntity = session.QueryOver<Parent>().Where(p => p.OneToOneComp.Key == e.Key).SingleOrDefault();
Assert.That(loadedEntity, Is.Not.Null);
}
}
//NH-3469 (GH-1309)
[Test]
public void OneToOneCompositeQueryByNotNull()
{
using (var session = OpenSession())
{
var loadedEntity = session.Query<Parent>().Where(p => p.OneToOneComp != null).FirstOrDefault();
Assert.That(loadedEntity, Is.Not.Null);
}
}
[Test]
public void OneToOneCompositeQueryOverByNotNull()
{
using (var session = OpenSession())
{
var loadedEntity = session.QueryOver<Parent>().Where(p => p.OneToOneComp != null).SingleOrDefault();
Assert.That(loadedEntity, Is.Not.Null);
}
}
[Test]
public void OneToOneCompositeQueryCompareWithJoin()
{
using (var session = OpenSession())
{
var loadedEntity = session.CreateQuery("select e from Parent p, EntityWithCompositeId e where p.OneToOneComp = e").UniqueResult<EntityWithCompositeId>();
Assert.That(loadedEntity, Is.Not.Null);
}
}
[Explicit("Expression in Restrictions.Where can't recognize direct alias comparison.")]
[Test]
public void OneToOneCompositeQueryOverCompareWithJoin()
{
using(new SqlLogSpy())
using (var session = OpenSession())
{
Parent parent = null;
EntityWithCompositeId oneToOne = null;
var loadedEntity = session.QueryOver<Parent>(() => parent)
.JoinEntityAlias(() => oneToOne, () => parent.OneToOneComp == oneToOne)
.SingleOrDefault();
Assert.That(loadedEntity, Is.Not.Null);
}
}
[Test]
public void OneToOneCompositeQueryOverCompareWithJoinById()
{
using (var session = OpenSession())
{
var e = session.Query<EntityWithCompositeId>().FirstOrDefault();
Parent parent = null;
EntityWithCompositeId oneToOne = null;
var loadedEntity = session.QueryOver<Parent>(() => parent)
.JoinEntityAlias(() => oneToOne, () => parent.OneToOneComp.Key == oneToOne.Key)
.SingleOrDefault();
Assert.That(loadedEntity, Is.Not.Null);
}
}
//GH-2064
[Test]
public void OneToOneCompositeQuerySelectProjection()
{
using(var logSpy = new LogSpy(typeof(ReflectHelper)))
using (var session = OpenSession())
{
var loadedProjection = session.Query<Parent>().Select(x => new {x.OneToOneComp, x.Key}).FirstOrDefault();
Assert.That(loadedProjection.OneToOneComp, Is.Not.Null);
// GH-2855 Error is logged
Assert.That(logSpy.GetWholeLog(), Is.Empty);
}
}
//NH-3178 (GH-1125)
[Test]
public void OneToOneQueryOverSelectProjection()
{
using (var session = OpenSession())
{
var loadedEntity = session.QueryOver<Parent>()
.Select(x => x.OneToOneComp)
.SingleOrDefault<EntityWithCompositeId>();
Assert.That(loadedEntity, Is.Not.Null);
}
}
#region Test Setup
protected override HbmMapping GetMappings()
{
var mapper = new ModelMapper();
mapper.Class<EntityWithCompositeId>(
rc =>
{
rc.ComponentAsId(
e => e.Key,
ekm =>
{
ekm.Property(ek => ek.Id1);
ekm.Property(ek => ek.Id2);
});
rc.Property(e => e.Name);
});
mapper.Class<Parent>(
rc =>
{
rc.ComponentAsId(
e => e.Key,
ekm =>
{
ekm.Property(ek => ek.Id1);
ekm.Property(ek => ek.Id2);
});
rc.OneToOne(e => e.OneToOneComp, m => { });
});
return mapper.CompileMappingForAllExplicitlyAddedEntities();
}
protected override void OnTearDown()
{
using (ISession session = OpenSession())
using (ITransaction transaction = session.BeginTransaction())
{
session.Delete("from System.Object");
session.Flush();
transaction.Commit();
}
}
protected override void OnSetUp()
{
using (var session = OpenSession())
using (var transaction = session.BeginTransaction())
{
var key = new CompositeKey
{
Id1 = 4,
Id2 = 3,
};
var oneToOneParent = new Parent()
{
OneToOneComp = new EntityWithCompositeId
{
Key = key,
Name = "Composite2"
},
Key = key
};
session.Save(oneToOneParent.OneToOneComp);
session.Save(oneToOneParent);
session.Flush();
transaction.Commit();
}
}
#endregion Test Setup
}
namespace OneToOneFixtureEntities
{
public class CompositeKey
{
public int Id1 { get; set; }
public int Id2 { get; set; }
public override bool Equals(object obj)
{
var key = obj as CompositeKey;
return key != null
&& Id1 == key.Id1
&& Id2 == key.Id2;
}
public override int GetHashCode()
{
var hashCode = -1596524975;
hashCode = hashCode * -1521134295 + Id1.GetHashCode();
hashCode = hashCode * -1521134295 + Id2.GetHashCode();
return hashCode;
}
}
public class EntityWithCompositeId
{
public virtual CompositeKey Key { get; set; }
public virtual string Name { get; set; }
}
public class OneToOneEntity
{
public virtual Guid Id { get; set; }
public virtual string Name { get; set; }
}
public class Parent
{
public virtual CompositeKey Key { get; set; }
public virtual EntityWithCompositeId OneToOneComp { get; set; }
}
}
}