-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTopicViewComponentTest.cs
262 lines (215 loc) · 13.3 KB
/
TopicViewComponentTest.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
/*==============================================================================================================================
| Author Ignia, LLC
| Client Ignia, LLC
| Project Topics Library
\=============================================================================================================================*/
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc.Rendering;
using Microsoft.AspNetCore.Mvc.ViewComponents;
using Microsoft.AspNetCore.Routing;
using OnTopic.AspNetCore.Mvc.Components;
using OnTopic.AspNetCore.Mvc.Host.Components;
using OnTopic.AspNetCore.Mvc.Models;
using OnTopic.Data.Caching;
using OnTopic.Mapping;
using OnTopic.Mapping.Hierarchical;
using OnTopic.Repositories;
using OnTopic.ViewModels;
namespace OnTopic.Tests {
/*============================================================================================================================
| CLASS: TOPIC VIEW COMPONENT TEST
\---------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Provides unit tests for the <see cref="NavigationTopicViewComponentBase{T}"/>, and derived classes that are part of
/// the <see cref="OnTopic.AspNetCore.Mvc"/> namespace.
/// </summary>
[ExcludeFromCodeCoverage]
[Collection("Data Tests")]
public class TopicViewComponentTest: IClassFixture<StubTopicRepository> {
/*==========================================================================================================================
| PRIVATE VARIABLES
\-------------------------------------------------------------------------------------------------------------------------*/
readonly ITopicRepository _topicRepository;
readonly ITopicMappingService _topicMappingService;
readonly Topic _topic;
readonly ViewComponentContext _context;
/*==========================================================================================================================
| HIERARCHICAL TOPIC MAPPING SERVICE
\-------------------------------------------------------------------------------------------------------------------------*/
private readonly IHierarchicalTopicMappingService<NavigationTopicViewModel> _hierarchicalMappingService;
/*==========================================================================================================================
| CONSTRUCTOR
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Initializes a new instance of the <see cref="TopicControllerTest"/> 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. In addition, it initializes a shared <see cref="Topic"/> reference to use for the various
/// tests.
/// </remarks>
public TopicViewComponentTest(StubTopicRepository topicRepository) {
/*------------------------------------------------------------------------------------------------------------------------
| Establish dependencies
\-----------------------------------------------------------------------------------------------------------------------*/
_topicRepository = new CachedTopicRepository(topicRepository);
_topic = _topicRepository.Load("Root:Web:Web_3:Web_3_0")!;
_topicMappingService = new TopicMappingService(_topicRepository, new TopicViewModelLookupService());
/*------------------------------------------------------------------------------------------------------------------------
| Establish hierarchical topic mapping service
\-----------------------------------------------------------------------------------------------------------------------*/
_hierarchicalMappingService = new CachedHierarchicalTopicMappingService<NavigationTopicViewModel>(
new HierarchicalTopicMappingService<NavigationTopicViewModel>(
_topicRepository,
_topicMappingService
)
);
/*------------------------------------------------------------------------------------------------------------------------
| Establish view model context
\-----------------------------------------------------------------------------------------------------------------------*/
_context = GetViewComponentContext(_topic.GetWebPath());
}
/*==========================================================================================================================
| METHOD: GET VIEW COMPONENT CONTEXT
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Establishes a new <see cref="ViewComponentContext"/> based on a given <paramref name="webPath"/>.
/// </summary>
private static ViewComponentContext GetViewComponentContext(string webPath) {
var routes = new RouteData();
routes.Values.Add("rootTopic", "Web");
routes.Values.Add("path", webPath);
var viewContext = new ViewContext() {
HttpContext = new DefaultHttpContext(),
RouteData = routes
};
var viewComponentContext = new ViewComponentContext() {
ViewContext = viewContext
};
return viewComponentContext;
}
/*==========================================================================================================================
| TEST: MENU: INVOKE: RETURNS NAVIGATION VIEW MODEL
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Loads a new <see cref="MenuViewComponent"/> and confirms the resulting values.
/// </summary>
[Fact]
public async Task Menu_Invoke_ReturnsNavigationViewModel() {
var viewComponent = new MenuViewComponent(_topicRepository, _hierarchicalMappingService) {
ViewComponentContext = _context
};
var result = await viewComponent.InvokeAsync().ConfigureAwait(false);
var concreteResult = result as ViewViewComponentResult;
var model = concreteResult?.ViewData?.Model as NavigationViewModel<NavigationTopicViewModel>;
Assert.NotNull(model);
Assert.Equal(_topic.GetWebPath(), model?.CurrentWebPath);
Assert.Equal("/Web/", model?.NavigationRoot?.WebPath);
Assert.Equal(3, model?.NavigationRoot?.Children.Count);
}
/*==========================================================================================================================
| TEST: MENU: INVOKE: RETURNS CONFIGURED NAVIGATION ROOT
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Loads a new <see cref="MenuViewComponent"/> with a context defining an alternate <c>NavigationRoot</c>, and confirms
/// that is returned as the <see cref="NavigationTopicViewModel"/>.
/// </summary>
[Fact]
public async Task Menu_Invoke_ReturnsConfiguredNavigationRoot() {
var webPath = "/Web/Web_3/Web_3_1/Web_3_1_0/";
var viewComponent = new MenuViewComponent(_topicRepository, _hierarchicalMappingService) {
ViewComponentContext = GetViewComponentContext(webPath)
};
var result = await viewComponent.InvokeAsync().ConfigureAwait(false);
var concreteResult = result as ViewViewComponentResult;
var model = concreteResult?.ViewData?.Model as NavigationViewModel<NavigationTopicViewModel>;
Assert.NotNull(model);
Assert.Equal(webPath, model?.CurrentWebPath);
Assert.Equal("/Configuration/", model?.NavigationRoot?.WebPath);
}
/*==========================================================================================================================
| TEST: NAVIGATION TOPIC VIEW MODEL: IS SELECTED: RETURNS EXPECTED OUTPUT
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Constructs a <see cref="NavigationTopicViewModel"/> with a child instance, and ensures that the <see cref="
/// NavigationTopicViewModel.IsSelected(String)"/> method returns the expected results.
/// </summary>
[Fact]
public void NavigationTopicViewModel_IsSelected_ReturnsExpectedOutput() {
var parent = new NavigationTopicViewModel() {
WebPath = "/Web/"
};
var child = new NavigationTopicViewModel() {
WebPath = parent.WebPath + "Path/"
};
parent.Children.Add(child);
Assert.True(child.IsSelected(child.WebPath));
Assert.True(parent.IsSelected(child.WebPath));
Assert.False(child.IsSelected(parent.WebPath));
}
/*==========================================================================================================================
| TEST: PAGE-LEVEL NAVIGATION: INVOKE: RETURNS NAVIGATION VIEW MODEL
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Loads a new <see cref="PageLevelNavigationViewComponent"/> and confirms the resulting values.
/// </summary>
[Fact]
public async Task PageLevelNavigation_Invoke_ReturnsNavigationViewModel() {
var viewComponent = new PageLevelNavigationViewComponent(_topicRepository, _hierarchicalMappingService) {
ViewComponentContext = _context
};
var result = await viewComponent.InvokeAsync().ConfigureAwait(false);
var concreteResult = result as ViewViewComponentResult;
var model = concreteResult?.ViewData?.Model as NavigationViewModel<NavigationTopicViewModel>;
Assert.NotNull(model);
Assert.Equal(_topic.GetWebPath(), model?.CurrentWebPath);
Assert.Equal("/Web/Web_3/", model?.NavigationRoot?.WebPath);
Assert.Equal(2, model?.NavigationRoot?.Children.Count);
Assert.True(model?.NavigationRoot?.IsSelected(_topic.GetWebPath())?? false);
}
/*==========================================================================================================================
| TEST: PAGE-LEVEL NAVIGATION: INVOKE: RETURNS NULL
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Loads a new <see cref="PageLevelNavigationViewComponent"/> with a root that does not derive from a <c>PageGroup</c>
/// and confirms the resulting <see cref="NavigationTopicViewModel"/> is <c>null</c>.
/// </summary>
[Fact]
public async Task PageLevelNavigation_Invoke_ReturnsNull() {
var webPath = "/Web/Web_1/Web_1_0/";
var viewComponent = new PageLevelNavigationViewComponent(_topicRepository, _hierarchicalMappingService) {
ViewComponentContext = GetViewComponentContext(webPath)
};
var result = await viewComponent.InvokeAsync().ConfigureAwait(false);
var concreteResult = result as ViewViewComponentResult;
var model = concreteResult?.ViewData?.Model as NavigationViewModel<NavigationTopicViewModel>;
Assert.NotNull(model);
Assert.Equal(webPath, model?.CurrentWebPath);
Assert.Null(model?.NavigationRoot);
}
/*==========================================================================================================================
| TEST: PAGE-LEVEL NAVIGATION: INVOKE WITH NULL TOPIC: RETURNS NULL
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Loads a new <see cref="PageLevelNavigationViewComponent"/> with a null topic reference and confirms the resulting <see
/// cref="NavigationTopicViewModel"/> is <c>null</c>. This occurs when handling 404 errors.
/// </summary>
[Fact]
public async Task PageLevelNavigation_InvokeWithNullTopic_ReturnsNull()
{
var webPath = "/Invalid/Path/";
var viewComponent = new PageLevelNavigationViewComponent(_topicRepository, _hierarchicalMappingService)
{
ViewComponentContext = GetViewComponentContext(webPath)
};
var result = await viewComponent.InvokeAsync().ConfigureAwait(false);
var concreteResult = result as ViewViewComponentResult;
var model = concreteResult?.ViewData?.Model as NavigationViewModel<NavigationTopicViewModel>;
Assert.NotNull(model);
Assert.Equal(String.Empty, model?.CurrentWebPath);
Assert.Null(model?.NavigationRoot);
}
} //Class
} //Namespace