mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-18 08:07:09 +01:00
* Allow all headers to be set as Response headers * RunTestDifferentPort * Fix Proxy_Should_change_absolute_location_header_in_proxied_response test * Fix OwinResponseMapper * Fix test * 1.0.3.18
29 lines
900 B
C#
29 lines
900 B
C#
using System;
|
|
using NFluent;
|
|
using WireMock.ResponseBuilders;
|
|
using Xunit;
|
|
|
|
namespace WireMock.Net.Tests
|
|
{
|
|
public class ResponseTests
|
|
{
|
|
private const string ClientIp = "::1";
|
|
|
|
[Theory]
|
|
[InlineData("Content-Length", "1024")]
|
|
[InlineData("Transfer-Encoding", "identity")]
|
|
[InlineData("Location", "http://test")]
|
|
public async void Response_Create_WithHeader(string headerName, string headerValue)
|
|
{
|
|
// Assign
|
|
var requestMock = new RequestMessage(new Uri("http://localhost/foo"), "PUT", ClientIp);
|
|
IResponseBuilder builder = Response.Create().WithHeader(headerName, headerValue);
|
|
|
|
// Act
|
|
var response = await builder.ProvideResponseAsync(requestMock);
|
|
|
|
// Assert
|
|
Check.That(response.Headers[headerName].ToString()).Equals(headerValue);
|
|
}
|
|
}
|
|
} |