-
Notifications
You must be signed in to change notification settings - Fork 10.3k
/
Copy pathImportMapTest.cs
378 lines (318 loc) · 15.8 KB
/
ImportMapTest.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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections.ObjectModel;
using System.Runtime.ExceptionServices;
using Microsoft.AspNetCore.Components.Rendering;
using Microsoft.AspNetCore.Components.RenderTree;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Logging.Abstractions;
namespace Microsoft.AspNetCore.Components.Endpoints;
public class ImportMapTest
{
private readonly ImportMap _importMap;
private readonly TestRenderer _renderer;
public ImportMapTest()
{
var services = new ServiceCollection();
services.AddSingleton<ILoggerFactory>(NullLoggerFactory.Instance);
var serviceProvider = services.BuildServiceProvider();
_renderer = new TestRenderer(serviceProvider)
{
ShouldHandleExceptions = true
};
_importMap = (ImportMap)_renderer.InstantiateComponent<ImportMap>();
}
[Fact]
public async Task CanRenderImportMap()
{
// Arrange
var importMap = new ImportMap();
var importMapDefinition = new ImportMapDefinition(
new Dictionary<string, string>
{
{ "jquery", "https://code.jquery.com/jquery-3.5.1.min.js" },
{ "bootstrap", "https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" }
},
new Dictionary<string, IReadOnlyDictionary<string, string>>
{
["development"] = new Dictionary<string, string>
{
{ "jquery", "https://code.jquery.com/jquery-3.5.1.js" },
{ "bootstrap", "https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.js" }
}.AsReadOnly()
},
new Dictionary<string, string>
{
{ "https://code.jquery.com/jquery-3.5.1.js", "sha384-jquery" },
{ "https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.js", "sha256-bootstrap" }
});
importMap.ImportMapDefinition = importMapDefinition;
importMap.AdditionalAttributes = new Dictionary<string, object> { ["nonce"] = "random" }.AsReadOnly();
var id = _renderer.AssignRootComponentId(importMap);
// Act
await _renderer.Dispatcher.InvokeAsync(() => _renderer.RenderRootComponent(id));
// Assert
var frames = _renderer.GetCurrentRenderTreeFrames(id);
Assert.Equal(4, frames.Count);
Assert.Equal(RenderTreeFrameType.Element, frames.Array[0].FrameType);
Assert.Equal("script", frames.Array[0].ElementName);
Assert.Equal(RenderTreeFrameType.Attribute, frames.Array[1].FrameType);
Assert.Equal("type", frames.Array[1].AttributeName);
Assert.Equal("importmap", frames.Array[1].AttributeValue);
Assert.Equal("nonce", frames.Array[2].AttributeName);
Assert.Equal("random", frames.Array[2].AttributeValue);
Assert.Equal(RenderTreeFrameType.Markup, frames.Array[3].FrameType);
Assert.Equal(importMapDefinition.ToJson(), frames.Array[3].TextContent);
}
[Fact]
public async Task ResolvesImportMap_FromHttpContext()
{
// Arrange
var importMap = new ImportMap();
var importMapDefinition = new ImportMapDefinition(
new Dictionary<string, string>
{
{ "jquery", "https://code.jquery.com/jquery-3.5.1.min.js" },
{ "bootstrap", "https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" }
},
new Dictionary<string, IReadOnlyDictionary<string, string>>
{
["development"] = new Dictionary<string, string>
{
{ "jquery", "https://code.jquery.com/jquery-3.5.1.js" },
{ "bootstrap", "https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.js" }
}.AsReadOnly()
},
new Dictionary<string, string>
{
{ "https://code.jquery.com/jquery-3.5.1.js", "sha384-jquery" },
{ "https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.js", "sha256-bootstrap" }
});
var id = _renderer.AssignRootComponentId(importMap);
var context = new DefaultHttpContext();
context.SetEndpoint(new Endpoint((ctx) => Task.CompletedTask, new EndpointMetadataCollection(importMapDefinition), "Test"));
importMap.HttpContext = context;
// Act
await _renderer.Dispatcher.InvokeAsync(() => _renderer.RenderRootComponent(id));
// Assert
var frames = _renderer.GetCurrentRenderTreeFrames(id);
Assert.Equal(3, frames.Count);
Assert.Equal(RenderTreeFrameType.Element, frames.Array[0].FrameType);
Assert.Equal("script", frames.Array[0].ElementName);
Assert.Equal(RenderTreeFrameType.Attribute, frames.Array[1].FrameType);
Assert.Equal("type", frames.Array[1].AttributeName);
Assert.Equal("importmap", frames.Array[1].AttributeValue);
Assert.Equal(RenderTreeFrameType.Markup, frames.Array[2].FrameType);
Assert.Equal(importMapDefinition.ToJson(), frames.Array[2].TextContent);
}
[Fact]
public async Task Rerenders_WhenImportmapChanges()
{
// Arrange
var importMap = new ImportMap();
var importMapDefinition = new ImportMapDefinition(
new Dictionary<string, string>
{
{ "jquery", "https://code.jquery.com/jquery-3.5.1.min.js" },
{ "bootstrap", "https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" }
},
new Dictionary<string, IReadOnlyDictionary<string, string>>
{
["development"] = new Dictionary<string, string>
{
{ "jquery", "https://code.jquery.com/jquery-3.5.1.js" },
{ "bootstrap", "https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.js" }
}.AsReadOnly()
},
new Dictionary<string, string>
{
{ "https://code.jquery.com/jquery-3.5.1.js", "sha384-jquery" },
{ "https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.js", "sha256-bootstrap" }
});
var otherImportMapDefinition = new ImportMapDefinition(
new Dictionary<string, string>
{
{ "jquery", "./jquery-3.5.1.js" },
{ "bootstrap", "./bootstrap/4.5.2/js/bootstrap.min.js" }
},
ReadOnlyDictionary<string, IReadOnlyDictionary<string, string>>.Empty,
ReadOnlyDictionary<string, string>.Empty);
var id = _renderer.AssignRootComponentId(importMap);
var context = new DefaultHttpContext();
context.SetEndpoint(new Endpoint((ctx) => Task.CompletedTask, new EndpointMetadataCollection(importMapDefinition), "Test"));
importMap.HttpContext = context;
// Act
await _renderer.Dispatcher.InvokeAsync(() => _renderer.RenderRootComponent(id));
var component = importMap as IComponent;
await _renderer.Dispatcher.InvokeAsync(async () =>
{
await component.SetParametersAsync(ParameterView.FromDictionary(new Dictionary<string, object>
{
{ nameof(ImportMap.ImportMapDefinition), otherImportMapDefinition }
}));
});
await _renderer.Dispatcher.InvokeAsync(_renderer.ProcessPendingRender);
// Assert
var frames = _renderer.GetCurrentRenderTreeFrames(id);
Assert.Equal(3, frames.Count);
Assert.Equal(RenderTreeFrameType.Element, frames.Array[0].FrameType);
Assert.Equal("script", frames.Array[0].ElementName);
Assert.Equal(RenderTreeFrameType.Attribute, frames.Array[1].FrameType);
Assert.Equal("type", frames.Array[1].AttributeName);
Assert.Equal("importmap", frames.Array[1].AttributeValue);
Assert.Equal(RenderTreeFrameType.Markup, frames.Array[2].FrameType);
Assert.Equal(otherImportMapDefinition.ToJson(), frames.Array[2].TextContent);
}
[Fact]
public async Task DoesNot_Rerender_WhenImportmap_DoesNotChange()
{
// Arrange
var importMap = new ImportMap();
var importMapDefinition = new ImportMapDefinition(
new Dictionary<string, string>
{
{ "jquery", "https://code.jquery.com/jquery-3.5.1.min.js" },
{ "bootstrap", "https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" }
},
new Dictionary<string, IReadOnlyDictionary<string, string>>
{
["development"] = new Dictionary<string, string>
{
{ "jquery", "https://code.jquery.com/jquery-3.5.1.js" },
{ "bootstrap", "https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.js" }
}.AsReadOnly()
},
new Dictionary<string, string>
{
{ "https://code.jquery.com/jquery-3.5.1.js", "sha384-jquery" },
{ "https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.js", "sha256-bootstrap" }
});
var id = _renderer.AssignRootComponentId(importMap);
var context = new DefaultHttpContext();
context.SetEndpoint(new Endpoint((ctx) => Task.CompletedTask, new EndpointMetadataCollection(importMapDefinition), "Test"));
importMap.HttpContext = context;
// Act
await _renderer.Dispatcher.InvokeAsync(() => _renderer.RenderRootComponent(id));
var component = importMap as IComponent;
await _renderer.Dispatcher.InvokeAsync(async () =>
{
await component.SetParametersAsync(ParameterView.FromDictionary(new Dictionary<string, object>
{
{ nameof(ImportMap.ImportMapDefinition), importMapDefinition }
}));
});
await _renderer.Dispatcher.InvokeAsync(_renderer.ProcessPendingRender);
// Assert
Assert.Equal(1, _renderer.CapturedBatch.UpdatedComponents.Count);
Assert.Equal(0, _renderer.CapturedBatch.UpdatedComponents.Array[0].Edits.Count);
var frames = _renderer.GetCurrentRenderTreeFrames(id);
Assert.Equal(3, frames.Count);
Assert.Equal(RenderTreeFrameType.Element, frames.Array[0].FrameType);
Assert.Equal("script", frames.Array[0].ElementName);
Assert.Equal(RenderTreeFrameType.Attribute, frames.Array[1].FrameType);
Assert.Equal("type", frames.Array[1].AttributeName);
Assert.Equal("importmap", frames.Array[1].AttributeValue);
Assert.Equal(RenderTreeFrameType.Markup, frames.Array[2].FrameType);
Assert.Equal(importMapDefinition.ToJson(), frames.Array[2].TextContent);
}
public class TestRenderer : Renderer
{
public TestRenderer(IServiceProvider serviceProvider) : base(serviceProvider, NullLoggerFactory.Instance)
{
Dispatcher = Dispatcher.CreateDefault();
}
public TestRenderer(IServiceProvider serviceProvider, IComponentActivator componentActivator)
: base(serviceProvider, NullLoggerFactory.Instance, componentActivator)
{
Dispatcher = Dispatcher.CreateDefault();
}
public override Dispatcher Dispatcher { get; }
public Action OnExceptionHandled { get; set; }
public Action<RenderBatch> OnUpdateDisplay { get; set; }
public Action OnUpdateDisplayComplete { get; set; }
public List<Exception> HandledExceptions { get; } = new List<Exception>();
public bool ShouldHandleExceptions { get; set; }
public Task NextRenderResultTask { get; set; } = Task.CompletedTask;
public RenderBatch CapturedBatch { get; set; }
private HashSet<TestRendererComponentState> UndisposedComponentStates { get; } = new();
protected override Task UpdateDisplayAsync(in RenderBatch renderBatch)
{
CapturedBatch = renderBatch;
return Task.CompletedTask;
}
public new int AssignRootComponentId(IComponent component)
=> base.AssignRootComponentId(component);
public new void RemoveRootComponent(int componentId)
=> base.RemoveRootComponent(componentId);
public new ArrayRange<RenderTreeFrame> GetCurrentRenderTreeFrames(int componentId)
=> base.GetCurrentRenderTreeFrames(componentId);
public void RenderRootComponent(int componentId, ParameterView? parameters = default)
{
var task = Dispatcher.InvokeAsync(() => base.RenderRootComponentAsync(componentId, parameters ?? ParameterView.Empty));
UnwrapTask(task);
}
public new Task RenderRootComponentAsync(int componentId)
=> Dispatcher.InvokeAsync(() => base.RenderRootComponentAsync(componentId));
public new Task RenderRootComponentAsync(int componentId, ParameterView parameters)
=> Dispatcher.InvokeAsync(() => base.RenderRootComponentAsync(componentId, parameters));
public Task DispatchEventAsync(ulong eventHandlerId, EventArgs args)
=> Dispatcher.InvokeAsync(() => base.DispatchEventAsync(eventHandlerId, null, args));
public new Task DispatchEventAsync(ulong eventHandlerId, EventFieldInfo eventFieldInfo, EventArgs args)
=> Dispatcher.InvokeAsync(() => base.DispatchEventAsync(eventHandlerId, eventFieldInfo, args));
private static Task UnwrapTask(Task task)
{
// This should always be run synchronously
Assert.True(task.IsCompleted);
if (task.IsFaulted)
{
var exception = task.Exception.Flatten().InnerException;
while (exception is AggregateException e)
{
exception = e.InnerException;
}
ExceptionDispatchInfo.Capture(exception).Throw();
}
return task;
}
public IComponent InstantiateComponent<T>()
=> InstantiateComponent(typeof(T));
protected override void HandleException(Exception exception)
{
if (!ShouldHandleExceptions)
{
ExceptionDispatchInfo.Capture(exception).Throw();
}
HandledExceptions.Add(exception);
OnExceptionHandled?.Invoke();
}
public new void ProcessPendingRender()
=> base.ProcessPendingRender();
protected override ComponentState CreateComponentState(int componentId, IComponent component, ComponentState parentComponentState)
=> new TestRendererComponentState(this, componentId, component, parentComponentState);
protected override void Dispose(bool disposing)
{
base.Dispose(disposing);
if (UndisposedComponentStates.Count > 0)
{
throw new InvalidOperationException("Did not dispose all the ComponentState instances. This could lead to ArrayBuffer not returning buffers to its pool.");
}
}
class TestRendererComponentState : ComponentState, IAsyncDisposable
{
private readonly TestRenderer _renderer;
public TestRendererComponentState(Renderer renderer, int componentId, IComponent component, ComponentState parentComponentState)
: base(renderer, componentId, component, parentComponentState)
{
_renderer = (TestRenderer)renderer;
_renderer.UndisposedComponentStates.Add(this);
}
public override ValueTask DisposeAsync()
{
_renderer.UndisposedComponentStates.Remove(this);
return base.DisposeAsync();
}
}
}
}