Skip to content

Commit 23b6dd4

Browse files
committed
Add further attribute with inheritance tests.
1 parent e8692d1 commit 23b6dd4

File tree

2 files changed

+135
-0
lines changed

2 files changed

+135
-0
lines changed

src/ImmediateReflection.Tests/Extensions/ImmediateAttributesExtensionsTests.cs

+87
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,16 @@ private static IEnumerable<TestCaseData> CreateGetAttributeTestCases
145145
typeof(TestBaseAttribute),
146146
true);
147147

148+
yield return new TestCaseData(
149+
typeof(TestClassOnlyInheritedAttribute),
150+
typeof(Attribute),
151+
false);
152+
153+
yield return new TestCaseData(
154+
typeof(TestClassOnlyInheritedAttribute),
155+
typeof(Attribute),
156+
true);
157+
148158
yield return new TestCaseData(
149159
typeof(TestClassInheritedAttribute),
150160
typeof(TestBaseAttribute),
@@ -234,6 +244,16 @@ private static IEnumerable<TestCaseData> CreateGetAttributeTestCases
234244
typeof(TestBaseAttribute),
235245
true);
236246

247+
yield return new TestCaseData(
248+
TestFieldOnlyInheritingAttributeFieldInfo,
249+
typeof(Attribute),
250+
false);
251+
252+
yield return new TestCaseData(
253+
TestFieldOnlyInheritingAttributeFieldInfo,
254+
typeof(Attribute),
255+
true);
256+
237257
yield return new TestCaseData(
238258
TestFieldInheritingAttributeFieldInfo,
239259
typeof(TestBaseAttribute),
@@ -356,6 +376,16 @@ private static IEnumerable<TestCaseData> CreateGetAttributeTestCases
356376
typeof(TestBaseAttribute),
357377
true);
358378

379+
yield return new TestCaseData(
380+
TestPropertyOnlyInheritingAttributePropertyInfo,
381+
typeof(Attribute),
382+
false);
383+
384+
yield return new TestCaseData(
385+
TestPropertyOnlyInheritingAttributePropertyInfo,
386+
typeof(Attribute),
387+
true);
388+
359389
yield return new TestCaseData(
360390
TestPropertyInheritingAttributePropertyInfo,
361391
typeof(TestBaseAttribute),
@@ -482,20 +512,23 @@ public void TemplateIsDefinedAndGetAttribute_Inherited()
482512
#region ImmediateType
483513

484514
CheckHasAndGetAttribute<TestBaseAttribute>(typeof(TestClassOnlyInheritedAttribute));
515+
CheckHasAndGetAttribute<Attribute>(typeof(TestClassOnlyInheritedAttribute));
485516
CheckHasAndGetAttribute<TestBaseAttribute>(typeof(TestClassInheritedAttribute));
486517

487518
#endregion
488519

489520
#region ImmediateField
490521

491522
CheckHasAndGetAttribute<TestBaseAttribute>(TestFieldOnlyInheritingAttributeFieldInfo);
523+
CheckHasAndGetAttribute<Attribute>(TestFieldOnlyInheritingAttributeFieldInfo);
492524
CheckHasAndGetAttribute<TestBaseAttribute>(TestFieldInheritingAttributeFieldInfo);
493525

494526
#endregion
495527

496528
#region ImmediateProperty
497529

498530
CheckHasAndGetAttribute<TestBaseAttribute>(TestPropertyOnlyInheritingAttributePropertyInfo);
531+
CheckHasAndGetAttribute<Attribute>(TestPropertyOnlyInheritingAttributePropertyInfo);
499532
CheckHasAndGetAttribute<TestBaseAttribute>(TestPropertyInheritingAttributePropertyInfo);
500533

501534
#endregion
@@ -794,6 +827,16 @@ private static IEnumerable<TestCaseData> CreateGetAttributesTestCases
794827
typeof(TestBaseAttribute),
795828
true);
796829

