gpt4 book ai didi

c# - 如何针对仅支持 SSL 的 Web Api Controller 对请求进行单元测试?

转载 作者:太空宇宙 更新时间:2023-11-03 19:55:47 24 4
gpt4 key购买 nike

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

当 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);
}

}

关于c# - 如何针对仅支持 SSL 的 Web Api Controller 对请求进行单元测试?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33740838/

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