-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathContentTypeDescriptorTest.cs
253 lines (201 loc) · 13.8 KB
/
ContentTypeDescriptorTest.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
/*==============================================================================================================================
| Author Ignia, LLC
| Client Ignia, LLC
| Project Topics Library
\=============================================================================================================================*/
using OnTopic.Metadata;
using Xunit;
namespace OnTopic.Tests {
/*============================================================================================================================
| CLASS: CONTENT TYPE DESCRIPTOR TEST
\---------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Provides unit tests for the <see cref="ContentTypeDescriptor"/> class and other types associated with it, such as <see
/// cref="AttributeDescriptor"/>, <see cref="ContentTypeDescriptorCollection"/>, and <see cref="
/// AttributeDescriptorCollection"/>.
/// </summary>
[ExcludeFromCodeCoverage]
public class ContentTypeDescriptorTest {
/*==========================================================================================================================
| TEST: CONTENT TYPE DESCRIPTOR: PERMITTED CONTENT TYPES: RETURNS COLLECTION
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Creates a hierarchy of <see cref="ContentTypeDescriptor"/>s, and ensures that <see cref="ContentTypeDescriptor.
/// PermittedContentTypes"/> returns all <see cref="ContentTypeDescriptor"/> instances from the associated <c>ContentTypes
/// </c> collection in <see cref="Topic.Relationships"/>.
/// </summary>
[Fact]
public void ContentTypeDescriptor_PermittedContentTypes_ReturnsCollection() {
var page = new ContentTypeDescriptor("Page", "ContentTypeDescriptor");
var video = new ContentTypeDescriptor("Video", "ContentTypeDescriptor", page);
page.Relationships.SetValue("ContentTypes", page);
page.Relationships.SetValue("ContentTypes", video);
Assert.Equal(2, page.PermittedContentTypes.Count);
Assert.Empty(video.PermittedContentTypes);
Assert.Contains(page, page.PermittedContentTypes);
Assert.Contains(video, page.PermittedContentTypes);
}
/*==========================================================================================================================
| TEST: CONTENT TYPE DESCRIPTOR: RESET PERMITTED CONTENT TYPES: RETURNS UPDATED
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Creates a hierarchy of <see cref="ContentTypeDescriptor"/>s, and ensures that <see cref="ContentTypeDescriptor.
/// PermittedContentTypes"/> returns all updated <see cref="ContentTypeDescriptor"/> instances from the associated
/// <c>ContentTypes</c> collection in <see cref="Topic.Relationships"/> after calling <see cref="ContentTypeDescriptor.
/// ResetPermittedContentTypes"/>.
/// </summary>
[Fact]
public void ContentTypeDescriptor_ResetPermittedContentTypes_ReturnsUpdated() {
var page = new ContentTypeDescriptor("Page", "ContentTypeDescriptor");
var video = new ContentTypeDescriptor("Video", "ContentTypeDescriptor", page);
var slideshow = new ContentTypeDescriptor("Slideshow", "ContentTypeDescriptor", page);
page.Relationships.SetValue("ContentTypes", page);
page.Relationships.SetValue("ContentTypes", video);
var initialCollection = page.PermittedContentTypes.ToList();
page.ResetPermittedContentTypes();
page.Relationships.Remove("ContentTypes", page);
page.Relationships.SetValue("ContentTypes", slideshow);
Assert.Equal(2, page.PermittedContentTypes.Count);
Assert.Contains(video, page.PermittedContentTypes);
Assert.Contains(slideshow, page.PermittedContentTypes);
Assert.DoesNotContain(page, page.PermittedContentTypes);
Assert.Contains(page, initialCollection);
Assert.DoesNotContain(slideshow, initialCollection);
}
/*==========================================================================================================================
| TEST: CONTENT TYPE DESCRIPTOR: ATTRIBUTE DESCRIPTORS: RETURNS INHERITED
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Creates a hierarchy of <see cref="ContentTypeDescriptor"/>s, and ensures that <see cref="ContentTypeDescriptor.
/// AttributeDescriptors"/> returns all <see cref="AttributeDescriptor"/> instances from the associated <c>Attributes</c>
/// collection in <see cref="Topic.Relationships"/>, as well as those from each <see cref="Topic.Parent"/>.
/// </summary>
[Fact]
public void ContentTypeDescriptor_AttributeDescriptors_ReturnsInherited() {
var page = new ContentTypeDescriptor("Page", "ContentTypeDescriptor");
var pageAttributes = new ContentTypeDescriptor("Attributes", "List", page);
var titleAttribute = new AttributeDescriptor("Title", "AttributeDescriptor", pageAttributes);
var video = new ContentTypeDescriptor("Video", "ContentTypeDescriptor", page);
var videoAttributes = new ContentTypeDescriptor("Attributes", "List", video);
var urlAttribute = new AttributeDescriptor("Url", "AttributeDescriptor", videoAttributes);
Assert.Single(page.AttributeDescriptors);
Assert.Equal(2, video.AttributeDescriptors.Count);
Assert.Contains(titleAttribute, video.AttributeDescriptors);
Assert.Contains(urlAttribute, video.AttributeDescriptors);
}
/*==========================================================================================================================
| TEST: CONTENT TYPE DESCRIPTOR: RESET ATTRIBUTE DESCRIPTORS: RETURNS UPDATED
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Creates a hierarchy of <see cref="ContentTypeDescriptor"/>s, and ensures that <see cref="ContentTypeDescriptor.
/// AttributeDescriptors"/> returns all new <see cref="AttributeDescriptor"/> instances from the associated <c>Attributes
/// </c>collection in <see cref="Topic.Relationships"/>, as well as those from each <see cref="Topic.Parent"/>, after
/// calling <see cref="ContentTypeDescriptor.ResetAttributeDescriptors()"/>.
/// </summary>
[Fact]
public void ContentTypeDescriptor_ResetAttributeDescriptors_ReturnsUpdated() {
var page = new ContentTypeDescriptor("Page", "ContentTypeDescriptor");
var pageAttributes = new ContentTypeDescriptor("Attributes", "List", page);
var titleAttribute = new AttributeDescriptor("Title", "AttributeDescriptor", pageAttributes);
var video = new ContentTypeDescriptor("Video", "ContentTypeDescriptor", page);
var videoAttributes = new ContentTypeDescriptor("Attributes", "List", video);
var urlAttribute = new AttributeDescriptor("Url", "AttributeDescriptor", videoAttributes);
var initialCollection = video.AttributeDescriptors.ToList();
var descriptionAttribute = new AttributeDescriptor("Description", "AttributeDescriptor", pageAttributes);
pageAttributes.Children.Remove(titleAttribute);
page.ResetAttributeDescriptors();
Assert.Single(page.AttributeDescriptors);
Assert.Equal(2, video.AttributeDescriptors.Count);
Assert.Contains(descriptionAttribute, video.AttributeDescriptors);
Assert.Contains(urlAttribute, video.AttributeDescriptors);
Assert.DoesNotContain(titleAttribute, video.AttributeDescriptors);
Assert.Contains(titleAttribute, initialCollection);
Assert.DoesNotContain(descriptionAttribute, initialCollection);
}
/*==========================================================================================================================
| TEST: IS TYPE OF: DERIVED CONTENT TYPE: RETURNS TRUE
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Associates a new topic with several content types, and confirms that the topic is reported as a type of those content
/// types.
/// </summary>
[Fact]
public void IsTypeOf_DerivedContentType_ReturnsTrue() {
var contentType = new ContentTypeDescriptor("Root", "ContentTypeDescriptor");
for (var i = 0; i < 5; i++) {
var childContentType = new ContentTypeDescriptor("ContentType" + i, "ContentTypeDescriptor", contentType);
contentType = childContentType;
}
Assert.True(contentType.IsTypeOf("Root"));
}
/*==========================================================================================================================
| TEST: IS TYPE OF: INVALID CONTENT TYPE: RETURNS FALSE
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Associates a new topic with several content types, and confirms that the topic is not reported as a type of a content
/// type that is not in that chain.
/// </summary>
[Fact]
public void IsTypeOf_InvalidContentType_ReturnsFalse() {
var contentType = new ContentTypeDescriptor("Root", "ContentTypeDescriptor");
for (var i = 0; i < 5; i++) {
var childContentType = new ContentTypeDescriptor("ContentType" + i, "ContentTypeDescriptor", contentType);
contentType = childContentType;
}
Assert.False(contentType.IsTypeOf("DifferentRoot"));
}
/*==========================================================================================================================
| TEST: CONTENT TYPE DESCRIPTOR COLLECTION: CONSTRUCT WITH VALUES: RETURNS VALUES
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Constructs a new <see cref="ContentTypeDescriptorCollection"/> with a <see cref="ContentTypeDescriptor"/> and confirms
/// that all child <see cref="ContentTypeDescriptor"/>s within the topic graph are added.
/// </summary>
[Fact]
public void ContentTypeDescriptorCollection_ConstructWithValues_ReturnsValues() {
var rootContentType = new ContentTypeDescriptor("ContentTypes", "ContentTypeDescriptor");
var pageContentType = new ContentTypeDescriptor("Page", "ContentTypeDescriptor", rootContentType);
_ = new ContentTypeDescriptor("Video", "ContentTypeDescriptor", pageContentType);
var contentTypeCollection = new ContentTypeDescriptorCollection(rootContentType);
Assert.Equal(3, contentTypeCollection.Count);
}
/*==========================================================================================================================
| TEST: CONTENT TYPE DESCRIPTOR COLLECTION: REFRESH: RETURNS UPDATED
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Constructs a new <see cref="ContentTypeDescriptorCollection"/> with a <see cref="ContentTypeDescriptor"/> and confirms
/// that all child <see cref="ContentTypeDescriptor"/>s within the topic graph are added.
/// </summary>
[Fact]
public void ContentTypeDescriptorCollection_Refresh_ReturnsUpdated() {
var rootContentType = new ContentTypeDescriptor("ContentTypes", "ContentTypeDescriptor");
var pageContentType = new ContentTypeDescriptor("Page", "ContentTypeDescriptor", rootContentType);
var videoContentType = new ContentTypeDescriptor("Video", "ContentTypeDescriptor", pageContentType);
var slideshowContentType = new ContentTypeDescriptor("Slideshow", "ContentTypeDescriptor");
var contentTypeCollection = new ContentTypeDescriptorCollection(rootContentType);
pageContentType.Children.Remove(videoContentType);
pageContentType.Children.Add(slideshowContentType);
contentTypeCollection.Refresh(rootContentType);
Assert.Equal(3, contentTypeCollection.Count);
Assert.Contains(slideshowContentType, contentTypeCollection);
Assert.DoesNotContain(videoContentType, contentTypeCollection);
}
/*==========================================================================================================================
| TEST: CONTENT TYPE DESCRIPTOR COLLECTION: CONSTRUCT WITH VALUES: THROWS EXCEPTION
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Constructs a new <see cref="ContentTypeDescriptorCollection"/> with a <see cref="ContentTypeDescriptor"/> and confirms
/// that an exception is thrown if the <see cref="Topic.Key"/> is not set to the expected value of <c>ContentTypes</c>,
/// which represents the root content type.
/// </summary>
[Fact]
public void ContentTypeDescriptorCollection_ConstructWithValues_ThrowsException() {
var rootContentType = new ContentTypeDescriptor("ContentType", "ContentTypeDescriptor");
var pageContentType = new ContentTypeDescriptor("Page", "ContentTypeDescriptor", rootContentType);
_ = new ContentTypeDescriptor("Video", "ContentTypeDescriptor", pageContentType);
Assert.Throws<InvalidOperationException>(() =>
new ContentTypeDescriptorCollection(pageContentType)
);
}
} //Class
} //Namespace