我如何针对仅限 SSL 的 Web Api 控制器对请求进行单元测试?

How do I unit test requests against SSL-only Web Api Controller?

我有一个单元测试,它使用 OWIN TestServer class 托管我的 Web Api ApiController classes 进行测试。

当 REST API 没有将 HTTPS (SSL) 要求融入 Controller 本身时,我第一次编写了单元测试。

我的单元测试看起来像这样:

[TestMethod]
[TestCategory("Unit")]
public async Task Test_MyMethod()
{
    using (var server = TestServer.Create<TestStartup>())
    {
        //Arrange
        var jsonBody = new JsonMyRequestObject();
        var request = server.CreateRequest("/api/v1/MyMethod")
            .And(x => x.Method = HttpMethod.Post)
            .And(x => x.Content = new StringContent(JsonConvert.SerializeObject(jsonBody), Encoding.UTF8, "application/json"));

        //Act
        var response = await request.PostAsync();
        var jsonResponse =
            JsonConvert.DeserializeObject<JsonMyResponseObject>(await response.Content.ReadAsStringAsync());

        //Assert
        Assert.IsTrue(response.IsSuccessStatusCode);
    }

}

既然我已应用该属性来强制执行 HTTPS,我的单元测试失败了。

如何修复我的测试,以便在所有条件相同的情况下,测试再次通过?

要修复此单元测试,您需要更改 TestServer 的基地址。

创建服务器后,在创建的对象上设置 BaseAddress 属性 以使用 "https" 地址。记住默认的 BaseAddress 值是 http://localhost.

在这种情况下,您可以使用 https://localhost

更改后的单元测试如下所示:

[TestMethod]
[TestCategory("Unit")]
public async Task Test_MyMethod()
{
    using (var server = TestServer.Create<TestStartup>())
    {
        //Arrange
        server.BaseAddress = new Uri("https://localhost");
        var jsonBody = new JsonMyRequestObject();
        var request = server.CreateRequest("/api/v1/MyMethod")
            .And(x => x.Method = HttpMethod.Post)
            .And(x => x.Content = new StringContent(JsonConvert.SerializeObject(jsonBody), Encoding.UTF8, "application/json"));

        //Act
        var response = await request.PostAsync();
        var jsonResponse =
            JsonConvert.DeserializeObject<JsonMyResponseObject>(await response.Content.ReadAsStringAsync());

        //Assert
        Assert.IsTrue(response.IsSuccessStatusCode);
    }

}