830+
yield return new TestCaseData(
831+
typeof(TestClassOnlyInheritedAttribute),
832+
typeof(Attribute),
833+
false);
834+
835+
yield return new TestCaseData(
836+
typeof(TestClassOnlyInheritedAttribute),
837+
typeof(Attribute),
838+
true);
839+
797840
yield return new TestCaseData(
798841
typeof(TestClassInheritedAttribute),
799842
typeof(TestBaseAttribute),
@@ -883,6 +926,16 @@ private static IEnumerable<TestCaseData> CreateGetAttributesTestCases
883926
typeof(TestBaseAttribute),
884927
true);
885928

929+
yield return new TestCaseData(
930+
TestFieldOnlyInheritingAttributeFieldInfo,
931+
typeof(Attribute),
932+
false);
933+
934+
yield return new TestCaseData(
935+
TestFieldOnlyInheritingAttributeFieldInfo,
936+
typeof(Attribute),
937+
true);
938+
886939
yield return new TestCaseData(
887940
TestFieldInheritingAttributeFieldInfo,
888941
typeof(TestBaseAttribute),
@@ -1005,6 +1058,16 @@ private static IEnumerable<TestCaseData> CreateGetAttributesTestCases
10051058
typeof(TestBaseAttribute),
10061059
true);
10071060

1061+
yield return new TestCaseData(
1062+
TestPropertyOnlyInheritingAttributePropertyInfo,
1063+
typeof(Attribute),
1064+
false);
1065+
1066+
yield return new TestCaseData(
1067+
TestPropertyOnlyInheritingAttributePropertyInfo,
1068+
typeof(Attribute),
1069+
true);
1070+
10081071
yield return new TestCaseData(
10091072
TestPropertyInheritingAttributePropertyInfo,
10101073
typeof(TestBaseAttribute),
@@ -1133,20 +1196,23 @@ public void TemplateGetAttributes_Inherited()
11331196
#region ImmediateType
11341197

11351198
CheckGetAttributes<TestBaseAttribute>(typeof(TestClassOnlyInheritedAttribute));
1199+
CheckGetAttributes<Attribute>(typeof(TestClassOnlyInheritedAttribute));
11361200
CheckGetAttributes<TestBaseAttribute>(typeof(TestClassInheritedAttribute));
11371201

11381202
#endregion
11391203

11401204
#region ImmediateField
11411205

11421206
CheckGetAttributes<TestBaseAttribute>(TestFieldOnlyInheritingAttributeFieldInfo);
1207+
CheckGetAttributes<Attribute>(TestFieldOnlyInheritingAttributeFieldInfo);
11431208
CheckGetAttributes<TestBaseAttribute>(TestFieldInheritingAttributeFieldInfo);
11441209

11451210
#endregion
11461211

11471212
#region ImmediateProperty
11481213

11491214
CheckGetAttributes<TestBaseAttribute>(TestPropertyOnlyInheritingAttributePropertyInfo);
1215+
CheckGetAttributes<Attribute>(TestPropertyOnlyInheritingAttributePropertyInfo);
11501216
CheckGetAttributes<TestBaseAttribute>(TestPropertyInheritingAttributePropertyInfo);
11511217

11521218
#endregion
@@ -1262,6 +1328,13 @@ private static IEnumerable<TestCaseData> CreateGetAllAttributesTestCases
12621328
yield return new TestCaseData(typeof(InheritedTestClassMultiAttributes), false);
12631329
yield return new TestCaseData(typeof(InheritedTestClassMultiAttributes), true);
12641330

1331+
// Inheriting attribute
1332+
yield return new TestCaseData(typeof(TestClassOnlyInheritedAttribute), false);
1333+
yield return new TestCaseData(typeof(TestClassOnlyInheritedAttribute), true);
1334+
1335+
yield return new TestCaseData(typeof(TestClassInheritedAttribute), false);
1336+
yield return new TestCaseData(typeof(TestClassInheritedAttribute), true);
1337+
12651338
#endregion
12661339

12671340
#region ImmediateField
@@ -1281,6 +1354,13 @@ private static IEnumerable<TestCaseData> CreateGetAllAttributesTestCases
12811354
yield return new TestCaseData(TestFieldMultiAttributesFieldInfo, false);
12821355
yield return new TestCaseData(TestFieldMultiAttributesFieldInfo, true);
12831356

1357+
// Inheriting attribute
1358+
yield return new TestCaseData(TestFieldOnlyInheritingAttributeFieldInfo, false);
1359+
yield return new TestCaseData(TestFieldOnlyInheritingAttributeFieldInfo, true);
1360+
1361+
yield return new TestCaseData(TestFieldInheritingAttributeFieldInfo, false);
1362+
yield return new TestCaseData(TestFieldInheritingAttributeFieldInfo, true);
1363+
12841364
#endregion
12851365

12861366
#region ImmediateProperty
@@ -1315,6 +1395,13 @@ private static IEnumerable<TestCaseData> CreateGetAllAttributesTestCases
13151395
yield return new TestCaseData(TestPropertyInheritedMultiAttributesPropertyInfo, false);
13161396
yield return new TestCaseData(TestPropertyInheritedMultiAttributesPropertyInfo, true);
13171397

1398+
// Inheriting attribute
1399+
yield return new TestCaseData(TestFieldOnlyInheritingAttributeFieldInfo, false);
1400+
yield return new TestCaseData(TestFieldOnlyInheritingAttributeFieldInfo, true);
1401+
1402+
yield return new TestCaseData(TestFieldInheritingAttributeFieldInfo, false);
1403+
yield return new TestCaseData(TestFieldInheritingAttributeFieldInfo, true);
1404+
13181405
#endregion
13191406
}
13201407
}

