我正在尝试为我正在构建的.NET核心Web API编写集成测试。
根据找到的文档
Here
我已经参考了包裹
Microsoft.AspNetCore.App
和
Microsoft.AspNetCore.Mvc.Testing
通过NuGET。
但是,当我尝试运行测试时,会收到一个异常消息,其中包含以下消息:
消息:System.IO.FileNotFoundException:无法加载文件或程序集“microsoft.aspnetcore.razor.runtime,version=2.1.1.0,culture=neutral,publicKeyToken=adb9793829ddae60”。系统找不到指定的文件。
这听起来像是在抱怨,因为剃须刀页面的依赖性缺失了?我的API不使用Razor页面。为什么我需要这种依赖?我做错什么了吗?
作为一个相关的旁注:在
Microsoft.aspnetcore.mvc.测试
以及
Microsoft.AspNetCore.TestHost
?前者在我上面链接的文档页面中提到,后者在
测试控制器
标题在同一页,几乎没有解释。
编辑:我已使用nuget在错误消息中安装请求的包,
Microsoft.AspNetCore.Razor.Runtime
我仍然得到同样的错误。现在我真的很困惑。
编辑2:根据请求,测试项目的.csproj文件。
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Razor.Runtime" Version="2.2.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" />
<PackageReference Include="xunit" Version="2.3.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Api\Api.csproj" />
</ItemGroup>
</Project>
我的测试设置如下:
public class StartupIntegrationTests
: IClassFixture<WebApplicationFactory<Startup>>
{
private readonly WebApplicationFactory<Startup> _webAppFactory;
public StartupIntegrationTests(WebApplicationFactory<Startup> webAppFactory)
{
_webAppFactory = webAppFactory.WithWebHostBuilder(builder => builder
.UseStartup<Startup>()
.UseSetting("https_port", "443"));
}
[Theory]
[InlineData("/Users")]
public async Task ShouldUseHttpsForAllRequestsIfClientDidAutoRedirect(string url)
{
var client = _webAppFactory.CreateClient();
var response = await client.GetAsync(url);
// Ensure that the returned URL is an https url and that there were no errors
Assert.Equal(HttpStatusCode.OK, response.StatusCode);
Assert.StartsWith("https://localhost:443/",
response.RequestMessage.RequestUri.OriginalString);
}
// Some more tests omitted to keep things short
}