-
-
Notifications
You must be signed in to change notification settings - Fork 382
Expand file tree
/
Copy pathErrorLoggerTest.cs
More file actions
275 lines (249 loc) · 8.84 KB
/
ErrorLoggerTest.cs
File metadata and controls
275 lines (249 loc) · 8.84 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
// 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;
using Microsoft.Extensions.FileProviders;
using Microsoft.Extensions.Hosting;
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());
}
[Fact]
public async Task DetailedErrors_False()
{
var config = Context.Services.GetRequiredService<IConfiguration>();
config["DetailedErrors"] = "false";
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;
});
});
});
});
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<ErrorLogger>(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");
button.TriggerEvent("onclick", EventArgs.Empty);
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 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;
});
});
});
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 TabItem_Error()
{
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());
// 页面不崩溃,由弹窗显示异常信息
cut.Contains("<div class=\"error-stack\">TimeStamp:");
// 单元测试覆盖 TabItemContent Dispose 方法
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.AddSingleton<IHostEnvironment, MockProductionEnironment>();
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());
}
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 MockProductionEnironment : IHostEnvironment
{
public string EnvironmentName { get; set; } = "Production";
public string ApplicationName { get; set; } = "Test";
public string ContentRootPath { get; set; } = "UniTest";
public IFileProvider ContentRootFileProvider { get; set; } = null!;
}
}