-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathTypeExtensionsTest.cs
More file actions
739 lines (566 loc) · 18.1 KB
/
TypeExtensionsTest.cs
File metadata and controls
739 lines (566 loc) · 18.1 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
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
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using Xunit;
namespace AutoMapper.Extensions.ExpressionMapping.UnitTests
{
public class TypeExtensionsTest
{
#region Has<TAttribute> Tests
[AttributeUsage(AttributeTargets.Class)]
private class TestAttribute : Attribute { }
[Test]
private class ClassWithAttribute { }
private class ClassWithoutAttribute { }
[Fact]
public void Has_TypeWithAttribute_ReturnsTrue()
{
// Arrange
var type = typeof(ClassWithAttribute);
// Act
var result = type.Has<TestAttribute>();
// Assert
Assert.True(result);
}
[Fact]
public void Has_TypeWithoutAttribute_ReturnsFalse()
{
// Arrange
var type = typeof(ClassWithoutAttribute);
// Act
var result = type.Has<TestAttribute>();
// Assert
Assert.False(result);
}
#endregion
#region GetDeclaredConstructors Tests
private class ClassWithMultipleConstructors
{
public ClassWithMultipleConstructors() { }
#pragma warning disable IDE0060 // Remove unused parameter
public ClassWithMultipleConstructors(int value) { }
#pragma warning restore IDE0060 // Remove unused parameter
#pragma warning disable IDE0060 // Remove unused parameter
public ClassWithMultipleConstructors(string text, int value) { }
#pragma warning restore IDE0060 // Remove unused parameter
}
[Fact]
public void GetDeclaredConstructors_ReturnsAllConstructors()
{
// Arrange
var type = typeof(ClassWithMultipleConstructors);
// Act
var constructors = type.GetDeclaredConstructors().ToList();
// Assert
Assert.Equal(3, constructors.Count);
}
#endregion
#region GetDeclaredMethod Tests
private class ClassWithMethods
{
public void TestMethod() { }
#pragma warning disable IDE0060 // Remove unused parameter
public void AnotherMethod(int value) { }
#pragma warning restore IDE0060 // Remove unused parameter
}
[Fact]
public void GetDeclaredMethod_ExistingMethod_ReturnsMethod()
{
// Arrange
var type = typeof(ClassWithMethods);
// Act
var method = type.GetDeclaredMethod("TestMethod");
// Assert
Assert.NotNull(method);
Assert.Equal("TestMethod", method.Name);
}
[Fact]
public void GetDeclaredMethod_NonExistingMethod_ReturnsNull()
{
// Arrange
var type = typeof(ClassWithMethods);
// Act
var method = type.GetDeclaredMethod("NonExistingMethod");
// Assert
Assert.Null(method);
}
#endregion
#region GetDeclaredConstructor Tests
[Fact]
public void GetDeclaredConstructor_WithMatchingParameters_ReturnsConstructor()
{
// Arrange
var type = typeof(ClassWithMultipleConstructors);
// Act
var constructor = type.GetDeclaredConstructor([typeof(int)]);
// Assert
Assert.NotNull(constructor);
Assert.Single(constructor.GetParameters());
Assert.Equal(typeof(int), constructor.GetParameters()[0].ParameterType);
}
[Fact]
public void GetDeclaredConstructor_WithNonMatchingParameters_ReturnsNull()
{
// Arrange
var type = typeof(ClassWithMultipleConstructors);
// Act
var constructor = type.GetDeclaredConstructor([typeof(double)]);
// Assert
Assert.Null(constructor);
}
[Fact]
public void GetDeclaredConstructor_WithMultipleParameters_ReturnsCorrectConstructor()
{
// Arrange
var type = typeof(ClassWithMultipleConstructors);
// Act
var constructor = type.GetDeclaredConstructor([typeof(string), typeof(int)]);
// Assert
Assert.NotNull(constructor);
Assert.Equal(2, constructor.GetParameters().Length);
}
#endregion
#region GetAllMethods Tests
[Fact]
public void GetAllMethods_ReturnsAllRuntimeMethods()
{
// Arrange
var type = typeof(ClassWithMethods);
// Act
var methods = type.GetAllMethods().ToList();
// Assert
Assert.NotEmpty(methods);
Assert.Contains(methods, m => m.Name == "TestMethod");
Assert.Contains(methods, m => m.Name == "AnotherMethod");
}
#endregion
#region GetDeclaredProperties Tests
private class ClassWithProperties
{
public int Property1 { get; set; }
public string Property2 { get; set; }
}
[Fact]
public void GetDeclaredProperties_ReturnsAllDeclaredProperties()
{
// Arrange
var type = typeof(ClassWithProperties);
// Act
var properties = type.GetDeclaredProperties().ToList();
// Assert
Assert.Equal(2, properties.Count);
Assert.Contains(properties, p => p.Name == "Property1");
Assert.Contains(properties, p => p.Name == "Property2");
}
#endregion
#region IsStatic Tests
private class ClassWithStaticMembers
{
public static readonly int StaticField = 0;
public readonly int InstanceField = 0;
public static int StaticProperty { get; set; }
public int InstanceProperty { get; set; }
public static void StaticMethod() { }
public void InstanceMethod() { }
}
[Fact]
public void IsStatic_StaticField_ReturnsTrue()
{
// Arrange
var field = typeof(ClassWithStaticMembers).GetField("StaticField");
// Act
var result = field.IsStatic();
// Assert
Assert.True(result);
}
[Fact]
public void IsStatic_InstanceField_ReturnsFalse()
{
// Arrange
var field = typeof(ClassWithStaticMembers).GetField("InstanceField");
// Act
var result = field.IsStatic();
// Assert
Assert.False(result);
}
[Fact]
public void IsStatic_NullField_ReturnsFalse()
{
// Arrange
FieldInfo field = null;
// Act
var result = field.IsStatic();
// Assert
Assert.False(result);
}
[Fact]
public void IsStatic_StaticProperty_ReturnsTrue()
{
// Arrange
var property = typeof(ClassWithStaticMembers).GetProperty("StaticProperty");
// Act
var result = property.IsStatic();
// Assert
Assert.True(result);
}
[Fact]
public void IsStatic_InstanceProperty_ReturnsFalse()
{
// Arrange
var property = typeof(ClassWithStaticMembers).GetProperty("InstanceProperty");
// Act
var result = property.IsStatic();
// Assert
Assert.False(result);
}
[Fact]
public void IsStatic_NullProperty_ReturnsFalse()
{
// Arrange
PropertyInfo property = null;
// Act
var result = property.IsStatic();
// Assert
Assert.False(result);
}
[Fact]
public void IsStatic_StaticMethod_ReturnsTrue()
{
// Arrange
MemberInfo member = typeof(ClassWithStaticMembers).GetMethod("StaticMethod");
// Act
var result = member.IsStatic();
// Assert
Assert.True(result);
}
[Fact]
public void IsStatic_InstanceMethod_ReturnsFalse()
{
// Arrange
MemberInfo member = typeof(ClassWithStaticMembers).GetMethod("InstanceMethod");
// Act
var result = member.IsStatic();
// Assert
Assert.False(result);
}
[Fact]
public void IsStatic_MemberInfoAsStaticField_ReturnsTrue()
{
// Arrange
MemberInfo member = typeof(ClassWithStaticMembers).GetField("StaticField");
// Act
var result = member.IsStatic();
// Assert
Assert.True(result);
}
[Fact]
public void IsStatic_MemberInfoAsStaticProperty_ReturnsTrue()
{
// Arrange
MemberInfo member = typeof(ClassWithStaticMembers).GetProperty("StaticProperty");
// Act
var result = member.IsStatic();
// Assert
Assert.True(result);
}
#endregion
#region IsEnum Tests
private enum TestEnum { Value1, Value2 }
[Fact]
public void IsEnum_EnumType_ReturnsTrue()
{
// Arrange
var type = typeof(TestEnum);
// Act
var result = type.IsEnum();
// Assert
Assert.True(result);
}
[Fact]
public void IsEnum_NonEnumType_ReturnsFalse()
{
// Arrange
var type = typeof(int);
// Act
var result = type.IsEnum();
// Assert
Assert.False(result);
}
#endregion
#region IsGenericType Tests
[Fact]
public void IsGenericType_GenericType_ReturnsTrue()
{
// Arrange
var type = typeof(List<int>);
// Act
var result = type.IsGenericType();
// Assert
Assert.True(result);
}
[Fact]
public void IsGenericType_NonGenericType_ReturnsFalse()
{
// Arrange
var type = typeof(int);
// Act
var result = type.IsGenericType();
// Assert
Assert.False(result);
}
#endregion
#region IsPrimitive Tests
[Fact]
public void IsPrimitive_PrimitiveType_ReturnsTrue()
{
// Arrange
var type = typeof(int);
// Act
var result = type.IsPrimitive();
// Assert
Assert.True(result);
}
[Fact]
public void IsPrimitive_NonPrimitiveType_ReturnsFalse()
{
// Arrange
var type = typeof(string);
// Act
var result = type.IsPrimitive();
// Assert
Assert.False(result);
}
#endregion
#region IsValueType Tests
[Fact]
public void IsValueType_StructType_ReturnsTrue()
{
// Arrange
var type = typeof(int);
// Act
var result = type.IsValueType();
// Assert
Assert.True(result);
}
[Fact]
public void IsValueType_ClassType_ReturnsFalse()
{
// Arrange
var type = typeof(string);
// Act
var result = type.IsValueType();
// Assert
Assert.False(result);
}
#endregion
#region IsLiteralType Tests
[Theory]
[InlineData(typeof(bool))]
[InlineData(typeof(DateTime))]
[InlineData(typeof(DateTimeOffset))]
[InlineData(typeof(TimeSpan))]
[InlineData(typeof(Guid))]
[InlineData(typeof(decimal))]
[InlineData(typeof(byte))]
[InlineData(typeof(short))]
[InlineData(typeof(int))]
[InlineData(typeof(long))]
[InlineData(typeof(float))]
[InlineData(typeof(double))]
[InlineData(typeof(char))]
[InlineData(typeof(sbyte))]
[InlineData(typeof(ushort))]
[InlineData(typeof(uint))]
[InlineData(typeof(ulong))]
[InlineData(typeof(string))]
public void IsLiteralType_LiteralType_ReturnsTrue(Type type)
{
// Act
var result = type.IsLiteralType();
// Assert
Assert.True(result);
}
[Theory]
[InlineData(typeof(int?))]
[InlineData(typeof(bool?))]
[InlineData(typeof(DateTime?))]
[InlineData(typeof(decimal?))]
public void IsLiteralType_NullableLiteralType_ReturnsTrue(Type type)
{
// Act
var result = type.IsLiteralType();
// Assert
Assert.True(result);
}
[Fact]
public void IsLiteralType_NonLiteralType_ReturnsFalse()
{
// Arrange
var type = typeof(ClassWithProperties);
// Act
var result = type.IsLiteralType();
// Assert
Assert.False(result);
}
#endregion
#region IsQueryableType Tests
[Fact]
public void IsQueryableType_QueryableType_ReturnsTrue()
{
// Arrange
var type = typeof(IQueryable<int>);
// Act
var result = type.IsQueryableType();
// Assert
Assert.True(result);
}
[Fact]
public void IsQueryableType_QueryableNonGenericType_ReturnsTrue()
{
// Arrange
var type = typeof(IQueryable);
// Act
var result = type.IsQueryableType();
// Assert
Assert.True(result);
}
[Fact]
public void IsQueryableType_NonQueryableType_ReturnsFalse()
{
// Arrange
var type = typeof(List<int>);
// Act
var result = type.IsQueryableType();
// Assert
Assert.False(result);
}
#endregion
#region GetGenericElementType Tests
[Fact]
public void GetGenericElementType_ArrayType_ReturnsElementType()
{
// Arrange
var type = typeof(int[]);
// Act
var result = type.GetGenericElementType();
// Assert
Assert.Equal(typeof(int), result);
}
[Fact]
public void GetGenericElementType_GenericType_ReturnsGenericArgument()
{
// Arrange
var type = typeof(List<string>);
// Act
var result = type.GetGenericElementType();
// Assert
Assert.Equal(typeof(string), result);
}
#endregion
#region IsEnumerableType Tests
[Fact]
public void IsEnumerableType_ListType_ReturnsTrue()
{
// Arrange
var type = typeof(List<int>);
// Act
var result = type.IsEnumerableType();
// Assert
Assert.True(result);
}
[Fact]
public void IsEnumerableType_IEnumerableType_ReturnsTrue()
{
// Arrange
var type = typeof(IEnumerable<string>);
// Act
var result = type.IsEnumerableType();
// Assert
Assert.True(result);
}
[Fact]
public void IsEnumerableType_NonEnumerableType_ReturnsFalse()
{
// Arrange
var type = typeof(int);
// Act
var result = type.IsEnumerableType();
// Assert
Assert.False(result);
}
[Fact]
public void IsEnumerableType_NonGenericEnumerableType_ReturnsFalse()
{
// Arrange
var type = typeof(System.Collections.IEnumerable);
// Act
var result = type.IsEnumerableType();
// Assert
Assert.False(result);
}
#endregion
#region ReplaceItemType Tests
[Fact]
public void ReplaceItemType_SimpleTypeMatch_ReturnsNewType()
{
// Arrange
var targetType = typeof(int);
var oldType = typeof(int);
var newType = typeof(string);
// Act
var result = targetType.ReplaceItemType(oldType, newType);
// Assert
Assert.Equal(typeof(string), result);
}
[Fact]
public void ReplaceItemType_SimpleTypeNoMatch_ReturnsOriginalType()
{
// Arrange
var targetType = typeof(int);
var oldType = typeof(string);
var newType = typeof(double);
// Act
var result = targetType.ReplaceItemType(oldType, newType);
// Assert
Assert.Equal(typeof(int), result);
}
[Fact]
public void ReplaceItemType_GenericType_ReplacesTypeArgument()
{
// Arrange
var targetType = typeof(List<int>);
var oldType = typeof(int);
var newType = typeof(string);
// Act
var result = targetType.ReplaceItemType(oldType, newType);
// Assert
Assert.Equal(typeof(List<string>), result);
}
[Fact]
public void ReplaceItemType_NestedGenericType_ReplacesTypeArgument()
{
// Arrange
var targetType = typeof(Dictionary<int, string>);
var oldType = typeof(int);
var newType = typeof(long);
// Act
var result = targetType.ReplaceItemType(oldType, newType);
// Assert
Assert.Equal(typeof(Dictionary<long, string>), result);
}
[Fact]
public void ReplaceItemType_MultipleGenericArguments_ReplacesAll()
{
// Arrange
var targetType = typeof(Dictionary<int, int>);
var oldType = typeof(int);
var newType = typeof(string);
// Act
var result = targetType.ReplaceItemType(oldType, newType);
// Assert
Assert.Equal(typeof(Dictionary<string, string>), result);
}
#endregion
}
}