src/ImmediateReflection.Tests/ImmediateMemberTests.cs

+48
Original file line numberDiff line numberDiff line change
@@ -543,6 +543,8 @@ public void TemplateIsDefinedAndGetAttribute_Inherited()
543543

544544
CheckHasAndGetAttribute<TestBaseAttribute>(new ImmediateType(typeof(TestClassOnlyInheritedAttribute)), false, new TestInheritingAttribute(17));
545545
CheckHasAndGetAttribute<TestBaseAttribute>(new ImmediateType(typeof(TestClassOnlyInheritedAttribute)), true, new TestInheritingAttribute(17));
546+
CheckHasAndGetAttribute<Attribute>(new ImmediateType(typeof(TestClassOnlyInheritedAttribute)), false, new ThirdTestClassAttribute(16));
547+
CheckHasAndGetAttribute<Attribute>(new ImmediateType(typeof(TestClassOnlyInheritedAttribute)), true, new ThirdTestClassAttribute(16));
546548
CheckHasAndGetAttribute<TestBaseAttribute>(new ImmediateType(typeof(TestClassInheritedAttribute)), false, new TestBaseAttribute(22));
547549
CheckHasAndGetAttribute<TestBaseAttribute>(new ImmediateType(typeof(TestClassInheritedAttribute)), true, new TestBaseAttribute(22));
548550

@@ -552,6 +554,8 @@ public void TemplateIsDefinedAndGetAttribute_Inherited()
552554

553555
CheckHasAndGetAttribute<TestBaseAttribute>(new ImmediateField(TestFieldOnlyInheritingAttributeFieldInfo), false, new TestInheritingAttribute(19));
554556
CheckHasAndGetAttribute<TestBaseAttribute>(new ImmediateField(TestFieldOnlyInheritingAttributeFieldInfo), true, new TestInheritingAttribute(19));
557+
CheckHasAndGetAttribute<Attribute>(new ImmediateField(TestFieldOnlyInheritingAttributeFieldInfo), false, new ThirdTestClassAttribute(18));
558+
CheckHasAndGetAttribute<Attribute>(new ImmediateField(TestFieldOnlyInheritingAttributeFieldInfo), true, new ThirdTestClassAttribute(18));
555559
CheckHasAndGetAttribute<TestBaseAttribute>(new ImmediateField(TestFieldInheritingAttributeFieldInfo), false, new TestBaseAttribute(20));
556560
CheckHasAndGetAttribute<TestBaseAttribute>(new ImmediateField(TestFieldInheritingAttributeFieldInfo), true, new TestBaseAttribute(20));
557561

@@ -561,6 +565,8 @@ public void TemplateIsDefinedAndGetAttribute_Inherited()
561565

