从mstest.exe

时间:2016-10-12 13:17:29

标签: c# unit-testing owin mstest

我有一个工作单元测试,用于设置TestServer,创建请求并验证响应。

当我从Visual Studio Test Explorer运行这些单元测试时,它们运行良好。设置TestServer,发出请求并返回正确的响应。

当我从命令行(在我们的CI服务器上)运行相同的代码时,TestServer始终返回" Not Found"的状态代码。没有其他例外。从命令行启动OWIN时是否需要添加任何特定命令?

MSTest.exe命令如下所示:

MSTest.exe /testcontainer:myTests.dll /resultsfile:testresults.trx

我的测试方法如下:

[TestMethod]
public async Task GetToken()
{
   using (var server = TestServer.Create<TestStartupConfiguration>())
   {
      var response = await server.CreateRequest("/TokenUrl").And(x => x.Content = new FormUrlEncodedContent(new[]
       {
           new KeyValuePair<string, string>("username", user.UserName),
           new KeyValuePair<string, string>("password", user.Password),
           new KeyValuePair<string, string>("grant_type", "password")
        })).PostAsync();

       response.IsSuccessStatusCode.Should().BeTrue("this is the expected return value of an Access Token request");
       var responseString = await response.Content.ReadAsStringAsync();
       responseString.Should().NotBeNullOrWhiteSpace("the response of an Access Token request should not be empty");
    }
}

而且,正如我所说,测试在Visual Studio中运行良好。所有其他单元测试都按预期从命令行执行。

非常感谢!

1 个答案:

答案 0 :(得分:0)

我找到了解决问题的方法。出现NotFound错误是因为我想要测试的OAuth配置在作为单元测试运行时将AllowInsecureHttp属性设置为false。我确保AllowInsecureHttp true不仅在DEBUG模式下,而且在单元测试运行时也是window_p

现在它完美无缺。