c# - Asp Net Core 集成测试 - 方法不允许响应

标签 c# asp.net-core integration-testing asp.net-core-2.2

我创建了一个带有 GET、POST、PUT 路由的 webapi 项目,这些路由在 postman 中运行良好。但是当我进行集成测试时,只有 GET 和 POST 路由通过。在集成测试中发出 PUT 请求时,它会抛出 MethodNotAllowed Error (405 - Method not allowed)。

系统:Ubuntu 18.10 网络版本:2.2.100

任何建议/方向将不胜感激。

namespace TestingMvc.Tests {
public class JsonContent : StringContent {
    public JsonContent (object obj):
        base (JsonConvert.SerializeObject (obj), Encoding.UTF8, "application/json") { }
}

public class MyTest : IClassFixture<WebApplicationFactory<WebApi.Startup>> {
    private readonly WebApplicationFactory<WebApi.Startup> _factory;

    public MyTest (WebApplicationFactory<WebApi.Startup> factory) {
        _factory = factory;
    }

    // This is Ok -> Returns 200
    [Fact]
    public async Task Get_Attachments () {
        var client = _factory.CreateClient ();
        var response = await client.GetAsync ("/attachments");
        Assert.Equal (HttpStatusCode.OK, response.StatusCode);
    }

    // This is Ok -> returns 200
    [Fact]
    public async Task Post_Attachments () {
        var client = _factory.CreateClient ();
        var response = await client.PostAsync ("/attachments", new JsonContent(new { a = "foobaz" }));
        Assert.Equal (HttpStatusCode.OK, response.StatusCode);
    }

    // This is not ok -> returns 405 Method not allowed
    [Fact]
    public async Task Put_Attachments () {
        var client = _factory.CreateClient ();
        var response = await client.PutAsync ("/attachments", new JsonContent(new { a = "foobaz" }));
        Assert.Equal (HttpStatusCode.OK, response.StatusCode);
    }
}
}

启动.cs

    public void ConfigureServices (IServiceCollection services) {
        services.AddCors ();
        services.AddMvc ().SetCompatibilityVersion (CompatibilityVersion.Version_2_2);
    }

    public void Configure (IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory) {
        app.ConfigureExceptionHandler ();
        app.UseCors (x => x
            .AllowAnyOrigin ()
            .AllowAnyMethod ()
            .AllowAnyHeader ()
            .AllowCredentials ());
        app.UseMvc ();
    }

WebApiTest.csproj

<Project Sdk="Microsoft.NET.Sdk.Web">
  <PropertyGroup>
    <TargetFramework>netcoreapp2.2</TargetFramework>
    <IsPackable>false</IsPackable>
  </PropertyGroup>
  <ItemGroup>
    <PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="2.2.0" />
    <PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.3.0" />
    <PackageReference Include="xunit" Version="2.2.0" />
    <PackageReference Include="xunit.runner.visualstudio" Version="2.2.0" />
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="../src/WebApi.csproj" />
</ItemGroup>
</Project>

控制台输出:

info: Microsoft.AspNetCore.Hosting.Internal.WebHost[1]
      Request starting HTTP/2.0 PUT http://localhost/attachments application/json; charset=utf-8 
dbug: TestingMvc.Tests.TestAuthenticationHandler[8]
      AuthenticationScheme: Test Scheme was successfully authenticated.
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[0]
      Executing endpoint '405 HTTP Method Not Supported'
info: Microsoft.AspNetCore.Routing.EndpointMiddleware[1]
      Executed endpoint '405 HTTP Method Not Supported'
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[2]
      Request finished in 236.9092ms 405 

最佳答案

我忘了发布我的 Controller 。

    // PUT Attachments/someguid
    [HttpPut ("{id}")]
    public ActionResult<AttachmentDto> Put (Guid id, [FromBody] AttachmentDto attachment) {
        return Ok (_attachmentService.CreateOrUpdate (id, attachment));
    }

因此为该操作定义了一个 ID 参数,但在集成测试中它丢失了。应该是:

var response = await client.PutAsync ("/attachments/01D7ACA3-575C-4E60-859F-DB95B70F8190", ...

这解决了我的问题。

关于c# - Asp Net Core 集成测试 - 方法不允许响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53835008/

相关文章:

c# - 使用 HashSet.orderBy() 函数

asp.net-core - Windows 身份验证模拟在 ASP.NET Core 中已失效吗?

c# - EF Core 3.0 SumAsync 触发聚合函数异常

c# - 使用 Unity IoC 进行 MVC 集成测试

testing - 如何在 Octopus Deploy 中测试部署

c# - 无法在Elasticsearch中的搜索文本中转义双引号(“)?

c# - 如果在 WPF 4.0 中使用闪屏,带有异常详细信息的 MessageBox 会立即消失

c# - 非托管/托管互操作 - 传递 int[] 时遇到问题

c# - ASP.NET Core 2.1 区域路由不起作用

c# - xUnit 支持 "same tests, different setups"吗?或者我如何编写在本地为开发人员运行并在管道中测试部署的测试?