AspNetCore.TestHost: 如何获取进程内服务器的日志输出?
AspNetCore.TestHost: How to get log output from the in-process server?
我正在使用 Microsoft.AspNetCore.TestHost 来集成测试我的 ASP.NET 核心网络服务应用程序。
var testServer = new TestServer(
new WebHostBuilder()
.UseStartup<Startup>()
.UseConfiguration(configuration));
var client = testServer.CreateClient();
这行得通,但我有一个问题:如果服务器端出现意外错误,它通常只会抛出“内部服务器错误”,我必须调试才能看到它做了什么。
当然我可以改进我服务器的错误消息,但除此之外我希望能够看到服务器的日志输出.
这可能吗?
我在想,当我在上面创建我的 TestServer
对象时,也许我可以注入一个日志接收器,例如来自 Serilog.Sinks.InMemory 的那个,然后检查其中的内容。 WebHostBuilder
有一个方法 ConfigureLogging
,但我不知道该怎么做。
当然有可能:)
您需要 Serilog.AspNetCore nuget 包,加上(显然)Serilog.Sinks.InMemory 作为接收器。
var testServer = new TestServer(
new WebHostBuilder()
.UseSerilog((ctx, conf) => conf.WriteTo.InMemory()) // That's pretty much it.
.UseStartup<Startup>()
.UseConfiguration(cBuilder.Build()));
// Then, in the tests, you can access it like this. But you probably know.
InMemorySink.Instance
.Should()
.HaveMessage(...)
如果不起作用,请告诉我,我会编辑答案。我测试了它,它对我有用。
我正在使用 Microsoft.AspNetCore.TestHost 来集成测试我的 ASP.NET 核心网络服务应用程序。
var testServer = new TestServer(
new WebHostBuilder()
.UseStartup<Startup>()
.UseConfiguration(configuration));
var client = testServer.CreateClient();
这行得通,但我有一个问题:如果服务器端出现意外错误,它通常只会抛出“内部服务器错误”,我必须调试才能看到它做了什么。
当然我可以改进我服务器的错误消息,但除此之外我希望能够看到服务器的日志输出.
这可能吗?
我在想,当我在上面创建我的 TestServer
对象时,也许我可以注入一个日志接收器,例如来自 Serilog.Sinks.InMemory 的那个,然后检查其中的内容。 WebHostBuilder
有一个方法 ConfigureLogging
,但我不知道该怎么做。
当然有可能:)
您需要 Serilog.AspNetCore nuget 包,加上(显然)Serilog.Sinks.InMemory 作为接收器。
var testServer = new TestServer(
new WebHostBuilder()
.UseSerilog((ctx, conf) => conf.WriteTo.InMemory()) // That's pretty much it.
.UseStartup<Startup>()
.UseConfiguration(cBuilder.Build()));
// Then, in the tests, you can access it like this. But you probably know.
InMemorySink.Instance
.Should()
.HaveMessage(...)
如果不起作用,请告诉我,我会编辑答案。我测试了它,它对我有用。