Search code examples
c#apiasp.net-coreintegration-testingasp.net-core-webapi

Integration tests result keeps returning status code 301


I am trying to get an integration test to work on the project but the same error keeps showing up. Doing the same thing manually with postman works fine.

I have tried changing the port number and turning on/off SSL but still the same issue appears.

UserAPITest :

[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;
        }

Expected Result: test either passing (returns token) or failing (returns 401 unauthorized)

Actual Result: test returns 301 source has been moved

value of response:

{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
}}

Solution

  • you need to modify your test case to

    _client.DefaultRequestHeaders.Authorization = TestsHelper.GetTestUserBearerHeader();
    var request = new HttpRequestMessage(new HttpMethod(httpMethod), url);
    
    var response = await _client.SendAsync(request);
    var content = await response.Content.ReadAsStringAsync();
    
    Assert.IsNotNull(content);
    
    Assert.AreEqual(HttpStatusCode.OK,response.StatusCode);
    

    Update Problem was on both TestServer and in Client

    var server = new TestServer(Program.CreateWebHostBuilder(new string[] { }));
    client = server.CreateClient();
    client.BaseAddress = new Uri(Configurations["Tests:ApiClientUrl"]);