forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNativeSQLBulkOperationsWithCache.cs
116 lines (97 loc) · 2.95 KB
/
NativeSQLBulkOperationsWithCache.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
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using NHibernate.Cache;
using NHibernate.Cfg;
using NSubstitute;
using NUnit.Framework;
using Environment = NHibernate.Cfg.Environment;
namespace NHibernate.Test.BulkManipulation
{
[TestFixture]
public class NativeSQLBulkOperationsWithCache : TestCase
{
protected override string CacheConcurrencyStrategy => "nonstrict-read-write";
protected override string MappingsAssembly => "NHibernate.Test";
protected override string[] Mappings => new[] { "BulkManipulation.Vehicle.hbm.xml" };
protected override void Configure(Configuration configuration)
{
cfg.SetProperty(Environment.UseQueryCache, "true");
cfg.SetProperty(Environment.UseSecondLevelCache, "true");
cfg.SetProperty(Environment.CacheProvider, typeof(SubstituteCacheProvider).AssemblyQualifiedName);
}
[Test]
public void SimpleNativeSQLInsert_DoesNotEvictEntireCacheWhenQuerySpacesAreAdded()
{
List<string> clearCalls = new List<string>();
((SubstituteCacheProvider) Sfi.Settings.CacheProvider).OnClear(x =>
{
clearCalls.Add(x);
});
using (var s = OpenSession())
{
string ssql = "UPDATE Vehicle SET Vin='123' WHERE Vin='123c'";
using (var t = s.BeginTransaction())
{
s.CreateSQLQuery(ssql).ExecuteUpdate();
t.Commit();
Assert.AreEqual(1, clearCalls.Count);
}
clearCalls.Clear();
using (var t = s.BeginTransaction())
{
s.CreateSQLQuery(ssql).AddSynchronizedQuerySpace("Unknown").ExecuteUpdate();
t.Commit();
Assert.AreEqual(0, clearCalls.Count);
}
}
}
}
public class SubstituteCacheProvider : ICacheProvider
{
private readonly ConcurrentDictionary<string, Lazy<CacheBase>> _caches = new ConcurrentDictionary<string, Lazy<CacheBase>>();
private Action<string> _onClear;
// Since 5.2
[Obsolete]
ICache ICacheProvider.BuildCache(string regionName, IDictionary<string, string> properties)
{
return BuildCache(regionName, properties);
}
public CacheBase BuildCache(string regionName, IDictionary<string, string> properties)
{
return _caches.GetOrAdd(regionName, x => new Lazy<CacheBase>(() =>
{
var cache = Substitute.For<CacheBase>();
cache.RegionName.Returns(regionName);
cache.When(c => c.Clear()).Do(c => _onClear?.Invoke(regionName));
cache.When(c => c.ClearAsync(Arg.Any<CancellationToken>())).Do(c => _onClear?.Invoke(regionName));
return cache;
})).Value;
}
public long NextTimestamp()
{
return Timestamper.Next();
}
public void Start(IDictionary<string, string> properties)
{
}
public void Stop()
{
}
public CacheBase GetCache(string region)
{
_caches.TryGetValue(region, out var cache);
return cache?.Value;
}
public IEnumerable<CacheBase> GetAllCaches()
{
return _caches.Values.Select(x => x.Value);
}
public void OnClear(Action<string> callback)
{
_onClear = callback;
}
}
}