forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMultipleMixedQueriesFixture.cs
463 lines (399 loc) · 12.8 KB
/
MultipleMixedQueriesFixture.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
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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
using System;
using System.Collections;
using System.Collections.Generic;
using NHibernate.Driver;
using NHibernate.Test.SecondLevelCacheTests;
using NUnit.Framework;
namespace NHibernate.Test.QueryTest
{
public class MultipleMixedQueriesFixture : TestCase
{
protected override string MappingsAssembly
{
get { return "NHibernate.Test"; }
}
protected override IList Mappings
{
get { return new[] { "SecondLevelCacheTest.Item.hbm.xml" }; }
}
[TestFixtureSetUp]
public void CheckMultiQuerySupport()
{
TestFixtureSetUp();
IDriver driver = sessions.ConnectionProvider.Driver;
if (!driver.SupportsMultipleQueries)
{
Assert.Ignore("Driver {0} does not support multi-queries", driver.GetType().FullName);
}
}
[Test]
public void NH_1085_WillIgnoreParametersIfDoesNotAppearInQuery()
{
using (ISession s = sessions.OpenSession())
{
IMultiQuery multiQuery = s.CreateMultiQuery()
.Add(s.CreateSQLQuery("select * from ITEM where Id in (:ids)").AddEntity(typeof (Item)))
.Add(s.CreateSQLQuery("select * from ITEM where Id in (:ids2)").AddEntity(typeof (Item)))
.SetParameterList("ids", new[] {50})
.SetParameterList("ids2", new[] {50});
multiQuery.List();
}
}
[Test]
public void NH_1085_WillGiveReasonableErrorIfBadParameterName()
{
using (ISession s = sessions.OpenSession())
{
IMultiQuery multiQuery = s.CreateMultiQuery()
.Add(s.CreateSQLQuery("select * from ITEM where Id in (:ids)").AddEntity(typeof(Item)))
.Add(s.CreateSQLQuery("select * from ITEM where Id in (:ids2)").AddEntity(typeof(Item)));
var e = Assert.Throws<QueryException>(() => multiQuery.List());
Assert.That(e.Message, Is.EqualTo("Not all named parameters have been set: ['ids'] [select * from ITEM where Id in (:ids)]"));
}
}
[Test]
public void CanGetMultiQueryFromSecondLevelCache()
{
CreateItems();
//set the query in the cache
DoMutiQueryAndAssert();
Hashtable cacheHashtable = MultipleQueriesFixture.GetHashTableUsedAsQueryCache(sessions);
IList cachedListEntry = (IList)new ArrayList(cacheHashtable.Values)[0];
IList cachedQuery = (IList)cachedListEntry[1];
IList firstQueryResults = (IList)cachedQuery[0];
firstQueryResults.Clear();
firstQueryResults.Add(3);
firstQueryResults.Add(4);
IList secondQueryResults = (IList)cachedQuery[1];
secondQueryResults[0] = 2L;
using (ISession s = sessions.OpenSession())
{
IMultiQuery multiQuery = s.CreateMultiQuery()
.Add(s.CreateSQLQuery("select * from ITEM where Id > ?").AddEntity(typeof(Item))
.SetInt32(0, 50)
.SetFirstResult(10))
.Add(s.CreateQuery("select count(*) from Item i where i.Id > ?")
.SetInt32(0, 50));
multiQuery.SetCacheable(true);
IList results = multiQuery.List();
IList items = (IList)results[0];
Assert.AreEqual(2, items.Count);
long count = (long)((IList)results[1])[0];
Assert.AreEqual(2L, count);
}
RemoveAllItems();
}
[Test]
public void CanSpecifyParameterOnMultiQueryWhenItIsNotUsedInAllQueries()
{
using (ISession s = OpenSession())
{
s.CreateMultiQuery()
.Add("from Item")
.Add(s.CreateSQLQuery("select * from ITEM where Id > :id").AddEntity(typeof(Item)))
.SetParameter("id", 5)
.List();
}
}
[Test]
public void CanSpecifyParameterOnMultiQueryWhenItIsNotUsedInAllQueries_MoreThanOneParameter()
{
using (ISession s = OpenSession())
{
s.CreateMultiQuery()
.Add("from Item")
.Add(s.CreateSQLQuery("select * from ITEM where Id = :id or Id = :id2").AddEntity(typeof(Item)))
.Add("from Item i where i.Id = :id2")
.SetParameter("id", 5)
.SetInt32("id2", 5)
.List();
}
}
[Test]
public void TwoMultiQueriesWithDifferentPagingGetDifferentResultsWhenUsingCachedQueries()
{
CreateItems();
using (ISession s = OpenSession())
{
IMultiQuery multiQuery = s.CreateMultiQuery()
.Add(s.CreateQuery("from Item i where i.Id > ?")
.SetInt32(0, 50)
.SetFirstResult(10))
.Add(s.CreateSQLQuery("select count(*) as count from ITEM where Id > ?").AddScalar("count", NHibernateUtil.Int64)
.SetInt32(0, 50));
multiQuery.SetCacheable(true);
IList results = multiQuery.List();
IList items = (IList)results[0];
Assert.AreEqual(89, items.Count);
long count = (long)((IList)results[1])[0];
Assert.AreEqual(99L, count);
}
using (ISession s = OpenSession())
{
IMultiQuery multiQuery = s.CreateMultiQuery()
.Add(s.CreateSQLQuery("select * from ITEM where Id > ?").AddEntity(typeof(Item))
.SetInt32(0, 50)
.SetFirstResult(20))
.Add(s.CreateQuery("select count(*) from Item i where i.Id > ?")
.SetInt32(0, 50));
multiQuery.SetCacheable(true);
IList results = multiQuery.List();
IList items = (IList)results[0];
Assert.AreEqual(79, items.Count,
"Should have gotten different result here, because the paging is different");
long count = (long)((IList)results[1])[0];
Assert.AreEqual(99L, count);
}
RemoveAllItems();
}
[Test]
public void CanUseSecondLevelCacheWithPositionalParameters()
{
Hashtable cacheHashtable = MultipleQueriesFixture.GetHashTableUsedAsQueryCache(sessions);
cacheHashtable.Clear();
CreateItems();
DoMutiQueryAndAssert();
Assert.AreEqual(1, cacheHashtable.Count);
RemoveAllItems();
}
private void DoMutiQueryAndAssert()
{
using (ISession s = OpenSession())
{
IMultiQuery multiQuery = s.CreateMultiQuery()
.Add(s.CreateSQLQuery("select * from ITEM where Id > ?").AddEntity(typeof(Item))
.SetInt32(0, 50)
.SetFirstResult(10))
.Add(s.CreateQuery("select count(*) from Item i where i.Id > ?")
.SetInt32(0, 50));
multiQuery.SetCacheable(true);
IList results = multiQuery.List();
IList items = (IList)results[0];
Assert.AreEqual(89, items.Count);
long count = (long)((IList)results[1])[0];
Assert.AreEqual(99L, count);
}
}
private void CreateItems()
{
using (ISession s = OpenSession())
using (ITransaction t = s.BeginTransaction())
{
for (int i = 0; i < 150; i++)
{
Item item = new Item();
item.Id = i;
s.Save(item);
}
t.Commit();
}
}
[Test]
public void CanUseWithParameterizedQueriesAndLimit()
{
using (ISession s = OpenSession())
{
for (int i = 0; i < 150; i++)
{
Item item = new Item();
item.Id = i;
s.Save(item);
}
s.Flush();
}
using (ISession s = OpenSession())
{
IQuery getItems = s.CreateSQLQuery("select * from ITEM where Id > :id").AddEntity(typeof(Item)).SetFirstResult(10);
IQuery countItems = s.CreateQuery("select count(*) from Item i where i.Id > :id");
IList results = s.CreateMultiQuery()
.Add(getItems)
.Add(countItems)
.SetInt32("id", 50)
.List();
IList items = (IList)results[0];
Assert.AreEqual(89, items.Count);
long count = (long)((IList)results[1])[0];
Assert.AreEqual(99L, count);
}
RemoveAllItems();
}
private void RemoveAllItems()
{
using (ISession s = OpenSession())
{
s.Delete("from Item");
s.Flush();
}
}
[Test]
public void CanUseSetParameterList()
{
using (ISession s = OpenSession())
{
Item item = new Item();
item.Id = 1;
s.Save(item);
s.Flush();
}
using (ISession s = OpenSession())
{
IList results = s.CreateMultiQuery()
.Add(s.CreateSQLQuery("select * from ITEM where Id in (:items)").AddEntity(typeof(Item)))
.Add("select count(*) from Item i where i.id in (:items)")
.SetParameterList("items", new[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 })
.List();
IList items = (IList)results[0];
Item fromDb = (Item)items[0];
Assert.AreEqual(1, fromDb.Id);
IList counts = (IList)results[1];
long count = (long)counts[0];
Assert.AreEqual(1L, count);
}
using (ISession s = OpenSession())
{
s.Delete("from Item");
s.Flush();
}
}
[Test]
public void CanExecuteMultiplyQueriesInSingleRoundTrip()
{
using (ISession s = OpenSession())
{
Item item = new Item();
item.Id = 1;
s.Save(item);
s.Flush();
}
using (ISession s = OpenSession())
{
IQuery getItems = s.CreateSQLQuery("select * from ITEM").AddEntity(typeof(Item));
IQuery countItems = s.CreateQuery("select count(*) from Item");
IList results = s.CreateMultiQuery()
.Add(getItems)
.Add(countItems)
.List();
IList items = (IList)results[0];
Item fromDb = (Item)items[0];
Assert.AreEqual(1, fromDb.Id);
IList counts = (IList)results[1];
long count = (long)counts[0];
Assert.AreEqual(1L, count);
}
using (ISession s = OpenSession())
{
s.Delete("from Item");
s.Flush();
}
}
[Test]
public void CanAddIQueryWithKeyAndRetrieveResultsWithKey()
{
CreateItems();
using (ISession session = OpenSession())
{
IMultiQuery multiQuery = session.CreateMultiQuery();
IQuery firstQuery = session.CreateSQLQuery("select * from ITEM where Id < :id").AddEntity(typeof(Item))
.SetInt32("id", 50);
IQuery secondQuery = session.CreateQuery("from Item");
multiQuery.Add("first", firstQuery).Add("second", secondQuery);
IList secondResult = (IList)multiQuery.GetResult("second");
IList firstResult = (IList)multiQuery.GetResult("first");
Assert.Greater(secondResult.Count, firstResult.Count);
}
RemoveAllItems();
}
[Test]
public void CanNotAddQueryWithKeyThatAlreadyExists()
{
using (ISession session = OpenSession())
{
IMultiQuery multiQuery = session.CreateMultiQuery();
IQuery firstQuery = session.CreateSQLQuery("select * from ITEM where Id < :id").AddEntity(typeof(Item))
.SetInt32("id", 50);
try
{
IQuery secondQuery = session.CreateSQLQuery("select * from ITEM").AddEntity(typeof(Item));
multiQuery.Add("first", firstQuery).Add("second", secondQuery);
}
catch (InvalidOperationException)
{
}
catch (Exception)
{
Assert.Fail("This should've thrown an InvalidOperationException");
}
}
}
[Test]
public void CanNotRetrieveQueryResultWithUnknownKey()
{
using (ISession session = OpenSession())
{
IMultiQuery multiQuery = session.CreateMultiQuery();
multiQuery.Add("firstQuery", session.CreateSQLQuery("select * from ITEM").AddEntity(typeof(Item)));
try
{
multiQuery.GetResult("unknownKey");
Assert.Fail("This should've thrown an InvalidOperationException");
}
catch (InvalidOperationException)
{
}
catch (Exception)
{
Assert.Fail("This should've thrown an InvalidOperationException");
}
}
}
[Test]
public void ExecutingQueryThroughMultiQueryTransformsResults()
{
CreateItems();
using (ISession session = OpenSession())
{
ResultTransformerStub transformer = new ResultTransformerStub();
IQuery query = session.CreateSQLQuery("select * from ITEM").AddEntity(typeof(Item))
.SetResultTransformer(transformer);
session.CreateMultiQuery()
.Add(query)
.List();
Assert.IsTrue(transformer.WasTransformTupleCalled, "Transform Tuple was not called");
Assert.IsTrue(transformer.WasTransformListCalled, "Transform List was not called");
}
RemoveAllItems();
}
[Test]
public void ExecutingQueryThroughMultiQueryTransformsResults_When_setting_on_multi_query_directly()
{
CreateItems();
using (ISession session = OpenSession())
{
ResultTransformerStub transformer = new ResultTransformerStub();
IQuery query = session.CreateSQLQuery("select * from ITEM").AddEntity(typeof(Item));
session.CreateMultiQuery()
.Add(query)
.SetResultTransformer(transformer)
.List();
Assert.IsTrue(transformer.WasTransformTupleCalled, "Transform Tuple was not called");
Assert.IsTrue(transformer.WasTransformListCalled, "Transform List was not called");
}
RemoveAllItems();
}
[Test]
public void CanGetResultsInAGenericList()
{
using (ISession s = OpenSession())
{
IQuery getItems = s.CreateQuery("from Item");
IQuery countItems = s.CreateSQLQuery("select count(*) as count from ITEM").AddScalar("count", NHibernateUtil.Int64);
IList results = s.CreateMultiQuery()
.Add(getItems)
.Add<long>(countItems)
.List();
Assert.That(results[0], Is.InstanceOf<ArrayList>());
Assert.That(results[1], Is.InstanceOf<List<long>>());
}
}
}
}