mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-15 14:53:37 +01:00
* Update BodyParser logic * update logic for byte[] * small update * MyGetKey * myget * dotnet nuget push * dotnet build * Release * . * StringContent * 1.0.4.18-preview-02 * Debug * 1.0.4.18-preview-02 * disable some proxy tests * myget * packagesToPack * fix * <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> <GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType> * Release * <VersionPrefix>1.0.4.18</VersionPrefix> * fix * BodyParserTests * ResponseBodyData (#216) * ResponseBodyData * refactor tests * LogEntryMapperTests
93 lines
3.4 KiB
C#
93 lines
3.4 KiB
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using NFluent;
|
|
using WireMock.Models;
|
|
using WireMock.ResponseBuilders;
|
|
using WireMock.Util;
|
|
using Xunit;
|
|
|
|
namespace WireMock.Net.Tests.ResponseBuilders
|
|
{
|
|
public class ResponseWithHeadersTests
|
|
{
|
|
private const string ClientIp = "::1";
|
|
|
|
[Theory]
|
|
[InlineData("Content-Length", "1024")]
|
|
[InlineData("Transfer-Encoding", "identity")]
|
|
[InlineData("Location", "http://test")]
|
|
public async Task Response_ProvideResponse_WithHeader_SingleValue(string headerName, string headerValue)
|
|
{
|
|
// Assign
|
|
var requestMock = new RequestMessage(new UrlDetails("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);
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData("Test", new[] { "one" })]
|
|
[InlineData("Test", new[] { "a", "b" })]
|
|
public async Task Response_ProvideResponse_WithHeader_MultipleValues(string headerName, string[] headerValues)
|
|
{
|
|
// Assign
|
|
var requestMock = new RequestMessage(new UrlDetails("http://localhost/foo"), "PUT", ClientIp);
|
|
IResponseBuilder builder = Response.Create().WithHeader(headerName, headerValues);
|
|
|
|
// Act
|
|
var response = await builder.ProvideResponseAsync(requestMock);
|
|
|
|
// Assert
|
|
Check.That(response.Headers[headerName].ToArray()).Equals(headerValues);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task Response_ProvideResponse_WithHeaders_SingleValue()
|
|
{
|
|
// Assign
|
|
var request = new RequestMessage(new UrlDetails("http://localhost"), "GET", ClientIp);
|
|
var headers = new Dictionary<string, string> { { "h", "x" } };
|
|
var response = Response.Create().WithHeaders(headers);
|
|
|
|
// Act
|
|
var responseMessage = await response.ProvideResponseAsync(request);
|
|
|
|
// Assert
|
|
Check.That(responseMessage.Headers["h"]).ContainsExactly("x");
|
|
}
|
|
|
|
[Fact]
|
|
public async Task Response_ProvideResponse_WithHeaders_MultipleValues()
|
|
{
|
|
// Assign
|
|
var request = new RequestMessage(new UrlDetails("http://localhost"), "GET", ClientIp);
|
|
var headers = new Dictionary<string, string[]> { { "h", new[] { "x" } } };
|
|
var response = Response.Create().WithHeaders(headers);
|
|
|
|
// Act
|
|
var responseMessage = await response.ProvideResponseAsync(request);
|
|
|
|
// Assert
|
|
Check.That(responseMessage.Headers["h"]).ContainsExactly("x");
|
|
}
|
|
|
|
[Fact]
|
|
public async Task Response_ProvideResponse_WithHeaders_WiremockList()
|
|
{
|
|
// Assign
|
|
var request = new RequestMessage(new UrlDetails("http://localhost"), "GET", ClientIp);
|
|
var headers = new Dictionary<string, WireMockList<string>> { { "h", new WireMockList<string>("x") } };
|
|
var response = Response.Create().WithHeaders(headers);
|
|
|
|
// Act
|
|
var responseMessage = await response.ProvideResponseAsync(request);
|
|
|
|
// Assert
|
|
Check.That(responseMessage.Headers["h"]).ContainsExactly("x");
|
|
}
|
|
}
|
|
} |