-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathReverseTopicMappingServiceTest.cs
676 lines (533 loc) · 32.6 KB
/
ReverseTopicMappingServiceTest.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
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
/*==============================================================================================================================
| Author Ignia, LLC
| Client Ignia, LLC
| Project Topics Library
\=============================================================================================================================*/
using System.Collections;
using System.ComponentModel.DataAnnotations;
using OnTopic.Data.Caching;
using OnTopic.Mapping;
using OnTopic.Mapping.Reverse;
using OnTopic.Metadata;
using OnTopic.Models;
using OnTopic.Repositories;
using OnTopic.TestDoubles;
using OnTopic.TestDoubles.Metadata;
using OnTopic.Tests.BindingModels;
using OnTopic.Tests.Fixtures;
using Xunit;
namespace OnTopic.Tests {
/*============================================================================================================================
| CLASS: REVERSE TOPIC MAPPING SERVICE TESTS
\---------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Provides unit tests for the <see cref="ReverseTopicMappingService"/> using local DTOs.
/// </summary>
[ExcludeFromCodeCoverage]
[Xunit.Collection("Shared Repository")]
public class ReverseTopicMappingServiceTest {
/*==========================================================================================================================
| PRIVATE VARIABLES
\-------------------------------------------------------------------------------------------------------------------------*/
readonly ITopicRepository _topicRepository;
readonly IReverseTopicMappingService _mappingService;
/*==========================================================================================================================
| CONSTRUCTOR
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Initializes a new instance of the <see cref="ReverseTopicMappingServiceTest"/> with shared resources.
/// </summary>
/// <remarks>
/// This uses the <see cref="StubTopicRepository"/> to provide data, and then <see cref="CachedTopicRepository"/> to
/// manage the in-memory representation of the data. While this introduces some overhead to the tests, the latter is a
/// relatively lightweight façade to any <see cref="ITopicRepository"/>, and prevents the need to duplicate logic for
/// crawling the object graph.
/// </remarks>
public ReverseTopicMappingServiceTest(TopicInfrastructureFixture<StubTopicRepository> fixture) {
/*------------------------------------------------------------------------------------------------------------------------
| Validate parameters
\-----------------------------------------------------------------------------------------------------------------------*/
Contract.Requires(fixture, nameof(fixture));
/*------------------------------------------------------------------------------------------------------------------------
| Establish dependencies
\-----------------------------------------------------------------------------------------------------------------------*/
_topicRepository = fixture.CachedTopicRepository;
_mappingService = new ReverseTopicMappingService(_topicRepository);
}
/*==========================================================================================================================
| TEST: MAP: GENERIC: RETURNS NEW TOPIC
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Establishes a <see cref="ReverseTopicMappingService"/> and tests setting basic scalar values by specifying an explicit
/// type.
/// </summary>
[Fact]
public async Task Map_Generic_ReturnsNewTopic() {
var bindingModel = new TextAttributeTopicBindingModel("Test") {
ContentType = "TextAttributeDescriptor",
Title = "Test Attribute",
DefaultValue = "Hello",
IsRequired = true
};
var target = await _mappingService.MapAsync<TextAttributeDescriptor>(bindingModel).ConfigureAwait(false);
Assert.Equal("Test", target?.Key);
Assert.Equal("TextAttributeDescriptor", target?.ContentType);
Assert.Equal("Test Attribute", target?.Title);
Assert.Equal("Hello", target?.DefaultValue);
Assert.Equal(true, target?.IsRequired);
}
/*==========================================================================================================================
| TEST: MAP: DYNAMIC: RETURNS NEW TOPIC
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Establishes a <see cref="ReverseTopicMappingService"/> and tests setting basic scalar values by allowing it to
/// dynamically determine the instance type.
/// </summary>
[Fact]
public async Task Map_Dynamic_ReturnsNewTopic() {
var bindingModel = new TextAttributeTopicBindingModel("Test") {
ContentType = "TextAttributeDescriptor",
Title = "Test Attribute",
DefaultValue = "Hello",
IsRequired = true
};
var target = (TextAttributeDescriptor?)await _mappingService.MapAsync(bindingModel).ConfigureAwait(false);
Assert.NotNull(target);
Assert.Equal("Test", target?.Key);
Assert.Equal("TextAttributeDescriptor", target?.ContentType);
Assert.Equal("Test Attribute", target?.Title);
Assert.Equal("Hello", target?.DefaultValue);
Assert.Equal(true, target?.IsRequired);
}
/*==========================================================================================================================
| TEST: MAP: EXISTING: RETURNS UPDATED TOPIC
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Establishes a <see cref="ReverseTopicMappingService"/> and tests setting basic scalar values on an existing object,
/// ensuring that all mapped values are overwritten, and unmapped valued are not.
/// </summary>
[Fact]
public async Task Map_Existing_ReturnsUpdatedTopic() {
var bindingModel = new TextAttributeTopicBindingModel("Test") {
ContentType = "TextAttributeDescriptor",
Title = null,
DefaultValue = "World",
IsRequired = false
};
var target = new TextAttributeDescriptor("Test", "TextAttributeDescriptor");
Contract.Assume(target);
target.Title = "Original Attribute";
target.DefaultValue = "Hello";
target.IsRequired = true;
target.IsExtendedAttribute= false;
target.Attributes.SetValue("Description", "Original Description");
target = (TextAttributeDescriptor?)await _mappingService.MapAsync(bindingModel, target).ConfigureAwait(false);
Assert.Equal("Test", target?.Key);
Assert.Equal("TextAttributeDescriptor", target?.ContentType);
Assert.Equal("Test", target?.Title); //Should inherit from "Key" since it will be null
Assert.Equal("World", target?.DefaultValue);
Assert.Equal(false, target?.IsRequired);
Assert.Equal(false, target?.IsExtendedAttribute);
Assert.Equal("Original Description", target?.Attributes.GetValue("Description"));
}
/*==========================================================================================================================
| TEST: MAP: RECORD: RETURNS NEW TOPIC
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Establishes a <see cref="ReverseTopicMappingService"/> and tests mapping a binding model that's based on a C# 9.0
/// record type.
/// </summary>
[Fact]
public async Task Map_Record_ReturnsNewTopic() {
var bindingModel = new RecordTopicBindingModel() {
Key = "Test",
ContentType = "TextAttributeDescriptor"
};
var target = await _mappingService.MapAsync<TextAttributeDescriptor>(bindingModel).ConfigureAwait(false);
Assert.NotNull(target);
Assert.Equal("Test", target?.Key);
Assert.Equal("TextAttributeDescriptor", target?.ContentType);
}
/*==========================================================================================================================
| TEST: MAP: COMPLEX OBJECT: RETURNS FLATTENED TOPIC
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Establishes a <see cref="ReverseTopicMappingService"/> and tests setting values from complex objects.
/// </summary>
[Fact]
public async Task Map_ComplexObject_ReturnsFlattenedTopic() {
var bindingModel = new MapToParentTopicBindingModel {
Key = "Test",
ContentType = "Contact"
};
bindingModel.PrimaryContact.Name = "Jeremy";
bindingModel.AlternateContact.Email = "[email protected]";
bindingModel.BillingContact.Email = "[email protected]";
var target = await _mappingService.MapAsync(bindingModel).ConfigureAwait(false);
Assert.NotNull(target);
Assert.Equal("Jeremy", target?.Attributes.GetValue("Name"));
Assert.Equal("[email protected]", target?.Attributes.GetValue("AlternateEmail"));
Assert.Equal("[email protected]", target?.Attributes.GetValue("BillingContactEmail"));
}
/*==========================================================================================================================
| TEST: MAP: ALTERNATE ATTRIBUTE KEY: RETURNS MAPPED TOPIC
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Establishes a <see cref="ReverseTopicMappingService"/> and tests whether it successfully derives values from the key
/// specified by <see cref="AttributeKeyAttribute"/>.
/// </summary>
[Fact]
public async Task Map_AlternateAttributeKey_ReturnsMappedTopic() {
var bindingModel = new PageTopicBindingModel("Test") {
ContentType = "Page",
Title = "Test Page",
BrowserTitle = "Browser Title"
};
var target = await _mappingService.MapAsync(bindingModel).ConfigureAwait(false);
Assert.Equal("Browser Title", target?.Attributes.GetValue("MetaTitle"));
}
/*==========================================================================================================================
| TEST: MAP: RELATIONSHIPS: RETURNS MAPPED TOPIC
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Establishes a <see cref="ReverseTopicMappingService"/> and tests whether it successfully crawls the relationships.
/// </summary>
[Fact]
public async Task Map_Relationships_ReturnsMappedTopic() {
var bindingModel = new ContentTypeDescriptorTopicBindingModel("Test");
var contentTypes = _topicRepository.GetContentTypeDescriptors();
var topic = new ContentTypeDescriptor("Test", "ContentTypeDescriptor");
topic.Relationships.SetValue("ContentTypes", contentTypes[4]);
for (var i = 0; i < 3; i++) {
bindingModel.ContentTypes.Add(
new() {
UniqueKey = contentTypes[i].GetUniqueKey()
}
);
}
var target = (ContentTypeDescriptor?)await _mappingService.MapAsync(bindingModel, topic).ConfigureAwait(false);
Assert.Equal(3, target?.PermittedContentTypes.Count);
Assert.True(target?.PermittedContentTypes.Contains(contentTypes[0]));
Assert.True(target?.PermittedContentTypes.Contains(contentTypes[1]));
Assert.True(target?.PermittedContentTypes.Contains(contentTypes[2]));
Assert.False(target?.PermittedContentTypes.Contains(contentTypes[3]));
//Revert state
_topicRepository.Delete(topic);
}
/*==========================================================================================================================
| TEST: MAP: RELATIONSHIPS: THROW EXCEPTION
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Establishes a <see cref="ReverseTopicMappingService"/> and tests whether it correctly throws an exception if the
/// <see cref="IAssociatedTopicBindingModel.UniqueKey"/> cannot be located in the repository.
/// </summary>
[Fact]
public async Task Map_Relationships_ThrowException() {
var bindingModel = new ContentTypeDescriptorTopicBindingModel("Test");
var topic = new ContentTypeDescriptor("Test", "ContentTypeDescriptor");
bindingModel.ContentTypes.Add(
new() {
UniqueKey = "Root:Configuration:InvalidKey"
}
);
await Assert.ThrowsAsync<MappingModelValidationException>(async () =>
await _mappingService.MapAsync(bindingModel, topic).ConfigureAwait(false)
).ConfigureAwait(false);
}
/*==========================================================================================================================
| TEST: MAP: NESTED TOPICS: RETURNS MAPPED TOPIC
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Establishes a <see cref="ReverseTopicMappingService"/> and tests whether it successfully crawls the nested topics.
/// </summary>
[Fact]
public async Task Map_NestedTopics_ReturnsMappedTopic() {
var bindingModel = new ContentTypeDescriptorTopicBindingModel("Test");
bindingModel.Attributes.Add(new TextAttributeTopicBindingModel("Attribute1"));
bindingModel.Attributes.Add(new TextAttributeTopicBindingModel("Attribute2"));
bindingModel.Attributes.Add(new TextAttributeTopicBindingModel("Attribute3") { DefaultValue = "New Value" });
var topic = new ContentTypeDescriptor("Test", "ContentTypeDescriptor");
var attributes = new Topic("Attributes", "List", topic);
var attribute3 = new TextAttributeDescriptor("Attribute3", "TextAttributeDescriptor", attributes);
_ = new TextAttributeDescriptor("Attribute4", "TextAttributeDescriptor", attributes);
attribute3.DefaultValue = "Original Value";
var target = (ContentTypeDescriptor?)await _mappingService.MapAsync(bindingModel, topic).ConfigureAwait(false);
Assert.Equal(3, target?.AttributeDescriptors.Count);
Assert.NotNull(target?.AttributeDescriptors.GetValue("Attribute1"));
Assert.NotNull(target?.AttributeDescriptors.GetValue("Attribute2"));
Assert.NotNull(target?.AttributeDescriptors.GetValue("Attribute3"));
Assert.Equal("New Value", target?.AttributeDescriptors.GetValue("Attribute3")?.DefaultValue);
Assert.Null(target?.AttributeDescriptors.GetValue("Attribute4"));
}
/*==========================================================================================================================
| TEST: MAP: TOPIC REFERENCES: RETURNS MAPPED TOPIC
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Establishes a <see cref="ReverseTopicMappingService"/> and tests whether it successfully maps referenced topics.
/// </summary>
[Fact]
public async Task Map_TopicReferences_ReturnsMappedTopic() {
var topic = _topicRepository.Load("Root:Configuration:ContentTypes:Attributes:Title");
Contract.Assume(topic);
var bindingModel = new ReferenceTopicBindingModel("Test") {
BaseTopic = new() {
UniqueKey = topic.GetUniqueKey()
}
};
var target = (TextAttributeDescriptor?)await _mappingService.MapAsync(bindingModel).ConfigureAwait(false);
Assert.NotNull(target?.BaseTopic);
Assert.Equal("Title", target?.BaseTopic?.Key);
Assert.Equal("Text", target?.EditorType);
}
/*==========================================================================================================================
| TEST: MAP: NULL TOPIC REFERENCE: DELETE
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Establishes a <see cref="ReverseTopicMappingService"/> and tests whether it correctly ovewrite any topic references if
/// the <see cref="IAssociatedTopicBindingModel"/> has a <see cref="IAssociatedTopicBindingModel.UniqueKey"/> set to null.
/// </summary>
[Fact]
public async Task Map_NullTopicReference_Delete() {
var topic = _topicRepository.Load("Root:Configuration:ContentTypes:Attributes:Title");
var baseTopic = _topicRepository.Load("Root:Configuration:ContentTypes:Attributes:Key");
Contract.Assume(topic);
topic.BaseTopic = baseTopic;
var bindingModel = new ReferenceTopicBindingModel(topic.Key) {
ContentType = topic.ContentType,
BaseTopic = new() {
UniqueKey = ""
}
};
await _mappingService.MapAsync(bindingModel, topic).ConfigureAwait(false);
Assert.Null(topic.BaseTopic);
}
/*==========================================================================================================================
| TEST: MAP: NULL TOPIC REFERENCE: THROW EXCEPTION
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Establishes a <see cref="ReverseTopicMappingService"/> and tests whether it correctly throws an exception if the <see
/// cref="IAssociatedTopicBindingModel"/> is set to null.
/// </summary>
[Fact]
public async Task Map_NullTopicReference_ThrowException() {
var bindingModel = new ReferenceTopicBindingModel("AttributeDescriptor") {
ContentType = "AttributeDescriptor"
};
await Assert.ThrowsAsync<MappingModelValidationException>(async () =>
await _mappingService.MapAsync(bindingModel).ConfigureAwait(false)
).ConfigureAwait(false);
}
/*==========================================================================================================================
| TEST: MAP: NULL TOPIC REFERENCE KEY: THROW EXCEPTION
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Establishes a <see cref="ReverseTopicMappingService"/> and tests whether it correctly throws an exception if the <see
/// cref="IAssociatedTopicBindingModel.UniqueKey"/> is set to null.
/// </summary>
[Fact]
public async Task Map_NullTopicReferenceKey_ThrowException() {
var bindingModel = new ReferenceTopicBindingModel("AttributeDescriptor") {
ContentType = "AttributeDescriptor",
BaseTopic = new()
};
await Assert.ThrowsAsync<MappingModelValidationException>(async () =>
await _mappingService.MapAsync(bindingModel).ConfigureAwait(false)
).ConfigureAwait(false);
}
/*==========================================================================================================================
| TEST: MAP: TOPIC REFERENCES: THOWS EXCEPTION
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Establishes a <see cref="ReverseTopicMappingService"/> and tests whether it correctly throws an exception if the
/// <see cref="IAssociatedTopicBindingModel.UniqueKey"/> cannot be resolved in the supplied <see cref="ITopicRepository"
/// />.
/// </summary>
[Fact]
public async Task Map_TopicReferences_ThrowException() {
var bindingModel = new ReferenceTopicBindingModel("Test") {
BaseTopic = new() {
UniqueKey = "Root:InvalidKey"
}
};
await Assert.ThrowsAsync<MappingModelValidationException>(async () =>
await _mappingService.MapAsync(bindingModel).ConfigureAwait(false)
).ConfigureAwait(false);
}
/*==========================================================================================================================
| TEST: MAP: VALID REQUIRED PROPERTY: IS MAPPED
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Maps a content type that has a required property. Ensures that an error is thrown if it is not set.
/// </summary>
[Fact]
public async Task Map_ValidRequiredProperty_IsMapped() {
var bindingModel = new PageTopicBindingModel("Test");
await Assert.ThrowsAsync<ValidationException>(async () =>
await _mappingService.MapAsync(bindingModel).ConfigureAwait(false)
).ConfigureAwait(false);
}
/*==========================================================================================================================
| TEST: MAP: NULL PROPERTY: MAPS DEFAULT VALUE
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Maps a content type that has default properties. Ensures that each is set appropriately.
/// </summary>
[Fact]
public async Task Map_NullProperty_MapsDefaultValue() {
var bindingModel = new PageTopicBindingModel("Test") {
Title = "Required Title"
};
var target = await _mappingService.MapAsync(bindingModel).ConfigureAwait(false);
Assert.Equal("Default page description", target?.Attributes.GetValue("MetaDescription"));
}
/*==========================================================================================================================
| TEST: MAP: EXCEEDS MINIMUM VALUE: THROWS VALIDATION EXCEPTION
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Maps a content type that has minimum value properties. Ensures that an error is thrown if the minimum is not met.
/// </summary>
[Fact]
public async Task Map_ExceedsMinimumValue_ThrowsValidationException() {
var bindingModel = new MinimumLengthPropertyTopicBindingModel("Test") {
Title = "Hello World"
};
await Assert.ThrowsAsync <ValidationException>(async () =>
await _mappingService.MapAsync(bindingModel).ConfigureAwait(false)
).ConfigureAwait(false);
}
/*==========================================================================================================================
| TEST: MAP: INVALID CHILDREN PROPERTY: THROWS INVALID OPERATION EXCEPTION
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Maps a content type that has children property. This is invalid, and expected to throw an <see
/// cref="InvalidOperationException"/>.
/// </summary>
[Fact]
public async Task Map_InvalidChildrenProperty_ThrowsInvalidOperationException() {
var bindingModel = new InvalidChildrenTopicBindingModel("Test");
await Assert.ThrowsAsync<MappingModelValidationException>(async () =>
await _mappingService.MapAsync(bindingModel).ConfigureAwait(false)
).ConfigureAwait(false);
}
/*==========================================================================================================================
| TEST: MAP: INVALID PARENT PROPERTY: THROWS INVALID OPERATION EXCEPTION
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Maps a content type that has parent property. This is invalid, and expected to throw an <see
/// cref="InvalidOperationException"/>.
/// </summary>
[Fact]
public async Task Map_InvalidParentProperty_ThrowsInvalidOperationException() {
var bindingModel = new InvalidParentTopicBindingModel("Test") {
Parent = new("Test", "Page")
};
await Assert.ThrowsAsync<MappingModelValidationException>(async () =>
await _mappingService.MapAsync(bindingModel).ConfigureAwait(false)
).ConfigureAwait(false);
}
/*==========================================================================================================================
| TEST: MAP: INVALID ATTRIBUTE: THROWS INVALID OPERATION EXCEPTION
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Maps a content type that has a property that doesn't map to any attributes. This is invalid, and expected to throw an
/// <see cref="InvalidOperationException"/>.
/// </summary>
[Fact]
public async Task Map_InvalidAttribute_ThrowsInvalidOperationException() {
var bindingModel = new InvalidAttributeTopicBindingModel("Test");
await Assert.ThrowsAsync<MappingModelValidationException>(async () =>
await _mappingService.MapAsync(bindingModel).ConfigureAwait(false)
).ConfigureAwait(false);
}
/*==========================================================================================================================
| TEST: MAP: INVALID RELATIONSHIP BASE TYPE: THROWS INVALID OPERATION EXCEPTION
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Maps a content type that has a relationship whose type doesn't implement <see cref="IAssociatedTopicBindingModel"/>.
/// This is invalid, and expected to throw an <see cref="InvalidOperationException"/>.
/// </summary>
[Fact]
public async Task Map_InvalidRelationshipBaseType_ThrowsInvalidOperationException() {
var bindingModel = new InvalidRelationshipBaseTypeTopicBindingModel("Test");
await Assert.ThrowsAsync<MappingModelValidationException>(async () =>
await _mappingService.MapAsync(bindingModel).ConfigureAwait(false)
).ConfigureAwait(false);
}
/*==========================================================================================================================
| TEST: MAP: INVALID RELATIONSHIP TYPE: THROWS INVALID OPERATION EXCEPTION
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Maps a content type that has a relationship with an invalid <see cref="CollectionType"/>—i.e., it refers to <see cref=
/// "CollectionType.NestedTopics"/>, even though the property is associated with a <see cref="CollectionType.Relationship"
/// />. This is invalid, and expected to throw an <see cref="InvalidOperationException"/>.
/// </summary>
[Fact]
public async Task Map_InvalidRelationshipType_ThrowsInvalidOperationException() {
var bindingModel = new InvalidRelationshipTypeTopicBindingModel("Test");
await Assert.ThrowsAsync<MappingModelValidationException>(async () =>
await _mappingService.MapAsync(bindingModel).ConfigureAwait(false)
).ConfigureAwait(false);
}
/*==========================================================================================================================
| TEST: MAP: INVALID RELATIONSHIP LIST TYPE: THROWS INVALID OPERATION EXCEPTION
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Maps a content type that has a relationship that implements an invalid collection type—i.e., it implements a <see
/// cref="Dictionary{TKey, TValue}"/>, even though relationships are expected to return a type implementing <see
/// cref="IList"/>. This is invalid, and expected to throw an <see cref="InvalidOperationException"/>.
/// </summary>
[Fact]
public async Task Map_InvalidRelationshipListType_ThrowsInvalidOperationException() {
var bindingModel = new InvalidRelationshipListTypeTopicBindingModel("Test");
await Assert.ThrowsAsync<MappingModelValidationException>(async () =>
await _mappingService.MapAsync(bindingModel).ConfigureAwait(false)
).ConfigureAwait(false);
}
/*==========================================================================================================================
| TEST: MAP: INVALID NESTED TOPIC LIST TYPE: THROWS INVALID OPERATION EXCEPTION
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Maps a content type that has a nested topic that implements an invalid collection type—i.e., it implements a <see
/// cref="Dictionary{TKey, TValue}"/>, even though nestd topics are expected to return a type implementing <see cref="
/// IList"/>. This is invalid, and expected to throw an <see cref="InvalidOperationException"/>.
/// </summary>
[Fact]
public async Task Map_InvalidNestedTopicListType_ThrowsInvalidOperationException() {
var bindingModel = new InvalidNestedTopicListTypeTopicBindingModel("Test");
await Assert.ThrowsAsync<MappingModelValidationException>(async () =>
await _mappingService.MapAsync(bindingModel).ConfigureAwait(false)
).ConfigureAwait(false);
}
/*==========================================================================================================================
| TEST: MAP: INVALID TOPIC REFERENCE TYPE: THROWS INVALID OPERATION EXCEPTION
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Maps a content type that has a reference that implements an invalid type—i.e., it implements a <see cref="
/// TopicViewModel"/>, even though references are expected to return a type implementing <see cref="
/// IAssociatedTopicBindingModel"/>. This is invalid, and expected to throw an <see cref="InvalidOperationException"/>.
/// </summary>
[Fact]
public async Task Map_InvalidTopicReferenceType_ThrowsInvalidOperationException() {
var bindingModel = new InvalidReferenceTypeTopicBindingModel("Test");
await Assert.ThrowsAsync<MappingModelValidationException>(async () =>
await _mappingService.MapAsync(bindingModel).ConfigureAwait(false)
).ConfigureAwait(false);
}
/*==========================================================================================================================
| TEST: MAP: DISABLED PROPERTY: IS NOT MAPPED
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Maps a content type that has a property that doesn't map to any attributes. This is invalid. However, the property
/// is also decorated with the <see cref="DisableMappingAttribute"/>, which should prevent the <see
/// cref="ReverseTopicMappingService"/> from validating or mapping the property.
/// </summary>
[Fact]
public async Task Map_DisabledProperty_IsNotMapped() {
var bindingModel = new DisabledAttributeTopicBindingModel("Test") {
UnmappedAttribute = "Hello World"
};
var target = await _mappingService.MapAsync(bindingModel).ConfigureAwait(false);
Assert.Null(target?.Attributes.GetValue("UnmappedAttribute", null));
}
} //Class
} //Namespace