-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMemberAccessorTest.cs
407 lines (327 loc) · 20 KB
/
MemberAccessorTest.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
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
/*==============================================================================================================================
| Author Ignia, LLC
| Client Ignia, LLC
| Project Topics Library
\=============================================================================================================================*/
using System.Reflection;
using OnTopic.Internal.Reflection;
using OnTopic.Tests.ViewModels;
using Xunit;
namespace OnTopic.Tests {
/*============================================================================================================================
| CLASS: MEMBER ACCESSOR TEST
\---------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Provides basic unit tests for the <see cref="MemberAccessor"/> class.
/// </summary>
/// <remarks>
/// Most access to the <see cref="MemberAccessor"/> class will be through higher-level classes which provide type validation
/// and conversion. As a result, the unit tests for the <see cref="MemberAccessor"/> will focus on the more fundamental
/// behavior of validating and translating a <see cref="MemberInfo"/> object into a <see cref="MemberAccessor"/>.
/// </remarks>
[ExcludeFromCodeCoverage]
public class MemberAccessorTest {
/*==========================================================================================================================
| TEST: IS NULLABLE: NULLABLE PROPERTY: RETURNS TRUE
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Assembles a new <see cref="MemberAccessor"/> from a <see cref="MemberInfo"/> that is nullable, and confirms that the
/// <see cref="ItemMetadata.IsNullable"/> property is set to <c>true</c>.
/// </summary>
[Fact]
public void IsNullable_NullableProperty_ReturnsTrue() {
var type = typeof(MemberAccessorViewModel);
var memberInfo = type.GetMember(nameof(MemberAccessorViewModel.NullableProperty)).FirstOrDefault()!;
var memberAccessor = new MemberAccessor(memberInfo);
Assert.True(memberAccessor.IsNullable);
}
/*==========================================================================================================================
| TEST: IS NULLABLE: NON-NULLABLE PROPERTY: RETURNS FALSE
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Assembles a new <see cref="MemberAccessor"/> from a <see cref="MemberInfo"/> that is not nullable, and confirms that
/// the <see cref="ItemMetadata.IsNullable"/> property is set to <c>false</c>.
/// </summary>
[Fact]
public void IsNullable_NonNullableProperty_ReturnsFalse() {
var type = typeof(MemberAccessorViewModel);
var memberInfo = type.GetMember(nameof(MemberAccessorViewModel.NonNullableProperty)).FirstOrDefault()!;
var memberAccessor = new MemberAccessor(memberInfo);
Assert.False(memberAccessor.IsNullable);
}
/*==========================================================================================================================
| TEST: IS NULLABLE: NON-NULLABLE REFERENCE PROPERTY: RETURNS TRUE
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Assembles a new <see cref="MemberAccessor"/> from a <see cref="MemberInfo"/> that is a non-nullable reference type,
/// and confirms that the <see cref="ItemMetadata.IsNullable"/> property is set to <c>true</c>.
/// </summary>
/// <remarks>
/// Unfortunately, the .NET reflection libraries don't (yet) have the ability to determine if a nullable reference types
/// are nullable or not, and thus this should always return <c>true</c>.
/// </remarks>
[Fact]
public void IsNullable_NonNullableReferenceProperty_ReturnsTrue() {
var type = typeof(MemberAccessorViewModel);
var memberInfo = type.GetMember(nameof(MemberAccessorViewModel.NonNullableReferenceGetter)).FirstOrDefault()!;
var memberAccessor = new MemberAccessor(memberInfo);
Assert.True(memberAccessor.IsNullable);
}
/*==========================================================================================================================
| TEST: IS GETTABLE: READ-ONLY PROPERTY: RETURNS TRUE
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Assembles a new <see cref="MemberAccessor"/> from a <see cref="MemberInfo"/> that is read-only, and confirms that the
/// <see cref="MemberAccessor.CanRead"/> property is set to <c>true</c>.
/// </summary>
[Fact]
public void IsGettable_ReadOnlyProperty_ReturnsTrue() {
var type = typeof(MemberAccessorViewModel);
var memberInfo = type.GetMember(nameof(MemberAccessorViewModel.ReadOnlyProperty)).FirstOrDefault()!;
var memberAccessor = new MemberAccessor(memberInfo);
Assert.True(memberAccessor.CanRead);
}
/*==========================================================================================================================
| TEST: IS GETTABLE: WRITE-ONLY PROPERTY: RETURNS FALSE
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Assembles a new <see cref="MemberAccessor"/> from a <see cref="MemberInfo"/> that is write-only, and confirms that the
/// <see cref="MemberAccessor.CanRead"/> property is set to <c>false</c>.
/// </summary>
[Fact]
public void IsGettable_WriteOnlyProperty_ReturnsFalse() {
var type = typeof(MemberAccessorViewModel);
var memberInfo = type.GetMember(nameof(MemberAccessorViewModel.WriteOnlyProperty)).FirstOrDefault()!;
var memberAccessor = new MemberAccessor(memberInfo);
Assert.False(memberAccessor.CanRead);
}
/*==========================================================================================================================
| TEST: IS SETTABLE: WRITE-ONLY PROPERTY: RETURNS TRUE
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Assembles a new <see cref="MemberAccessor"/> from a <see cref="MemberInfo"/> that is write-only, and confirms that the
/// <see cref="MemberAccessor.CanRead"/> property is set to <c>false</c>.
/// </summary>
[Fact]
public void IsSettable_WriteOnlyProperty_ReturnsTrue() {
var type = typeof(MemberAccessorViewModel);
var memberInfo = type.GetMember(nameof(MemberAccessorViewModel.WriteOnlyProperty)).FirstOrDefault()!;
var memberAccessor = new MemberAccessor(memberInfo);
Assert.True(memberAccessor.CanWrite);
}
/*==========================================================================================================================
| TEST: IS SETTABLE: READ-ONLY PROPERTY: RETURNS FALSE
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Assembles a new <see cref="MemberAccessor"/> from a <see cref="MemberInfo"/> that is read-only, and confirms that the
/// <see cref="MemberAccessor.CanWrite"/> property is set to <c>false</c>.
/// </summary>
[Fact]
public void IsSettable_ReadOnlyProperty_ReturnsFalse() {
var type = typeof(MemberAccessorViewModel);
var memberInfo = type.GetMember(nameof(MemberAccessorViewModel.ReadOnlyProperty)).FirstOrDefault()!;
var memberAccessor = new MemberAccessor(memberInfo);
Assert.False(memberAccessor.CanWrite);
}
/*==========================================================================================================================
| TEST: GET VALUE: VALID PROPERTY: RETURNS VALUE
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Assembles a new <see cref="MemberAccessor"/> from a <see cref="MemberInfo"/>, and attempts to call <see cref="
/// MemberAccessor.GetValue(Object)"/> with a compliant object, expecting that the correct value will be returned.
/// </summary>
[Fact]
public void GetValue_ValidProperty_ReturnsValue() {
var type = typeof(MemberAccessorViewModel);
var memberInfo = type.GetMember(nameof(MemberAccessorViewModel.NonNullableProperty)).FirstOrDefault()!;
var memberAccessor = new MemberAccessor(memberInfo);
var sourceObject = new MemberAccessorViewModel() { NonNullableProperty = 15 };
var returnObject = memberAccessor.GetValue(sourceObject);
Assert.Equal(sourceObject.NonNullableProperty, returnObject);
}
/*==========================================================================================================================
| TEST: GET VALUE: VALID METHOD: RETURNS VALUE
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Assembles a new <see cref="MemberAccessor"/> from a <see cref="MemberInfo"/>, and attempts to call <see cref="
/// MemberAccessor.GetValue(Object)"/> with a compliant object, expecting that the correct value will be returned.
/// </summary>
[Theory]
[InlineData(15)]
[InlineData(null)]
public void GetValue_ValidMethod_ReturnsValue(int? value) {
var type = typeof(MemberAccessorViewModel);
var memberInfo = type.GetMember(nameof(MemberAccessorViewModel.GetMethod)).FirstOrDefault()!;
var memberAccessor = new MemberAccessor(memberInfo);
var sourceObject = new MemberAccessorViewModel();
sourceObject.SetMethod(value);
var returnObject = memberAccessor.GetValue(sourceObject);
Assert.Equal(value, returnObject);
}
/*==========================================================================================================================
| TEST: GET VALUE: TYPE MISMATCH: THROWS EXCEPTION
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Assembles a new <see cref="MemberAccessor"/> from a <see cref="MemberInfo"/>, and attempts to call <see cref="
/// MemberAccessor.GetValue(Object)"/> with an object that doesn't contain the <see cref="MemberInfo"/>, expecting that an
/// <see cref="ArgumentException"/> will be thrown.
/// </summary>
[Fact]
public void GetValue_TypeMismatch_ThrowsException() {
var type = typeof(MemberAccessorViewModel);
var memberInfo = type.GetMember(nameof(MemberAccessorViewModel.ReadOnlyProperty)).FirstOrDefault()!;
var memberAccessor = new MemberAccessor(memberInfo);
Assert.Throws<ArgumentException>(() =>
memberAccessor.GetValue(new object())
);
}
/*==========================================================================================================================
| TEST: SET VALUE: VALID PROPERTY: SETS VALUE
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Assembles a new <see cref="MemberAccessor"/> from a <see cref="MemberInfo"/>, and attempts to call <see cref="
/// MemberAccessor.SetValue(Object, Object?, Boolean)"/> with a compliant object, expecting that the correct value will be
/// set.
/// </summary>
[Theory]
[InlineData(15)]
[InlineData(null)]
public void SetValue_ValidProperty_SetsValue(int? value) {
var type = typeof(MemberAccessorViewModel);
var memberInfo = type.GetMember(nameof(MemberAccessorViewModel.NullableProperty)).FirstOrDefault()!;
var memberAccessor = new MemberAccessor(memberInfo);
var sourceObject = new MemberAccessorViewModel {
NullableProperty = 5
};
memberAccessor.SetValue(sourceObject, value);
Assert.Equal(value, sourceObject.NullableProperty);
}
/*==========================================================================================================================
| TEST: SET VALUE: VALID METHOD: SETS VALUE
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Assembles a new <see cref="MemberAccessor"/> from a <see cref="MemberInfo"/>, and attempts to call <see cref="
/// MemberAccessor.SetValue(Object, Object?, Boolean)"/> with a compliant object, expecting that the correct value will be
/// set.
/// </summary>
[Theory]
[InlineData(15)]
[InlineData(null)]
public void SetValue_ValidMethod_SetsValue(int? value) {
var type = typeof(MemberAccessorViewModel);
var memberInfo = type.GetMember(nameof(MemberAccessorViewModel.SetMethod)).FirstOrDefault()!;
var memberAccessor = new MemberAccessor(memberInfo);
var sourceObject = new MemberAccessorViewModel();
sourceObject.SetMethod(5);
memberAccessor.SetValue(sourceObject, value);
Assert.Equal(value, sourceObject.GetMethod());
}
/*==========================================================================================================================
| TEST: SET VALUE: MEMBER TYPE MISMATCH: THROWS EXCEPTION
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Assembles a new <see cref="MemberAccessor"/> from a <see cref="MemberInfo"/>, and attempts to call <see cref="
/// MemberAccessor.SetValue(Object, Object?, Boolean)"/> with an object that isn't compatible with the <see cref="
/// MemberInfo.MemberType"/>, expecting that an <see cref="InvalidCastException"/> will be thrown.
/// </summary>
[Fact]
public void SetValue_MemberTypeMismatch_ThrowsException() {
var type = typeof(MemberAccessorViewModel);
var memberInfo = type.GetMember(nameof(MemberAccessorViewModel.NonNullableReferenceGetter)).FirstOrDefault()!;
var memberAccessor = new MemberAccessor(memberInfo);
Assert.Throws<InvalidCastException>(() =>
memberAccessor.SetValue(new MemberAccessorViewModel(), new object())
);
}
/*==========================================================================================================================
| TEST: IS VALID: PROPERTY: RETURNS TRUE
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Validates a <see cref="MemberInfo"/> that is a <see cref="PropertyInfo"/> and confirms that it is accepted.
/// </summary>
[Fact]
public void IsValid_Property_ReturnsTrue() {
var type = typeof(MemberAccessorViewModel);
var memberInfo = type.GetProperty(nameof(MemberAccessorViewModel.NonNullableProperty))!;
Assert.True(MemberAccessor.IsValid(memberInfo));
}
/*==========================================================================================================================
| TEST: IS VALID: GETTER METHOD: RETURNS TRUE
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Validates a <see cref="MemberInfo"/> that is a <see cref="MethodInfo"/> with a return type and no parameters and
/// confirms that it is accepted.
/// </summary>
[Fact]
public void IsValid_GetterMethod_ReturnsTrue() {
var type = typeof(MemberAccessorViewModel);
var memberInfo = type.GetMethod(nameof(MemberAccessorViewModel.GetMethod))!;
Assert.NotNull(memberInfo);
Assert.True(MemberAccessor.IsValid(memberInfo));
}
/*==========================================================================================================================
| TEST: IS VALID: INVALID GETTER METHOD: RETURNS FALSE
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Validates a <see cref="MemberInfo"/> that is a <see cref="MethodInfo"/> with a parameter and confirms that it is
/// rejected.
/// </summary>
/// <remarks>
/// The <see cref="MemberAccessor"/> is only designed to be able to get methods that have a return type and no parameters.
/// </remarks>
[Fact]
public void IsValid_InvalidGetterMethod_ReturnsFalse()
{
var type = typeof(MemberAccessorViewModel);
var memberInfo = type.GetMethod(nameof(MemberAccessorViewModel.InvalidGetMethod))!;
Assert.NotNull(memberInfo);
Assert.False(MemberAccessor.IsValid(memberInfo));
}
/*==========================================================================================================================
| TEST: IS VALID: SETTER METHOD: RETURNS TRUE
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Validates a <see cref="MemberInfo"/> that is a <see cref="MethodInfo"/> with no return type and one parameter and
/// confirms that it is accepted.
/// </summary>
[Fact]
public void IsValid_SetterMethod_ReturnsTrue() {
var type = typeof(MemberAccessorViewModel);
var memberInfo = type.GetMethod(nameof(MemberAccessorViewModel.SetMethod))!;
Assert.True(MemberAccessor.IsValid(memberInfo));
}
/*==========================================================================================================================
| TEST: IS VALID: INVALID SETTER METHOD: RETURNS FALSE
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Validates a <see cref="MemberInfo"/> that is a <see cref="MethodInfo"/> with no return type and two parameters and
/// confirms that it is rejected.
/// </summary>
/// <remarks>
/// The <see cref="MemberAccessor"/> is only designed to be able to set methods that are void and accept a single
/// parameter.
/// </remarks>
[Fact]
public void IsValid_InvalidSetterMethod_ReturnsFalse()
{
var type = typeof(MemberAccessorViewModel);
var memberInfo = type.GetMethod(nameof(MemberAccessorViewModel.InvalidSetMethod))!;
Assert.NotNull(memberInfo);
Assert.False(MemberAccessor.IsValid(memberInfo));
}
/*==========================================================================================================================
| TEST: IS VALID: CONSTRUCTOR: RETURNS FALSE
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Validates a <see cref="MemberInfo"/> that is not a <see cref="PropertyInfo"/> or a <see cref="MethodInfo"/> and
/// confirms that it is rejected.
/// </summary>
[Fact]
public void IsValid_Constructor_ReturnsFalse() {
var type = typeof(MemberAccessorViewModel);
var memberInfo = type.GetConstructor(Array.Empty<Type>())!;
Assert.NotNull(memberInfo);
Assert.False(MemberAccessor.IsValid(memberInfo));
}
} //Class
} //Namespace