mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-18 15:23:47 +01:00
* Version 2.x * Setup .NET 9 * 12 * cleanup some #if for NETSTANDARD1_3 * cleanup + fix tests for net8 * openapi * NO ConfigureAwait(false) + cleanup * . * #endif * HashSet * WireMock.Net.NUnit * HttpContext * Add WebSockets (#1423) * Add WebSockets * Add tests * fix * more tests * Add tests * ... * remove IOwin * - * tests * fluent * ok * match * . * byte[] * x * func * func * byte * trans * ... * frameworks......... * jmes * xxx * sc * using var httpClient = new HttpClient(); * usings * maxRetries * up * xunit v3 * ct * --- * ct * ct2 * T Unit * WireMock.Net.TUnitTests / 10 * t unit first * --project * no tunit * t2 * --project * --project * ci - --project * publish ./test/wiremock-coverage.xml * windows * . * log * ... * log * goed * BodyType * . * . * --scenario * ... * pact * ct * . * WireMock.Net.RestClient.AwesomeAssertions (#1427) * WireMock.Net.RestClient.AwesomeAssertions * ok * atpath * fix test * sonar fixes * ports * proxy test * FIX? * --- * await Task.Delay(100, _ct); * ? * --project * Aspire: use IDistributedApplicationEventingSubscriber (#1428) * broadcast * ok * more tsts * . * Collection * up * . * 2 * remove nfluent * <VersionPrefix>2.0.0-preview-02</VersionPrefix> * ... * . * nuget icon * . * <PackageReference Include="JmesPath.Net" Version="1.1.0" /> * x * 500 * . * fix some warnings * ws
95 lines
3.6 KiB
C#
95 lines
3.6 KiB
C#
// Copyright © WireMock.Net
|
|
|
|
using System.Net.Http;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Moq;
|
|
using WireMock.Models;
|
|
using WireMock.RequestBuilders;
|
|
using WireMock.ResponseBuilders;
|
|
using WireMock.Server;
|
|
using WireMock.Settings;
|
|
using WireMock.Types;
|
|
using WireMock.Util;
|
|
|
|
namespace WireMock.Net.Tests.ResponseBuilders;
|
|
|
|
public class ResponseWithProxyTests : IDisposable
|
|
{
|
|
private const string ClientIp = "::1";
|
|
private readonly WireMockServerSettings _settings = new();
|
|
private readonly WireMockServer _server;
|
|
private readonly Guid _guid;
|
|
|
|
private readonly Mock<IMapping> _mappingMock;
|
|
|
|
public ResponseWithProxyTests()
|
|
{
|
|
_mappingMock = new Mock<IMapping>();
|
|
|
|
_guid = Guid.NewGuid();
|
|
|
|
_server = WireMockServer.Start();
|
|
_server.Given(Request.Create().UsingPost().WithPath($"/{_guid}"))
|
|
.RespondWith(Response.Create().WithStatusCode(201).WithBodyAsJson(new { p = 42 }).WithHeader("Content-Type", "application/json"));
|
|
_server.Given(Request.Create().UsingPost().WithPath($"/{_guid}/append"))
|
|
.RespondWith(Response.Create().WithStatusCode(201).WithBodyAsJson(new { p = 10 }).WithHeader("Content-Type", "application/json"));
|
|
_server.Given(Request.Create().UsingPost().WithPath($"/prepend/{_guid}"))
|
|
.RespondWith(Response.Create().WithStatusCode(201).WithBodyAsJson(new { p = 11 }).WithHeader("Content-Type", "application/json"));
|
|
_server.Given(Request.Create().UsingPost().WithPath($"/prepend/{_guid}/append"))
|
|
.RespondWith(Response.Create().WithStatusCode(201).WithBodyAsJson(new { p = 12 }).WithHeader("Content-Type", "application/json"));
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData("", "", "{\"p\":42}")]
|
|
[InlineData("", "/append", "{\"p\":10}")]
|
|
[InlineData("/prepend", "", "{\"p\":11}")]
|
|
[InlineData("/prepend", "/append", "{\"p\":12}")]
|
|
public async Task Response_WithProxy(string prepend, string append, string expectedBody)
|
|
{
|
|
// Assign
|
|
var headers = new Dictionary<string, string[]> { { "Content-Type", new[] { "application/xml" } } };
|
|
var request = new RequestMessage(new UrlDetails($"{_server.Urls[0]}{prepend}/{_guid}{append}"), "POST", ClientIp, new BodyData { DetectedBodyType = BodyType.Json, BodyAsJson = new { a = 1 } }, headers);
|
|
var responseBuilder = Response.Create().WithProxy(_server.Urls[0]);
|
|
|
|
// Act
|
|
var response = await responseBuilder.ProvideResponseAsync(_mappingMock.Object, Mock.Of<HttpContext>(), request, _settings);
|
|
|
|
// Assert
|
|
request.ProxyUrl.Should().NotBeNull();
|
|
response.Message.BodyData.BodyAsString.Should().Be(expectedBody);
|
|
response.Message.StatusCode.Should().Be(201);
|
|
response.Message.Headers["Content-Type"].ToString().Should().Be("application/json");
|
|
}
|
|
|
|
[Fact]
|
|
public void Response_WithProxy_WebProxySettings()
|
|
{
|
|
// Assign
|
|
var settings = new ProxyAndRecordSettings
|
|
{
|
|
Url = "http://test.nl",
|
|
WebProxySettings = new WebProxySettings
|
|
{
|
|
Address = "http://company",
|
|
UserName = "x",
|
|
Password = "y"
|
|
}
|
|
};
|
|
var responseBuilder = Response.Create().WithProxy(settings);
|
|
|
|
// Act
|
|
var request = new RequestMessage(new UrlDetails($"{_server.Urls[0]}/{_guid}"), "GET", ClientIp);
|
|
Func<Task> act = () => responseBuilder.ProvideResponseAsync(_mappingMock.Object, Mock.Of<HttpContext>(), request, _settings);
|
|
|
|
// Assert
|
|
act.Should().ThrowAsync<HttpRequestException>();
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
_server?.Stop();
|
|
_server?.Dispose();
|
|
}
|
|
}
|
|
|