-
-
Notifications
You must be signed in to change notification settings - Fork 382
Expand file tree
/
Copy pathErrorLoggerTest.cs
More file actions
431 lines (381 loc) · 12.5 KB
/
ErrorLoggerTest.cs
File metadata and controls
431 lines (381 loc) · 12.5 KB
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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the Apache 2.0 License
// See the LICENSE file in the project root for more information.
// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone
using Microsoft.AspNetCore.Components.Web;
using Microsoft.Extensions.Configuration;
namespace UnitTest.Components;
public class ErrorLoggerTest : BootstrapBlazorTestBase
{
[Fact]
public async Task OnErrorAsync_Ok()
{
var cut = Context.Render<BootstrapBlazorRoot>(pb =>
{
pb.AddChildContent<ErrorLogger>(pb =>
{
pb.Add(e => e.ShowToast, false);
pb.AddChildContent<Button>(pb =>
{
pb.Add(b => b.OnClick, () =>
{
var a = 0;
_ = 1 / a;
});
});
});
});
// 无 Swal 弹窗
Assert.DoesNotContain("<div class=\"toast-header\">", cut.Markup);
var errorLogger = cut.FindComponent<ErrorLogger>();
errorLogger.Render(pb =>
{
pb.Add(e => e.ShowToast, true);
});
var button = cut.Find("button");
await cut.InvokeAsync(() => button.Click());
}
[Theory]
[InlineData("true")]
[InlineData("false")]
public async Task DetailedErrors_Ok(string detailedError)
{
var config = Context.Services.GetRequiredService<IConfiguration>();
config["DetailedErrors"] = detailedError;
var cut = Context.Render<BootstrapBlazorRoot>(pb =>
{
pb.AddChildContent<ErrorLogger>(pb =>
{
pb.AddChildContent<Button>(pb =>
{
pb.Add(b => b.OnClick, () =>
{
var a = 0;
_ = 1 / a;
});
});
});
});
var button = cut.Find("button");
await cut.InvokeAsync(() => button.Click());
}
[Fact]
public async Task OnErrorHandleAsync_Ok()
{
var tcs = new TaskCompletionSource<bool>();
var cut = Context.Render<BootstrapBlazorRoot>(pb =>
{
pb.Add(e => e.OnErrorHandleAsync, (logger, exception) =>
{
tcs.SetResult(true);
return Task.CompletedTask;
});
pb.AddChildContent<Button>(pb =>
{
pb.Add(b => b.OnClick, () =>
{
var a = 0;
_ = 1 / a;
});
});
});
var button = cut.Find("button");
await cut.InvokeAsync(() => button.Click());
var result = await tcs.Task;
Assert.True(result);
}
[Fact]
public void OnErrorHandleAsync_Tab()
{
var cut = Context.Render<BootstrapBlazorRoot>(pb =>
{
pb.Add(a => a.ChildContent, new RenderFragment(builder =>
{
builder.OpenComponent<Tab>(0);
builder.AddAttribute(1, nameof(Tab.ChildContent), new RenderFragment(builder =>
{
builder.OpenComponent<TabItem>(0);
builder.AddAttribute(1, nameof(TabItem.ChildContent), new RenderFragment(builder =>
{
builder.OpenComponent<Button>(0);
builder.AddAttribute(1, nameof(Button.Text), "errorLogger-click");
builder.AddAttribute(2, nameof(Button.OnClick), EventCallback.Factory.Create<MouseEventArgs>(this, e =>
{
var a = 0;
_ = 1 / a;
}));
builder.CloseComponent();
}));
builder.CloseComponent();
}));
builder.CloseComponent();
}));
});
cut.Contains("errorLogger-click");
var button = cut.Find("button");
button.TriggerEvent("onclick", EventArgs.Empty);
// TabItem 内显示异常信息
cut.Contains("error-stack");
}
[Fact]
public async Task Root_Ok()
{
Exception? exception = null;
var cut = Context.Render<BootstrapBlazorRoot>(pb =>
{
pb.Add(a => a.EnableErrorLogger, true);
pb.Add(a => a.EnableErrorLoggerILogger, true);
pb.Add(a => a.ShowErrorLoggerToast, false);
pb.Add(a => a.ToastTitle, "Test");
pb.Add(a => a.OnErrorHandleAsync, (logger, ex) =>
{
exception = ex;
return Task.CompletedTask;
});
pb.AddChildContent<Button>(pb =>
{
pb.Add(b => b.OnClick, () =>
{
var a = 0;
_ = 1 / a;
});
});
});
var button = cut.Find("button");
await cut.InvokeAsync(() => button.Click());
Assert.NotNull(exception);
cut.Render(pb =>
{
pb.Add(a => a.EnableErrorLogger, false);
});
button = cut.Find("button");
await Assert.ThrowsAsync<DivideByZeroException>(async () => await cut.InvokeAsync(() => button.Click()));
}
[Fact]
public async Task Toast_ErrorContent_Ok()
{
var cut = Context.Render<BootstrapBlazorRoot>(pb =>
{
pb.Add(a => a.EnableErrorLogger, true);
pb.Add(a => a.ShowErrorLoggerToast, true);
pb.AddChildContent<Button>(pb =>
{
pb.Add(b => b.OnClick, () =>
{
var a = 0;
_ = 1 / a;
});
});
});
// ErrorContent 不为空与 Toast 内容合并显示
var errorLogger = cut.FindComponent<ErrorLogger>();
errorLogger.Render(pb =>
{
pb.Add(a => a.ErrorContent, new RenderFragment<Exception>(ex => builder =>
{
builder.AddContent(0, ex.Message);
builder.AddContent(1, "error_content_template");
}));
});
var button = cut.Find("button");
await cut.InvokeAsync(() => button.Click());
cut.Contains("Attempted to divide by zero.error_content_template");
}
[Fact]
public async Task ErrorContent_Ok()
{
var cut = Context.Render<BootstrapBlazorRoot>(pb =>
{
pb.AddChildContent<Tab>(pb =>
{
pb.AddChildContent<TabItem>(pb =>
{
pb.Add(a => a.Text, "Text1");
pb.Add(a => a.ChildContent, builder => builder.AddContent(0, RenderButton()));
});
});
});
var tab = cut.FindComponent<Tab>();
var logger = tab.FindComponent<ErrorLogger>();
logger.Render(pb =>
{
pb.Add(a => a.ErrorContent, new RenderFragment<Exception>(ex => builder =>
{
builder.AddContent(0, ex.Message);
builder.AddContent(1, "error_content_template");
}));
});
// 触发异常
var button = cut.Find("button");
await cut.InvokeAsync(() => button.Click());
cut.Contains("Attempted to divide by zero.error_content_template");
}
[Fact]
public async Task TabItem_Error()
{
var cut = Context.Render<BootstrapBlazorRoot>(pb =>
{
pb.AddChildContent<Tab>(pb =>
{
pb.Add(a => a.EnableErrorLogger, true);
pb.Add(a => a.EnableErrorLoggerILogger, true);
pb.Add(a => a.ShowErrorLoggerToast, true);
pb.AddChildContent<TabItem>(pb =>
{
pb.Add(a => a.Text, "Text1");
pb.Add(a => a.ChildContent, builder => builder.AddContent(0, RenderButton()));
});
});
});
var button = cut.Find("button");
await cut.InvokeAsync(() => button.Click());
// 页面不崩溃,由弹窗显示异常信息
cut.Contains("<div class=\"error-stack\">TimeStamp:");
// 单元测试覆盖 TabItemContent Dispose 方法 覆盖内部 _logger 变量为空情况
var handler = Activator.CreateInstance("BootstrapBlazor", "BootstrapBlazor.Components.TabItemContent");
Assert.NotNull(handler);
var content = handler.Unwrap();
Assert.NotNull(content);
Assert.IsType<IDisposable>(content, exactMatch: false);
((IDisposable)content).Dispose();
}
[Fact]
public async Task TabItem_Production_Error()
{
var context = new BunitContext();
context.JSInterop.Mode = JSRuntimeMode.Loose;
context.Services.AddBootstrapBlazor();
context.Services.GetRequiredService<ICacheManager>();
var cut = context.Render<BootstrapBlazorRoot>(pb =>
{
pb.AddChildContent<Tab>(pb =>
{
pb.AddChildContent<TabItem>(pb =>
{
pb.Add(a => a.Text, "Text1");
pb.Add(a => a.ChildContent, builder => builder.AddContent(0, RenderButton()));
});
});
});
var button = cut.Find("button");
await cut.InvokeAsync(() => button.Click());
}
[Fact]
public void OnInitialize_Error()
{
var cut = Context.Render<BootstrapBlazorRoot>(pb =>
{
pb.AddChildContent<MockInitializedError>();
});
Assert.Equal("", cut.Markup);
}
[Fact]
public void OnInitializeAsync_Error()
{
var cut = Context.Render<BootstrapBlazorRoot>(pb =>
{
pb.AddChildContent<MockInitializedAsyncError>();
});
Assert.Equal("", cut.Markup);
}
[Fact]
public void OnParameterSet_Error()
{
var cut = Context.Render<BootstrapBlazorRoot>(pb =>
{
pb.AddChildContent<MockOnParametersSetError>();
});
Assert.Equal("", cut.Markup);
}
[Fact]
public void OnParameterSetAsync_Error()
{
var cut = Context.Render<BootstrapBlazorRoot>(pb =>
{
pb.AddChildContent<MockOnParameterSetAsyncError>();
});
Assert.Equal("", cut.Markup);
}
[Fact]
public void OnAfterRender_Error()
{
var cut = Context.Render<BootstrapBlazorRoot>(pb =>
{
pb.AddChildContent<MockOnAfterRenderError>();
});
Assert.Equal("", cut.Markup);
}
[Fact]
public void OnAfterRenderAsync_Error()
{
var cut = Context.Render<BootstrapBlazorRoot>(pb =>
{
pb.AddChildContent<MockOnAfterRenderAsyncError>();
});
Assert.Equal("", cut.Markup);
}
private RenderFragment RenderButton() => builder =>
{
builder.OpenComponent<Button>(0);
builder.AddAttribute(2, nameof(Button.OnClick), EventCallback.Factory.Create<MouseEventArgs>(this, e =>
{
var a = 0;
_ = 1 / a;
}));
builder.CloseComponent();
};
class MockInitializedError : ComponentBase
{
protected override void OnInitialized()
{
base.OnInitialized();
ThrowError();
}
}
class MockInitializedAsyncError : ComponentBase
{
protected override async Task OnInitializedAsync()
{
await base.OnInitializedAsync();
ThrowError();
}
}
class MockOnParametersSetError : ComponentBase
{
protected override void OnParametersSet()
{
base.OnParametersSet();
ThrowError();
}
}
class MockOnParameterSetAsyncError : ComponentBase
{
protected override async Task OnParametersSetAsync()
{
await base.OnParametersSetAsync();
ThrowError();
}
}
class MockOnAfterRenderError : ComponentBase
{
protected override void OnAfterRender(bool firstRender)
{
base.OnAfterRender(firstRender);
ThrowError();
}
}
class MockOnAfterRenderAsyncError : ComponentBase
{
protected override async Task OnAfterRenderAsync(bool firstRender)
{
await base.OnAfterRenderAsync(firstRender);
ThrowError();
}
}
private static void ThrowError()
{
var a = 1;
var b = 0;
var c = a / b;
}
}