-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTopicReferenceCollectionTest.cs
474 lines (372 loc) · 24.1 KB
/
TopicReferenceCollectionTest.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
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
/*==============================================================================================================================
| Author Ignia, LLC
| Client Ignia, LLC
| Project Topics Library
\=============================================================================================================================*/
using OnTopic.Associations;
using OnTopic.Tests.Entities;
using OnTopic.Collections.Specialized;
using Xunit;
namespace OnTopic.Tests {
/*============================================================================================================================
| CLASS: TOPIC REFERENCE COLLECTION TEST
\---------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Provides unit tests for the <see cref="TopicReferenceCollection"/>, with a particular emphasis on the custom features
/// such as <see cref="TrackedRecordCollection{TItem, TValue, TAttribute}.IsDirty()"/>, <see cref="TrackedRecordCollection{
/// TItem, TValue, TAttribute}.GetValue(String, Boolean)"/>, <see cref="TrackedRecordCollection{TItem, TValue, TAttribute}.
/// SetValue(String, TValue, Boolean?, DateTime?)"/>, and the cross-referencing of reciprocal values in the <see cref="
/// Topic.IncomingRelationships"/> property.
/// </summary>
[ExcludeFromCodeCoverage]
public class TopicReferenceCollectionTest {
/*==========================================================================================================================
| TEST: ADD: NEW REFERENCE: IS DIRTY
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Assembles a new <see cref="TopicReferenceCollection"/>, adds a new <see cref="Topic"/> reference, and confirms that
/// <see cref="TrackedRecordCollection{TItem, TValue, TAttribute}.IsDirty()"/> is correctly set.
/// </summary>
[Fact]
public void Add_NewReference_IsDirty() {
var topic = new Topic("Topic", "Page");
var reference = new Topic("Reference", "Page");
topic.References.SetValue("Reference", reference);
Assert.Single(topic.References);
Assert.True(topic.References.IsDirty());
}
/*==========================================================================================================================
| TEST: SET VALUE: NEW REFERENCE: NOT DIRTY
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Assembles a new <see cref="TopicReferenceCollection"/>, adds a new <see cref="Topic"/> reference using <see cref="
/// TrackedRecordCollection{TItem, TValue, TAttribute}.SetValue(String, TValue, Boolean?, DateTime?)"/>, and confirms that
/// <see cref="TrackedRecordCollection{TItem, TValue, TAttribute}.IsDirty()"/> is not set.
/// </summary>
[Fact]
public void SetValue_NewReference_NotDirty() {
var topic = new Topic("Topic", "Page", null, 1);
var reference = new Topic("Reference", "Page", null, 2);
topic.References.SetValue("Reference", reference, false);
Assert.Single(topic.References);
Assert.False(topic.References.IsDirty());
}
/*==========================================================================================================================
| TEST: REMOVE: EXISTING REFERENCE: IS DIRTY
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Assembles a new <see cref="TopicReferenceCollection"/> with a topic reference, removes that reference using <see cref=
/// "TrackedRecordCollection{TItem, TValue, TAttribute}.RemoveItem(Int32)"/>, and confirms that <see cref="
/// TrackedRecordCollection{TItem, TValue, TAttribute}.IsDirty()"/> is set.
/// </summary>
[Fact]
public void Remove_ExistingReference_IsDirty() {
var topic = new Topic("Topic", "Page", null, 1);
var reference = new Topic("Reference", "Page");
topic.References.SetValue("Reference", reference, false);
topic.References.Remove("Reference");
Assert.Empty(topic.References);
Assert.True(topic.References.IsDirty());
}
/*==========================================================================================================================
| TEST: CLEAR: EXISTING REFERENCES: IS DIRTY
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Assembles a new <see cref="TopicReferenceCollection"/>, adds a new <see cref="Topic"/> reference using <see cref="
/// TrackedRecordCollection{TItem, TValue, TAttribute}.SetValue(String, TValue, Boolean?, DateTime?)"/>, calls <see cref="
/// TrackedRecordCollection{TItem, TValue, TAttribute}.ClearItems()"/> and confirms that <see cref="
/// TrackedRecordCollection{TItem, TValue, TAttribute}.IsDirty()"/> is set. Also confirms that items are correctly removed
/// from recipricol <see cref="Topic.IncomingRelationships"/>.
/// </summary>
[Fact]
public void Clear_ExistingReferences_IsDirty() {
var topic = new Topic("Topic", "Page", null, 1);
var reference = new Topic("Reference", "Page");
topic.References.Add(new("Reference1", reference, false));
topic.References.Add(new("Reference2", null, false));
topic.References.Clear();
Assert.Empty(topic.References);
Assert.Empty(reference.IncomingRelationships.GetValues("Reference"));
Assert.True(topic.References.IsDirty());
}
/*==========================================================================================================================
| TEST: ADD: NEW TOPIC: IS DIRTY
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Assembles a new <see cref="TopicReferenceCollection"/> and adds a new <see cref="Topic"/> reference using <see cref="
/// KeyedCollection{TKey, TItem}.InsertItem(Int32, TItem)"/> with <see cref="TrackedRecord{T}.IsDirty"/> set to <c>false
/// </c>, confirming that <see cref="TrackedRecordCollection{TItem, TValue, TAttribute}.IsDirty()"/> remains <c>true</c>
/// since the target <see cref="Topic"/> is unsaved.
/// </summary>
[Fact]
public void Add_NewTopic_IsDirty() {
var topic = new Topic("Topic", "Page", null, 1);
var reference = new Topic("Reference", "Page");
topic.References.SetValue("Reference", reference, false);
Assert.True(topic.References.IsDirty());
}
/*==========================================================================================================================
| TEST: ADD: NEW REFERENCE: INCOMING RELATIONSHIP SET
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Assembles a new <see cref="TopicReferenceCollection"/>, adds a new <see cref="Topic"/> reference using <see cref="
/// TrackedRecordCollection{TItem, TValue, TAttribute}.SetValue(String, TValue, Boolean?, DateTime?)"/>, and confirms that
/// <see cref="Topic.IncomingRelationships"/> reference is correctly set.
/// </summary>
[Fact]
public void Add_NewReference_IncomingRelationshipSet() {
var topic = new Topic("Topic", "Page");
var reference = new Topic("Reference", "Page");
topic.References.SetValue("Reference", reference);
Assert.Single(reference.IncomingRelationships.GetValues("Reference"));
}
/*==========================================================================================================================
| TEST: REMOVE: EXISTING REFERENCE: INCOMING RELATIONSHIP REMOVED
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Assembles a new <see cref="TopicReferenceCollection"/>, adds a new <see cref="Topic"/> reference using <see cref="
/// TrackedRecordCollection{TItem, TValue, TAttribute}.SetValue(String, TValue, Boolean?, DateTime?)"/>, removes the
/// reference using <see cref="TrackedRecordCollection{TItem, TValue, TAttribute}.RemoveItem(Int32)"/>, and confirms that
/// the <see cref="Topic.IncomingRelationships"/> reference is correctly removed as well.
/// </summary>
/// <remarks>
/// This calls <see cref="KeyedCollection{TKey, TItem}.Remove(TKey)"/> twice. The first to confirm that the <see cref="
/// Topic.IncomingRelationships"/> is removed, the second to ensure that the attempt to call <see cref="Topic.
/// IncomingRelationships"/> isn't disrupted by the fact that the <see cref="TrackedRecord{T}.Value"/> is <c>null</c>.
/// </remarks>
[Fact]
public void Remove_ExistingReference_IncomingRelationshipRemoved() {
var topic = new Topic("Topic", "Page");
var reference = new Topic("Reference", "Page");
topic.References.Add(new("Reference1", reference, false));
topic.References.Add(new("Reference2", null, false));
topic.References.Remove("Reference1");
topic.References.Remove("Reference2");
Assert.Empty(reference.IncomingRelationships.GetValues("Reference"));
}
/*==========================================================================================================================
| TEST: SET VALUE: EXISTING REFERENCE: TOPIC UPDATED
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Assembles a new <see cref="TopicReferenceCollection"/>, adds a new <see cref="Topic"/> reference using <see cref="
/// TrackedRecordCollection{TItem, TValue, TAttribute}.SetValue(String, TValue, Boolean?, DateTime?)"/>, updates the
/// reference using <see cref="TrackedRecordCollection{TItem, TValue, TAttribute}.SetValue(String, TValue, Boolean?,
/// DateTime?)"/>, and confirms that the <see cref="Topic"/> reference and <see cref="Topic.IncomingRelationships"/> are
/// correctly updated.
/// </summary>
[Fact]
public void SetValue_ExistingReference_TopicUpdated() {
var topic = new Topic("Topic", "Page");
var reference = new Topic("Reference", "Page");
var newReference = new Topic("NewReference", "Page");
topic.References.SetValue("Reference", reference);
topic.References.SetValue("Reference", newReference);
Assert.Equal(newReference, topic.References.GetValue("Reference"));
Assert.Empty(reference.IncomingRelationships.GetValues("Reference"));
Assert.Single(newReference.IncomingRelationships.GetValues("Reference"));
}
/*==========================================================================================================================
| TEST: SET VALUE: NULL REFERENCE: TOPIC UPDATED
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Assembles a new <see cref="TopicReferenceCollection"/>, adds a new <see cref="Topic"/> reference using <see cref="
/// TrackedRecordCollection{TItem, TValue, TAttribute}.SetValue(String, TValue, Boolean?, DateTime?)"/>, updates the
/// reference using <see cref="TrackedRecordCollection{TItem, TValue, TAttribute}.SetValue(String, TValue, Boolean?,
/// DateTime?)"/> with a <c>null</c> value, and confirms that the <see cref="Topic"/> reference and <see cref="Topic.
/// IncomingRelationships"/> are correctly removed.
/// </summary>
/// <remarks>
/// This calls <see cref="TrackedRecordCollection{TItem, TValue, TAttribute}.SetValue(String, TValue, Boolean?, DateTime?)
/// "/> twice. The first to confirm that the <see cref="Topic.IncomingRelationships"/> is set, the second to ensure that
/// the attempt to call <see cref="Topic.IncomingRelationships"/> isn't disrupted by the fact that the <see cref="
/// TrackedRecord{T}.Value"/> will now be <c>null</c>.
/// </remarks>
[Fact]
public void SetValue_ExistingReference_IncomingRelationshipsUpdates() {
var topic = new Topic("Topic", "Page");
var reference = new Topic("Reference", "Page");
topic.References.SetValue("Reference", reference);
topic.References.SetValue("Reference", null);
topic.References.SetValue("Reference", null);
Assert.False(topic.References.Contains("Reference"));
Assert.Null(topic.References.GetValue("Reference"));
Assert.Equal(0, reference.IncomingRelationships.GetValues("Reference")?.Count);
}
/*==========================================================================================================================
| TEST: SET VALUE: NULL REFERENCE: TOPIC REMOVED
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Assembles a new <see cref="TopicReferenceCollection"/>, adds a new <see cref="Topic"/> reference using <see cref="
/// TrackedRecordCollection{TItem, TValue, TAttribute}.SetValue(String, TValue, Boolean?, DateTime?)"/>, updates the
/// reference with a null value using <see cref="TrackedRecordCollection{TItem, TValue, TAttribute}.SetValue(String,
/// TValue, Boolean?, DateTime?)"/>, and confirms that the <see cref="Topic"/> reference is correctly removed.
/// </summary>
[Fact]
public void SetValue_NullReference_TopicRemoved() {
var topic = new Topic("Topic", "Page");
var reference = new Topic("Reference", "Page");
topic.References.SetValue("Reference", reference);
topic.References.SetValue("Reference", null);
Assert.Empty(topic.References);
Assert.Null(topic.References.GetValue("Reference"));
}
/*==========================================================================================================================
| TEST: ADD: NEW REFERENCE: TOPIC IS DIRTY
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Assembles a new <see cref="TopicReferenceCollection"/>, adds a new <see cref="Topic"/> reference, and confirms that
/// <see cref="Topic.IsDirty(Boolean, Boolean)"/> is correctly set.
/// </summary>
[Fact]
public void Add_NewReference_TopicIsDirty() {
var topic = new Topic("Topic", "Page", null, 1);
var reference = new Topic("Reference", "Page", null, 2);
topic.References.SetValue("Reference", reference);
Assert.True(topic.IsDirty(true));
Assert.False(reference.IsDirty(true));
}
/*==========================================================================================================================
| TEST: GET TOPIC: EXISTING REFERENCE: RETURNS TOPIC
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Assembles a new <see cref="TopicReferenceCollection"/>, adds a new <see cref="Topic"/> reference, and confirms that
/// <see cref="TrackedRecordCollection{TItem, TValue, TAttribute}.GetValue(String, Boolean)"/> correctly returns the <see
/// cref="Topic"/>.
/// </summary>
[Fact]
public void GetTopic_ExistingReference_ReturnsTopic() {
var topic = new Topic("Topic", "Page");
var reference = new Topic("Reference", "Page");
topic.References.SetValue("Reference", reference);
Assert.Equal(reference, topic.References.GetValue("Reference"));
}
/*==========================================================================================================================
| TEST: GET TOPIC: MISSING REFERENCE: RETURNS NULL
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Assembles a new <see cref="TopicReferenceCollection"/>, adds a new <see cref="Topic"/> reference, and confirms that
/// <see cref="TrackedRecordCollection{TItem, TValue, TAttribute}.GetValue(String, Boolean)"/> correctly returns <c>null
/// </c> if an incorrect <c>referencedKey</c> is entered.
/// </summary>
[Fact]
public void GetTopic_MissingReference_ReturnsNull() {
var topic = new Topic("Topic", "Page");
var reference = new Topic("Reference", "Page");
topic.References.SetValue("Reference", reference);
Assert.Null(topic.References.GetValue("MissingReference"));
}
/*==========================================================================================================================
| TEST: GET TOPIC: INHERITED REFERENCE: RETURNS TOPIC
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Assembles a new <see cref="TopicReferenceCollection"/> with a <see cref="Topic.BaseTopic"/>, adds a new <see cref="
/// Topic"/> reference to the <see cref="Topic.BaseTopic"/>, and confirms that <see cref="TrackedRecordCollection{TItem,
/// TValue, TAttribute}.GetValue(String, Boolean)"/> correctly returns the related topic reference, inheriting from both
/// <see cref="Topic.Parent"/> and <see cref="Topic.BaseTopic"/>.
/// </summary>
[Fact]
public void GetTopic_InheritedReference_ReturnsTopic() {
var parentTopic = new Topic("Parent", "Page");
var topic = new Topic("Topic", "Page", parentTopic);
var baseTopic = new Topic("Base", "Page");
var reference = new Topic("Reference", "Page");
parentTopic.BaseTopic = baseTopic;
baseTopic.References.SetValue("Reference", reference);
Assert.Equal(reference, topic.References.GetValue("Reference", true));
}
/*==========================================================================================================================
| TEST: GET TOPIC: INHERITED REFERENCE: RETURNS NULL
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Assembles a new <see cref="TopicReferenceCollection"/> with a <see cref="Topic.BaseTopic"/>, adds a new <see cref="
/// Topic"/> reference to the <see cref="Topic.BaseTopic"/>, and confirms that <see cref="TrackedRecordCollection{TItem,
/// TValue, TAttribute}.GetValue(String, Boolean)"/> correctly returns <c>null</c> if an incorrect <c>referencedKey</c> is
/// entered.
/// </summary>
[Fact]
public void GetTopic_InheritedReference_ReturnsNull() {
var topic = new Topic("Topic", "Page");
var baseTopic = new Topic("Base", "Page");
var reference = new Topic("Reference", "Page");
topic.BaseTopic = baseTopic;
baseTopic.References.SetValue("Reference", reference);
Assert.Null(topic.References.GetValue("MissingReference", true));
}
/*==========================================================================================================================
| TEST: GET TOPIC: INHERITED REFERENCE WITHOUT INHERITANCE: RETURNS NULL
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Assembles a new <see cref="TopicReferenceCollection"/> with a <see cref="Topic.BaseTopic"/>, adds a new <see cref="
/// Topic"/> reference to the <see cref="Topic.BaseTopic"/>, and confirms that <see cref="TrackedRecordCollection{TItem,
/// TValue, TAttribute}.GetValue(String, Boolean)"/> correctly returns <c>null</c> if <c>inheritFromBase</c> is set to
/// <c>false</c>.
/// </summary>
[Fact]
public void GetTopic_InheritedReferenceWithoutInheritance_ReturnsNull() {
var topic = new Topic("Topic", "Page");
var baseTopic = new Topic("Base", "Page");
var reference = new Topic("Reference", "Page");
topic.BaseTopic = baseTopic;
baseTopic.References.SetValue("Reference", reference);
Assert.Null(topic.References.GetValue("Reference", null, false, false));
}
/*==========================================================================================================================
| TEST: ADD: TOPIC REFERENCE WITH BUSINESS LOGIC: IS RETURNED
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Sets a topic reference on a topic instance; ensures it is routed through the corresponding property and correctly
/// retrieved.
/// </summary>
[Fact]
public void Add_TopicReferenceWithBusinessLogic_IsReturned() {
var topic = new CustomTopic("Test", "Page");
var reference = new Topic("Reference", "Page");
topic.References.SetValue("TopicReference", reference);
Assert.Equal(reference, topic.TopicReference);
}
/*==========================================================================================================================
| TEST: ADD: TOPIC REFERENCE WITH BUSINESS LOGIC: REMOVES REFERENCE
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Sets a topic reference on a topic instance, then sets it to null, ensuring that it is correctly removed.
/// </summary>
[Fact]
public void Add_TopicReferenceWithBusinessLogic_RemovedReference() {
var topic = new CustomTopic("Test", "Page");
var reference = new Topic("Reference", "Page");
topic.References.SetValue("BaseTopic", reference);
topic.References.SetValue("BaseTopic", null);
Assert.Null(topic.TopicReference);
}
/*==========================================================================================================================
| TEST: ADD: TOPIC REFERENCE WITH BUSINESS LOGIC: THROWS EXCEPTION
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Sets a topic reference on a topic instance with an invalid value; ensures an <see cref="ArgumentOutOfRangeException"/>
/// is thrown.
/// </summary>
[Fact]
public void Add_TopicReferenceWithBusinessLogic_ThrowsException() {
var topic = new CustomTopic("Test", "Page");
var reference = new Topic("Reference", "Container");
Assert.Throws<ArgumentOutOfRangeException>(() =>
topic.References.SetValue("TopicReference", reference)
);
}
/*==========================================================================================================================
| TEST: SET: TOPIC REFERENCE WITH BUSINESS LOGIC: THROWS EXCEPTION
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Sets a topic reference on a topic instance with an invalid value; ensures an <see cref="ArgumentOutOfRangeException"/>
/// is thrown.
/// </summary>
[Fact]
public void Set_TopicReferenceWithBusinessLogic_ThrowsException() {
var topic = new CustomTopic("Test", "Page");
var reference = new Topic("Reference", "Container");
Assert.Throws<ArgumentOutOfRangeException>(() =>
topic.References.Add(new("TopicReference", reference))
);
}
} //Class
} //Namespace