3

我为异常编写了一个单元测试。但看起来它无法正常工作。它总是说“404 Not Found”状态。这意味着找不到 url 请求。如果我在浏览器上粘贴相同的网址,它会HttpResponse.StatusCode显示BAD REQUEST

我不明白为什么它不适用于单元测试。

[TestMethod()]
    public void GetTechDisciplinesTestException()
    {
        var config = new HttpSelfHostConfiguration("http://localhost:51546/");
        config.Routes.MapHttpRoute("DefaultApi", "api/{controller}/{id}");
        using (var server = new HttpSelfHostServer(config))
        using (var client = new HttpClient())
        {
            server.OpenAsync().Wait();
            using (var request = new HttpRequestMessage(HttpMethod.Get, "http://localhost:51546/api/techdisciplines/''"))
            using (var response = client.SendAsync(request).Result)
            {
                //Here Response Status Code says 'Not Found', 
                //Suppose to be 'Bad Request`
                Assert.AreEqual(HttpStatusCode.BadRequest, response.StatusCode);
            }
            server.CloseAsync().Wait();
        };
    }

我尝试使用HttpSelfHostServer哪个工作正常,它使用 IISExpress。

 [TestMethod()]
    public void GetTechDisciplinesTestException()
    {

        using (var client = new HttpClient())
        {               
            using (var request = new HttpRequestMessage(HttpMethod.Get, "http://localhost:51546/api/techdisciplines/''"))
            using (var response = client.SendAsync(request).Result)
            {
                Assert.AreEqual(HttpStatusCode.BadRequest, response.StatusCode);
            }               
        };
    }

所以我不知道HttpSelfHostServer代码中没有 wkring 吗?如何强制HttpSelfHostServer使用IISExpress?这个怎么处理?

4

1 回答 1

10

撇开您的特定方法不起作用的原因,我建议您不要费心通过 HTTPRequest 测试该特定行为 - 只需直接针对控制器类进行测试:

[TestMethod]
[ExpectedException(typeof(HttpResponseException))]
public void Controller_Throws()
{
  try{
       //setup and inject any dependencies here, using Mocks, etc
       var sut = new TestController();
       //pass any required Action parameters here...
       sut.GetSomething();
     }
    catch(HttpResponseException ex)
    {
       Assert.AreEqual(ex.Response.StatusCode,
           HttpStatusCode.BadRequest,
           "Wrong response type");
throw;
     }
}

由于这种方式你真正“单元测试”控制器上的行为,并避免任何间接测试

例如,如果您的控制器在您抛出 之前关闭并尝试访问数据库HttpResponseException,那么您并没有真正孤立地测试控制器 - 因为如果您确实收到异常,您将无法 100% 确定是什么抛出了它.

通过直接测试,您可以注入例如 Mock 依赖项,这些依赖项除了您告诉它们执行的操作之外什么都不做。

于 2013-10-03T23:47:22.103 回答