562566
CheckHasAndGetAttribute<TestBaseAttribute>(new ImmediateProperty(TestPropertyOnlyInheritingAttributePropertyInfo), false, new TestInheritingAttribute(25));
563567
CheckHasAndGetAttribute<TestBaseAttribute>(new ImmediateProperty(TestPropertyOnlyInheritingAttributePropertyInfo), true, new TestInheritingAttribute(25));
568+
CheckHasAndGetAttribute<Attribute>(new ImmediateProperty(TestPropertyOnlyInheritingAttributePropertyInfo), false, new ThirdTestClassAttribute(24));
569+
CheckHasAndGetAttribute<Attribute>(new ImmediateProperty(TestPropertyOnlyInheritingAttributePropertyInfo), true, new ThirdTestClassAttribute(24));
564570
CheckHasAndGetAttribute<TestBaseAttribute>(new ImmediateProperty(TestPropertyInheritingAttributePropertyInfo), false, new TestBaseAttribute(26));
565571
CheckHasAndGetAttribute<TestBaseAttribute>(new ImmediateProperty(TestPropertyInheritingAttributePropertyInfo), true, new TestBaseAttribute(26));
566572

@@ -835,6 +841,18 @@ private static IEnumerable<TestCaseData> CreateGetAttributesTestCases
835841
true,
836842
new[] { new TestInheritingAttribute(17) });
837843

844+
yield return new TestCaseData(
845+
new ImmediateType(typeof(TestClassOnlyInheritedAttribute)),
846+
typeof(Attribute),
847+
false,
848+
new Attribute[] { new ThirdTestClassAttribute(16), new TestInheritingAttribute(17) });
849+
850+
yield return new TestCaseData(
851+
new ImmediateType(typeof(TestClassOnlyInheritedAttribute)),
852+
typeof(Attribute),
853+
true,
854+
new Attribute[] { new ThirdTestClassAttribute(16), new TestInheritingAttribute(17) });
855+
838856
yield return new TestCaseData(
839857
new ImmediateType(typeof(TestClassInheritedAttribute)),
840858
typeof(TestBaseAttribute),
@@ -940,6 +958,18 @@ private static IEnumerable<TestCaseData> CreateGetAttributesTestCases
940958
true,
941959
new[] { new TestInheritingAttribute(19) });
942960

961+
yield return new TestCaseData(
962+
new ImmediateField(TestFieldOnlyInheritingAttributeFieldInfo),
963+
typeof(Attribute),
964+
false,
965+
new Attribute[] { new ThirdTestClassAttribute(18), new TestInheritingAttribute(19) });
966+
967+
yield return new TestCaseData(
968+
new ImmediateField(TestFieldOnlyInheritingAttributeFieldInfo),
969+
typeof(Attribute),
970+
true,
971+
new Attribute[] { new ThirdTestClassAttribute(18), new TestInheritingAttribute(19) });
972+
943973
yield return new TestCaseData(
944974
new ImmediateField(TestFieldInheritingAttributeFieldInfo),
945975
typeof(TestBaseAttribute),
@@ -1084,6 +1114,18 @@ private static IEnumerable<TestCaseData> CreateGetAttributesTestCases
10841114
true,
10851115
new[] { new TestInheritingAttribute(25) });
10861116

