-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTypeLookupServiceTest.cs
202 lines (164 loc) · 9.53 KB
/
TypeLookupServiceTest.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
/*==============================================================================================================================
| Author Ignia, LLC
| Client Ignia, LLC
| Project Topics Library
\=============================================================================================================================*/
using OnTopic.Lookup;
using OnTopic.Metadata;
using OnTopic.Tests.BindingModels;
using OnTopic.Tests.Entities;
using OnTopic.Tests.ViewModels;
using Xunit;
namespace OnTopic.Tests {
/*============================================================================================================================
| CLASS: TYPE LOOKUP SERVICE TEST
\---------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Provides unit tests for the <see cref="ITypeLookupService"/> interface and its implementations, such as the <see cref="
/// StaticTypeLookupService"/>, <see cref="DynamicTypeLookupService"/>, <see cref="DynamicTopicBindingModelLookupService"/>,
/// and the underlying <see cref="TypeCollection"/>.
/// </summary>
[ExcludeFromCodeCoverage]
public class TypeLookupServiceTest {
/*==========================================================================================================================
| TEST: TYPE COLLECTION: CONSTRUCTOR: CONTAINS UNIQUE TYPES
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Initializes a new <see cref="TypeCollection"/> with a list of <see cref="Type"/> objects, including a duplicate.
/// Confirms that only the unique values are provided.
/// </summary>
[Fact]
public void TypeCollection_Constructor_ContainsUniqueTypes() {
var topics = new List<Type> {
typeof(BasicTopicBindingModel),
typeof(CustomTopic),
typeof(CustomTopic)
};
var typeCollection = new TypeCollection(topics);
Assert.Equal(2, typeCollection.Count);
Assert.Contains(typeof(CustomTopic), typeCollection);
Assert.DoesNotContain(typeof(Topic), typeCollection);
}
/*==========================================================================================================================
| TEST: STATIC TYPE LOOKUP SERVICE: TRY ADD: RETURNS EXPECTED
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Establishes a <see cref="StaticTypeLookupService"/> and calls <see cref="StaticTypeLookupService.TryAdd(Type)"/> to
/// ensure it correctly adds new items, but not duplicate items.
/// </summary>
[Fact]
public void StaticLookupService_TryAdd_ReturnsExpected() {
var topics = new List<Type> {
typeof(CustomTopic)
};
var lookupService = new DummyStaticTypeLookupService(topics);
Assert.False(lookupService.TryAdd(typeof(CustomTopic)));
Assert.True(lookupService.TryAdd(typeof(Topic)));
}
/*==========================================================================================================================
| TEST: STATIC TYPE LOOKUP SERVICE: LOOKUP: RETURNS FALLBACK
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Establishes a <see cref="StaticTypeLookupService"/> and calls <see cref="StaticTypeLookupService.Lookup(String[])"/>
/// to ensure it correctly falls back to subsequent items.
/// </summary>
[Fact]
public void StaticLookupService_Lookup_ReturnsFallback() {
var topics = new List<Type> {
typeof(AscendentTopicViewModel),
typeof(FallbackViewModel)
};
var lookupService = new StaticTypeLookupService(topics);
Assert.Equal(typeof(FallbackViewModel), lookupService.Lookup(nameof(EmptyViewModel), nameof(FallbackViewModel)));
}
/*==========================================================================================================================
| TEST: STATIC TYPE LOOKUP SERVICE: ADD OR REPLACE: RETURNS EXPECTED
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Establishes a <see cref="StaticTypeLookupService"/> and calls <see cref="StaticTypeLookupService.AddOrReplace(Type)"/>
/// to ensure it correctly adds new items, but and replaces duplicate items.
/// </summary>
[Fact]
public void StaticLookupService_AddOrReplace_ReturnsExpected() {
var lookupService = new DummyStaticTypeLookupService();
lookupService.AddOrReplace(typeof(System.Diagnostics.Contracts.Contract));
lookupService.AddOrReplace(typeof(Internal.Diagnostics.Contract));
Assert.Equal(typeof(Internal.Diagnostics.Contract), lookupService.Lookup(nameof(Internal.Diagnostics.Contract)));
}
/*==========================================================================================================================
| TEST: DYNAMIC TYPE LOOKUP SERVICE: PREDICATE: RETURNS EXPECTED
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Establishes a <see cref="DynamicTypeLookupService"/> with a custom predicate and calls the underlying <see cref="
/// StaticTypeLookupService.Lookup(String[])"/> to ensure it correctly adds the expected items.
/// </summary>
[Fact]
public void DynamicTypeLookupService_Predicate_ReturnsExpected() {
var lookupService = new DynamicTypeLookupService(t =>
t.Namespace == typeof(KeyOnlyTopicViewModel).Namespace &&
typeof(KeyOnlyTopicViewModel).IsAssignableFrom(t)
);
Assert.NotNull(lookupService.Lookup(nameof(KeyOnlyTopicViewModel)));
Assert.NotNull(lookupService.Lookup(nameof(AmbiguousRelationTopicViewModel)));
Assert.Null(lookupService.Lookup(nameof(EmptyViewModel)));
}
/*==========================================================================================================================
| TEST: COMPOSITE TYPE LOOKUP SERVICE: LOOKUP: RETURNS FALLBACK
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Establishes a <see cref="CompositeTypeLookupService"/> and calls <see cref="CompositeTypeLookupService.Lookup(String[]
/// )"/> to ensure it correctly falls back to each <see cref="ITypeLookupService"/> implementation.
/// </summary>
[Fact]
public void CompositeTypeLookupService_Lookup_ReturnsFallback() {
var lookupService1 = new StaticTypeLookupService(
new List<Type> {
typeof(EmptyViewModel),
typeof(FallbackViewModel),
typeof(Internal.Diagnostics.Contract)
}
);
var lookupService2 = new StaticTypeLookupService(
new List<Type> {
typeof(AscendentTopicViewModel),
typeof(FallbackViewModel),
typeof(System.Diagnostics.Contracts.Contract)
}
);
var lookupService = new CompositeTypeLookupService(lookupService1, lookupService2);
Assert.Equal(typeof(System.Diagnostics.Contracts.Contract), lookupService.Lookup("Contract"));
Assert.Equal(typeof(FallbackViewModel), lookupService.Lookup("Missing", "FallbackViewModel"));
Assert.Equal(typeof(FallbackViewModel), lookupService.Lookup("Missing")?? typeof(FallbackViewModel));
}
/*==========================================================================================================================
| TEST: DEFAULT TOPIC LOOKUP SERVICE: LOOKUP: RETURNS EXPECTED
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Tests the <see cref="DefaultTopicLookupService"/> to ensure it correctly identifies not only the built-in models, but
/// also an additional model injected via the constructor.
/// </summary>
[Fact]
public void DefaultTopicLookupService_Lookup_ReturnsExpected() {
var topics = new List<Type> {
typeof(CustomTopic)
};
var lookupService = new DefaultTopicLookupService(topics);
Assert.Equal(typeof(AttributeDescriptor), lookupService.Lookup(nameof(AttributeDescriptor)));
Assert.Equal(typeof(CustomTopic), lookupService.Lookup(nameof(CustomTopic)));
Assert.Null(lookupService.Lookup("TextAttributeDescriptor"));
}
/*==========================================================================================================================
| TEST: DYNAMIC TOPIC BINDING MODEL LOOKUP SERVICE: LOOKUP: RETURNS EXPECTED
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Tests the <see cref="DynamicTopicBindingModelLookupService"/> to ensure it correctly identifies binding models that
/// are defined as part of the test project.
/// </summary>
[Fact]
public void DynamicTopicBindingModelLookupService_Lookup_ReturnsExpected() {
var lookupService = new DynamicTopicBindingModelLookupService();
Assert.Equal(typeof(PageTopicBindingModel), lookupService.Lookup(nameof(PageTopicBindingModel)));
Assert.Null(lookupService.Lookup("MissingTopicBindingModel"));
}
} //Class
} //Namespace