Skip to content
Navigation Menu
{{ message }}
forked from Dresel/MethodCache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModuleWeaverTests.cs
More file actions
376 lines (298 loc) · 10.9 KB
/
Copy pathModuleWeaverTests.cs
File metadata and controls
376 lines (298 loc) · 10.9 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
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
namespace MethodCache.Tests
{
using System;
using System.Linq;
using System.Reflection;
using MethodCache.Fody;
using MethodCache.Tests.TestAssembly;
using MethodCache.Tests.TestAssembly.Cache;
using NUnit.Framework;
public class ModuleWeaverTests : ModuleWeaverTestsBase
{
[Test]
public void ClassLevelCacheMethodsExcluded()
{
// Arrange
dynamic cache = WeaverHelper.CreateInstance<DictionaryCache>(Assembly);
dynamic instance = WeaverHelper.CreateInstance<TestClassMethodsExcluded>(Assembly, cache);
// Act
dynamic value = instance.Method(10);
value = instance.Method(10);
// Assert
Assert.IsTrue(cache.NumStoreCalls == 0);
Assert.IsTrue(cache.NumRetrieveCalls == 0);
}
[Test]
public void ClassLevelCacheMethodsExcludedChooseSelectively()
{
// Arrange
dynamic cache = WeaverHelper.CreateInstance<DictionaryCache>(Assembly);
dynamic instance = WeaverHelper.CreateInstance<TestClassMethodsExcluded>(Assembly, cache);
// Act
dynamic value = instance.MethodIncluded(10);
value = instance.MethodIncluded(10);
// Assert
Assert.IsTrue(cache.NumStoreCalls == 1);
Assert.IsTrue(cache.NumRetrieveCalls == 1);
}
[Test]
public void ClassLevelCacheMethodsWhenPropertiesExcluded()
{
// Arrange
dynamic cache = WeaverHelper.CreateInstance<DictionaryCache>(Assembly);
dynamic instance = WeaverHelper.CreateInstance<TestClassPropertiesExcluded>(Assembly, cache);
// Act
dynamic value = instance.Method(10);
value = instance.Method(10);
// Assert
Assert.IsTrue(cache.NumStoreCalls == 1);
Assert.IsTrue(cache.NumRetrieveCalls == 1);
}
[Test]
public void ModuleWeaverExecuteWeavesCorrectIL()
{
string assemblyPath = Assembly.CodeBase.Remove(0, 8);
string result = Verifier.Verify(assemblyPath);
Assert.IsTrue(result.Contains(string.Format("All Classes and Methods in {0} Verified.", assemblyPath)));
}
[Test]
public void ModuleWeaverRemovesMethodCacheAttributeReference()
{
Assert.IsFalse(Assembly.GetReferencedAssemblies().Any(x => x.Name == "MethodCache.Attributes"));
}
[Test]
public void TestClass1ClassLevelCacheAttributeCachedMethodTwoReturnsSameInstance()
{
// Arrange
dynamic cache = WeaverHelper.CreateInstance<DictionaryCache>(Assembly);
dynamic testClass1 = WeaverHelper.CreateInstance<TestClass1>(Assembly, cache);
// Act
dynamic instance1 = testClass1.MethodTwo("1337");
dynamic instance2 = testClass1.MethodTwo("1337");
// Assert
Assert.IsTrue(ReferenceEquals(instance1, instance2));
}
[Test]
public void TestClass1ClassLevelCacheAttributeCachesMethodOne()
{
// Arrange
dynamic cache = WeaverHelper.CreateInstance<DictionaryCache>(Assembly);
dynamic testClass1 = WeaverHelper.CreateInstance<TestClass1>(Assembly, cache);
// Act
testClass1.MethodOne(1337);
testClass1.MethodOne(1337);
// Assert
Assert.IsTrue(cache.NumStoreCalls == 1);
Assert.IsTrue(cache.NumRetrieveCalls == 1);
}
[Test]
public void TestClass1ClassLevelCacheAttributeCachesMethodTwo()
{
// Arrange
dynamic cache = WeaverHelper.CreateInstance<DictionaryCache>(Assembly);
dynamic testClass1 = WeaverHelper.CreateInstance<TestClass1>(Assembly, cache);
// Act
testClass1.MethodTwo("1337");
testClass1.MethodTwo("1337");
// Assert
Assert.IsTrue(cache.NumStoreCalls == 1);
Assert.IsTrue(cache.NumRetrieveCalls == 1);
}
[Test]
public void TestClass1ClassLevelCacheAttributeSuccessfullyRemoved()
{
dynamic cache = WeaverHelper.CreateInstance<DictionaryCache>(Assembly);
dynamic testClass1 = WeaverHelper.CreateInstance<TestClass1>(Assembly, cache);
Type classType = testClass1.GetType();
Assert.IsFalse(classType.GetCustomAttributes(true).Any(x => x.GetType().Name == ModuleWeaver.CacheAttributeName));
}
[Test]
public void TestClass2MethodLevelCacheAttributeCachesMethodOne()
{
// Arrange
dynamic cache = WeaverHelper.CreateInstance<DictionaryCache>(Assembly);
dynamic testClass2 = WeaverHelper.CreateInstance<TestClass2>(Assembly, cache);
// Act
testClass2.MethodOne(1337);
testClass2.MethodOne(1337);
// Assert
Assert.IsTrue(cache.NumStoreCalls == 1);
Assert.IsTrue(cache.NumRetrieveCalls == 1);
}
[Test]
public void TestClass2MethodLevelCacheAttributeDoesNotCachesMethodTwo()
{
// Arrange
dynamic cache = WeaverHelper.CreateInstance<DictionaryCache>(Assembly);
dynamic testClass2 = WeaverHelper.CreateInstance<TestClass2>(Assembly, cache);
// Act
testClass2.MethodTwo("1337");
testClass2.MethodTwo("1337");
// Assert
Assert.IsTrue(cache.NumStoreCalls == 0);
Assert.IsTrue(cache.NumRetrieveCalls == 0);
}
[Test]
public void TestClass2MethodLevelCacheAttributeNotCachedMethodTwoReturnsDifferentInstances()
{
// Arrange
dynamic cache = WeaverHelper.CreateInstance<DictionaryCache>(Assembly);
dynamic testClass2 = WeaverHelper.CreateInstance<TestClass2>(Assembly, cache);
// Act
dynamic instance1 = testClass2.MethodTwo("1337");
dynamic instance2 = testClass2.MethodTwo("1337");
// Assert
Assert.IsTrue(!ReferenceEquals(instance1, instance2));
}
[Test]
public void TestClass2MethodLevelCacheAttributeSuccessfullyRemoved()
{
dynamic cache = WeaverHelper.CreateInstance<DictionaryCache>(Assembly);
dynamic testClass2 = WeaverHelper.CreateInstance<TestClass2>(Assembly, cache);
Type classType = testClass2.GetType();
MethodInfo methodInfo = classType.GetMethod("MethodOne");
Assert.IsFalse(methodInfo.GetCustomAttributes(true).Any(x => x.GetType().Name == ModuleWeaver.CacheAttributeName));
}
[Test]
public void TestClass3ConcreteCacheGetterCachesMethodOne()
{
// Arrange
dynamic cache = WeaverHelper.CreateInstance<DictionaryCache>(Assembly);
dynamic testClass2 = WeaverHelper.CreateInstance<TestClass3>(Assembly, cache);
// Act
testClass2.MethodOne(1337);
testClass2.MethodOne(1337);
// Assert
Assert.IsTrue(cache.NumStoreCalls == 1);
Assert.IsTrue(cache.NumRetrieveCalls == 1);
}
[Test]
public void TestClass3ConcreteCacheGetterCachesMethodTwo()
{
// Arrange
dynamic cache = WeaverHelper.CreateInstance<DictionaryCache>(Assembly);
dynamic testClass2 = WeaverHelper.CreateInstance<TestClass3>(Assembly, cache);
// Act
testClass2.MethodTwo("1337");
testClass2.MethodTwo("1337");
// Assert
Assert.IsTrue(cache.NumStoreCalls == 1);
Assert.IsTrue(cache.NumRetrieveCalls == 1);
}
[Test]
public void TestClass4MissingCacheGetterSuccessfullyIgnored()
{
// Arrange
dynamic testClass4 = WeaverHelper.CreateInstance<TestClass4>(Assembly);
// Act
testClass4.MethodOne(1337);
// Assert (test should not throw any exceptions)
}
[Test]
public void TestClass5WrongCacheGetterTypeSuccessfullyIgnored()
{
// Arrange
dynamic testClass5 = WeaverHelper.CreateInstance<TestClass5>(Assembly);
// Act
testClass5.MethodOne(1337);
// Assert (test should not throw any exceptions)
}
[Test]
public void TestClass6InheritedCacheGetterCanBeUsed()
{
// Arrange
dynamic cache = WeaverHelper.CreateInstance<DictionaryCache>(Assembly);
dynamic testClass6 = WeaverHelper.CreateInstance<TestClass6>(Assembly, cache);
// Act
testClass6.MethodThree(1337);
testClass6.MethodThree(1337);
// Assert
Assert.IsTrue(cache.NumStoreCalls == 1);
Assert.IsTrue(cache.NumRetrieveCalls == 1);
}
[Test]
public void TestClass7MethodLevelNoCacheAttributeDoesNotCachesMethodTwo()
{
// Arrange
dynamic cache = WeaverHelper.CreateInstance<DictionaryCache>(Assembly);
dynamic testClass7 = WeaverHelper.CreateInstance<TestClass7>(Assembly, cache);
// Act
testClass7.MethodTwo("1337");
testClass7.MethodTwo("1337");
// Assert
Assert.IsTrue(cache.NumStoreCalls == 0);
Assert.IsTrue(cache.NumRetrieveCalls == 0);
}
[Test]
public void TestClass7MethodLevelNoCacheAttributeNotCachedMethodTwoReturnsDifferentInstances()
{
// Arrange
dynamic cache = WeaverHelper.CreateInstance<DictionaryCache>(Assembly);
dynamic testClass7 = WeaverHelper.CreateInstance<TestClass7>(Assembly, cache);
// Act
dynamic instance1 = testClass7.MethodTwo("1337");
dynamic instance2 = testClass7.MethodTwo("1337");
// Assert
Assert.IsTrue(!ReferenceEquals(instance1, instance2));
}
[Test]
public void TestClass7MethodLevelNoCacheAttributeSuccessfullyRemoved()
{
dynamic cache = WeaverHelper.CreateInstance<DictionaryCache>(Assembly);
dynamic testClass7 = WeaverHelper.CreateInstance<TestClass7>(Assembly, cache);
Type classType = testClass7.GetType();
MethodInfo methodInfo = classType.GetMethod("MethodTwo");
Assert.IsFalse(methodInfo.GetCustomAttributes(true).Any(x => x.GetType().Name == ModuleWeaver.NoCacheAttributeName));
}
[Test]
public void TestClass8ClassLevelCacheAttributeCachedMethodTwoReturnsSameInstance()
{
// Arrange
dynamic cache = WeaverHelper.CreateInstance<DictionaryCache>(Assembly);
Type testClassType = Assembly.GetType(typeof(TestClass8).FullName);
Type cacheType = Assembly.GetType(typeof(ICache).FullName);
PropertyInfo cacheProperty = testClassType.GetProperty("Cache", cacheType);
cacheProperty.SetValue(null, cache, null);
MethodInfo method = testClassType.GetMethod("MethodTwo", new[] { typeof(string) });
// Act
dynamic instance1 = method.Invoke(null, new object[] { "1337" });
dynamic instance2 = method.Invoke(null, new object[] { "1337" });
// Assert
Assert.IsTrue(ReferenceEquals(instance1, instance2));
}
[Test]
public void TestClass8ClassLevelCacheAttributeCachesMethodOne()
{
// Arrange
dynamic cache = WeaverHelper.CreateInstance<DictionaryCache>(Assembly);
Type testClassType = Assembly.GetType(typeof(TestClass8).FullName);
Type cacheType = Assembly.GetType(typeof(ICache).FullName);
PropertyInfo cacheProperty = testClassType.GetProperty("Cache", cacheType);
cacheProperty.SetValue(null, cache, null);
MethodInfo method = testClassType.GetMethod("MethodOne", new[] { typeof(int) });
// Act
method.Invoke(null, new object[] { 1337 });
method.Invoke(null, new object[] { 1337 });
// Assert
Assert.IsTrue(cache.NumStoreCalls == 1);
Assert.IsTrue(cache.NumRetrieveCalls == 1);
}
[Test]
public void TestClass8ClassLevelCacheAttributeCachesMethodTwo()
{
// Arrange
dynamic cache = WeaverHelper.CreateInstance<DictionaryCache>(Assembly);
Type testClassType = Assembly.GetType(typeof(TestClass8).FullName);
Type cacheType = Assembly.GetType(typeof(ICache).FullName);
PropertyInfo cacheProperty = testClassType.GetProperty("Cache", cacheType);
cacheProperty.SetValue(null, cache, null);
MethodInfo method = testClassType.GetMethod("MethodTwo", new[] { typeof(string) });
// Act
method.Invoke(null, new object[] { "1337" });
method.Invoke(null, new object[] { "1337" });
// Assert
Assert.IsTrue(cache.NumStoreCalls == 1);
Assert.IsTrue(cache.NumRetrieveCalls == 1);
}
}
}
You can’t perform that action at this time.
