gpt4 book ai didi

c# - ASP.Net Core 集成测试

转载 作者:太空狗 更新时间:2023-10-29 22:57:33 25 4
gpt4 key购买 nike

我正在努力获得与 ASP.Net Core RC2 一起使用的任何类型的集成测试。我创建了一个基本的 Web 项目,它在浏览器中运行良好,显示了预期的默认页面。然后我使用以下测试代码添加了一个新类(在同一个项目中):

[TestClass]
public class HomeControllerTests
{
private HttpClient client;

[TestInitialize]
public void Initialize()
{
// Arrange
var host = new WebHostBuilder()
.UseEnvironment("Development")
.UseKestrel()
.UseContentRoot(Directory.GetCurrentDirectory())
.UseIISIntegration()
.UseStartup<Startup>();

TestServer server = new TestServer(host);

client = server.CreateClient();
}


[TestMethod]
public async Task CheckHomeIndex()
{
string request = "/";

var response = await client.GetAsync(request);

response.EnsureSuccessStatusCode();

Assert.IsTrue(true);
}
}

测试未通过,但有以下异常:

The view 'Index' was not found. The following locations were searched:
/Views/Home/Index.cshtml
/Views/Shared/Index.cshtml

在此阶段,我使用的是 MSTest 而不是 xUnit。不幸的是,将 ContentRoot 更改为“重复”问题中建议的内容并不能解决问题。

有人进行集成测试吗?我试过调整 WebHostBuilder 设置,但没有成功。

最佳答案

我写了一篇关于集成测试的博文(不涉及 MVC),“Snow Crash”评论了类似的问题。他们使用以下代码解决了“未找到”错误:

var path = PlatformServices.Default.Application.ApplicationBasePath;
var setDir = Path.GetFullPath(Path.Combine(path, <projectpathdirectory> ));

var builder = new WebHostBuilder()
.UseContentRoot(setDir)
.UseStartup<TStartup>();

博文在这里Introduction to integration testing with xUnit and TestServer in ASP.NET Core .

关于c# - ASP.Net Core 集成测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37831061/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com