【发布时间】:2019-07-08 06:26:24
【问题描述】:
我正在尝试对项目进行集成测试,但同样的错误不断出现。用邮递员手动做同样的事情效果很好。
我已尝试更改端口号并打开/关闭 SSL,但仍然出现相同的问题。
用户API测试:
[TestClass]
public class UserAPITest
{
private readonly HttpClient _client;
private readonly IConfiguration _configuration;
public UserAPITest()
{
_client = TestsHelper.Client;
_configuration = TestsHelper.Configurations;
}
[TestInitialize]
public void TestInitialize()
{
}
[TestMethod]
[DataRow(nameof(HttpMethod.Post), "api/User/refreshToken")]
public async Task Initiation_Authorized_ShouldReturnNewToken(string httpMethod, string url)
{
_client.DefaultRequestHeaders.Authorization = TestsHelper.GetTestUserBearerHeader();
var request = new HttpRequestMessage(new HttpMethod(httpMethod), url);
var response = await _client.SendAsync(request);
Assert.IsNotNull(response.Content); // value during debug added below
Assert.AreEqual(HttpStatusCode.OK,response.StatusCode); // test fails here
// check for token inside response
// Assert.IsTrue(Regex.IsMatch(response.RequestMessage.Content.ToString(), "^[A-Za-z0-9-_=]+\\.[A-Za-z0-9-_=]+\\.?[A-Za-z0-9-_.+/=]*$"));
}
}
TestsHelper:
private static HttpClient SetClient()
{
HttpClient client;
var host = new WebHostBuilder()
.UseEnvironment("Development")
.UseStartup<Startup>()
;
var server = new TestServer(host);
client = new HttpClient {BaseAddress = new Uri(Configurations["Tests:ApiClientUrl"], UriKind.RelativeOrAbsolute)};
return client;
}
public static string GetTestUserToken()
{
var token = "someToken"; // there is an actual token here but I have removed it
return token;
}
public static AuthenticationHeaderValue GetTestUserBearerHeader()
{
var token = GetTestUserToken();
var bearerToken = new AuthenticationHeaderValue("Bearer", token);
return bearerToken;
}
预期结果:测试通过(返回令牌)或失败(返回 401 未授权)
实际结果:测试返回 301 源已被移动
响应值:
{StatusCode: 301, ReasonPhrase: 'Moved Permanently', Version: 1.1, Content: System.Net.Http.HttpConnection+HttpConnectionResponseContent, Headers:
{
Cache-Control: no-cache
Pragma: no-cache
Proxy-Connection: close
Connection: close
Content-Type: text/html; charset=utf-8
Content-Length: 668
}}
【问题讨论】:
标签: c# api asp.net-core integration-testing asp.net-core-webapi