1117+
yield return new TestCaseData(
1118+
new ImmediateProperty(TestPropertyOnlyInheritingAttributePropertyInfo),
1119+
typeof(Attribute),
1120+
false,
1121+
new Attribute[] { new ThirdTestClassAttribute(24), new TestInheritingAttribute(25) });
1122+
1123+
yield return new TestCaseData(
1124+
new ImmediateProperty(TestPropertyOnlyInheritingAttributePropertyInfo),
1125+
typeof(Attribute),
1126+
true,
1127+
new Attribute[] { new ThirdTestClassAttribute(24), new TestInheritingAttribute(25) });
1128+
10871129
yield return new TestCaseData(
10881130
new ImmediateProperty(TestPropertyInheritingAttributePropertyInfo),
10891131
typeof(TestBaseAttribute),
@@ -1236,6 +1278,8 @@ public void TemplateGetAttributes_Inherited()
12361278

12371279
CheckGetAttributes<TestBaseAttribute>(new ImmediateType(typeof(TestClassOnlyInheritedAttribute)), false, new[] { new TestInheritingAttribute(17) });
12381280
CheckGetAttributes<TestBaseAttribute>(new ImmediateType(typeof(TestClassOnlyInheritedAttribute)), true, new[] { new TestInheritingAttribute(17) });
1281+
CheckGetAttributes<Attribute>(new ImmediateType(typeof(TestClassOnlyInheritedAttribute)), false, new Attribute[] { new ThirdTestClassAttribute(16), new TestInheritingAttribute(17) });
1282+
CheckGetAttributes<Attribute>(new ImmediateType(typeof(TestClassOnlyInheritedAttribute)), true, new Attribute[] { new ThirdTestClassAttribute(16), new TestInheritingAttribute(17) });
12391283
CheckGetAttributes<TestBaseAttribute>(new ImmediateType(typeof(TestClassInheritedAttribute)), false, new[] { new TestBaseAttribute(22), new TestInheritingAttribute(23) });
12401284
CheckGetAttributes<TestBaseAttribute>(new ImmediateType(typeof(TestClassInheritedAttribute)), true, new[] { new TestBaseAttribute(22), new TestInheritingAttribute(23) });
12411285

@@ -1245,6 +1289,8 @@ public void TemplateGetAttributes_Inherited()
12451289

12461290
CheckGetAttributes<TestBaseAttribute>(new ImmediateField(TestFieldOnlyInheritingAttributeFieldInfo), false, new[] { new TestInheritingAttribute(19) });
12471291
CheckGetAttributes<TestBaseAttribute>(new ImmediateField(TestFieldOnlyInheritingAttributeFieldInfo), true, new[] { new TestInheritingAttribute(19) });
1292+
CheckGetAttributes<Attribute>(new ImmediateField(TestFieldOnlyInheritingAttributeFieldInfo), false, new Attribute[] { new ThirdTestClassAttribute(18), new TestInheritingAttribute(19) });
1293+
CheckGetAttributes<Attribute>(new ImmediateField(TestFieldOnlyInheritingAttributeFieldInfo), true, new Attribute[] { new ThirdTestClassAttribute(18), new TestInheritingAttribute(19) });
12481294
CheckGetAttributes<TestBaseAttribute>(new ImmediateField(TestFieldInheritingAttributeFieldInfo), false, new[] { new TestBaseAttribute(20), new TestInheritingAttribute(21) });
12491295
CheckGetAttributes<TestBaseAttribute>(new ImmediateField(TestFieldInheritingAttributeFieldInfo), true, new[] { new TestBaseAttribute(20), new TestInheritingAttribute(21) });
12501296

@@ -1254,6 +1300,8 @@ public void TemplateGetAttributes_Inherited()
12541300

12551301
CheckGetAttributes<TestBaseAttribute>(new ImmediateProperty(TestPropertyOnlyInheritingAttributePropertyInfo), false, new[] { new TestInheritingAttribute(25) });
12561302
CheckGetAttributes<TestBaseAttribute>(new ImmediateProperty(TestPropertyOnlyInheritingAttributePropertyInfo), true, new[] { new TestInheritingAttribute(25) });
1303+
CheckGetAttributes<Attribute>(new ImmediateProperty(TestPropertyOnlyInheritingAttributePropertyInfo), false, new Attribute[] { new ThirdTestClassAttribute(24), new TestInheritingAttribute(25) });
1304+
CheckGetAttributes<Attribute>(new ImmediateProperty(TestPropertyOnlyInheritingAttributePropertyInfo), true, new Attribute[] { new ThirdTestClassAttribute(24), new TestInheritingAttribute(25) });
12571305
CheckGetAttributes<TestBaseAttribute>(new ImmediateProperty(TestPropertyInheritingAttributePropertyInfo), false, new[] { new TestBaseAttribute(26), new TestInheritingAttribute(27) });
12581306
CheckGetAttributes<TestBaseAttribute>(new ImmediateProperty(TestPropertyInheritingAttributePropertyInfo), true, new[] { new TestBaseAttribute(26), new TestInheritingAttribute(27) });
12591307

0 commit comments

Comments
 (0)