mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-12 21:35:55 +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
240 lines
7.5 KiB
C#
240 lines
7.5 KiB
C#
// Copyright © WireMock.Net
|
|
|
|
|
|
using WireMock.Matchers;
|
|
using WireMock.RequestBuilders;
|
|
using WireMock.Matchers.Request;
|
|
using WireMock.Models;
|
|
using WireMock.Util;
|
|
|
|
namespace WireMock.Net.Tests.RequestBuilders;
|
|
|
|
public class RequestBuilderWithPathTests
|
|
{
|
|
private const string ClientIp = "::1";
|
|
|
|
[Fact]
|
|
public void Request_WithPath_Spaces()
|
|
{
|
|
// Assign
|
|
var spec = Request.Create().WithPath("/path/a b").UsingAnyMethod();
|
|
|
|
// when
|
|
var body = new BodyData();
|
|
var request = new RequestMessage(new UrlDetails("http://localhost/path/a b"), "GET", ClientIp, body);
|
|
|
|
// then
|
|
var requestMatchResult = new RequestMatchResult();
|
|
spec.GetMatchingScore(request, requestMatchResult).Should().Be(1.0);
|
|
}
|
|
|
|
[Fact]
|
|
public void Request_WithPath_WithHeader_Match()
|
|
{
|
|
// given
|
|
var spec = Request.Create().WithPath("/foo").UsingAnyMethod().WithHeader("X-toto", "tata");
|
|
|
|
// when
|
|
var body = new BodyData
|
|
{
|
|
BodyAsString = "abc"
|
|
};
|
|
var request = new RequestMessage(new UrlDetails("http://localhost/foo"), "PUT", ClientIp, body, new Dictionary<string, string[]> { { "X-toto", new[] { "tata" } } });
|
|
|
|
// then
|
|
var requestMatchResult = new RequestMatchResult();
|
|
spec.GetMatchingScore(request, requestMatchResult).Should().Be(1.0);
|
|
}
|
|
|
|
[Fact]
|
|
public void Request_WithPath()
|
|
{
|
|
// given
|
|
var spec = Request.Create().WithPath("/foo");
|
|
|
|
// when
|
|
var request = new RequestMessage(new UrlDetails("http://localhost/foo"), "blabla", ClientIp);
|
|
|
|
// then
|
|
var requestMatchResult = new RequestMatchResult();
|
|
spec.GetMatchingScore(request, requestMatchResult).Should().Be(1.0);
|
|
}
|
|
|
|
[Fact]
|
|
public void Request_WithPaths()
|
|
{
|
|
var requestBuilder = Request.Create().WithPath("/x1", "/x2");
|
|
|
|
var request1 = new RequestMessage(new UrlDetails("http://localhost/x1"), "blabla", ClientIp);
|
|
var request2 = new RequestMessage(new UrlDetails("http://localhost/x2"), "blabla", ClientIp);
|
|
|
|
var requestMatchResult = new RequestMatchResult();
|
|
requestBuilder.GetMatchingScore(request1, requestMatchResult).Should().Be(1.0);
|
|
requestBuilder.GetMatchingScore(request2, requestMatchResult).Should().Be(1.0);
|
|
}
|
|
|
|
[Fact]
|
|
public void Request_WithPathFunc()
|
|
{
|
|
// given
|
|
var spec = Request.Create().WithPath(url => url.EndsWith("/foo"));
|
|
|
|
// when
|
|
var request = new RequestMessage(new UrlDetails("http://localhost/foo"), "blabla", ClientIp);
|
|
|
|
// then
|
|
var requestMatchResult = new RequestMatchResult();
|
|
spec.GetMatchingScore(request, requestMatchResult).Should().Be(1.0);
|
|
}
|
|
|
|
[Fact]
|
|
public void Request_WithPath_RegexMatcher_HasMatch()
|
|
{
|
|
// given
|
|
var spec = Request.Create().WithPath(new RegexMatcher("^/foo"));
|
|
|
|
// when
|
|
var request = new RequestMessage(new UrlDetails("http://localhost/foo/bar"), "blabla", ClientIp);
|
|
|
|
// then
|
|
var requestMatchResult = new RequestMatchResult();
|
|
spec.GetMatchingScore(request, requestMatchResult).Should().Be(1.0);
|
|
}
|
|
|
|
[Fact]
|
|
public void Request_WithPathRegexMatcher_HasNoMatch()
|
|
{
|
|
// given
|
|
var spec = Request.Create().WithPath("/foo");
|
|
|
|
// when
|
|
var request = new RequestMessage(new UrlDetails("http://localhost/bar"), "blabla", ClientIp);
|
|
|
|
// then
|
|
var requestMatchResult = new RequestMatchResult();
|
|
spec.GetMatchingScore(request, requestMatchResult).Should().NotBe(1.0);
|
|
}
|
|
|
|
[Fact]
|
|
public void Request_WithPath_RegexMatcher_WithPatternAsFile_HasMatch()
|
|
{
|
|
// Arrange
|
|
var pattern = new StringPattern
|
|
{
|
|
Pattern = "^/foo",
|
|
PatternAsFile = "c:\\x.txt"
|
|
};
|
|
var spec = Request.Create().WithPath(new RegexMatcher(pattern));
|
|
|
|
// when
|
|
var request = new RequestMessage(new UrlDetails("http://localhost/foo/bar"), "blabla", ClientIp);
|
|
|
|
// then
|
|
var requestMatchResult = new RequestMatchResult();
|
|
spec.GetMatchingScore(request, requestMatchResult).Should().Be(1.0);
|
|
}
|
|
|
|
[Fact]
|
|
public void Request_WithPath_Should_specify_requests_matching_given_path_and_method_delete()
|
|
{
|
|
// given
|
|
var spec = Request.Create().WithPath("/foo").UsingDelete();
|
|
|
|
// when
|
|
var body = new BodyData
|
|
{
|
|
BodyAsString = "whatever"
|
|
};
|
|
var request = new RequestMessage(new UrlDetails("http://localhost/foo"), "Delete", ClientIp, body);
|
|
|
|
// then
|
|
var requestMatchResult = new RequestMatchResult();
|
|
spec.GetMatchingScore(request, requestMatchResult).Should().Be(1.0);
|
|
}
|
|
|
|
[Fact]
|
|
public void Request_WithPath_Should_specify_requests_matching_given_path_and_method_get()
|
|
{
|
|
// given
|
|
var spec = Request.Create().WithPath("/foo").UsingGet();
|
|
|
|
// when
|
|
var request = new RequestMessage(new UrlDetails("http://localhost/foo"), "GET", ClientIp);
|
|
|
|
// then
|
|
var requestMatchResult = new RequestMatchResult();
|
|
spec.GetMatchingScore(request, requestMatchResult).Should().Be(1.0);
|
|
}
|
|
|
|
[Fact]
|
|
public void Request_WithPath_Should_specify_requests_matching_given_path_and_method_head()
|
|
{
|
|
// given
|
|
var spec = Request.Create().WithPath("/foo").UsingHead();
|
|
|
|
// when
|
|
var request = new RequestMessage(new UrlDetails("http://localhost/foo"), "HEAD", ClientIp);
|
|
|
|
// then
|
|
var requestMatchResult = new RequestMatchResult();
|
|
spec.GetMatchingScore(request, requestMatchResult).Should().Be(1.0);
|
|
}
|
|
|
|
[Fact]
|
|
public void Request_WithPath_Should_specify_requests_matching_given_path_and_method_post()
|
|
{
|
|
// given
|
|
var spec = Request.Create().WithPath("/foo").UsingPost();
|
|
|
|
// when
|
|
var request = new RequestMessage(new UrlDetails("http://localhost/foo"), "POST", ClientIp);
|
|
|
|
// then
|
|
var requestMatchResult = new RequestMatchResult();
|
|
spec.GetMatchingScore(request, requestMatchResult).Should().Be(1.0);
|
|
}
|
|
|
|
[Fact]
|
|
public void Request_WithPath_Should_specify_requests_matching_given_path_and_method_put()
|
|
{
|
|
// given
|
|
var spec = Request.Create().WithPath("/foo").UsingPut();
|
|
|
|
// when
|
|
var request = new RequestMessage(new UrlDetails("http://localhost/foo"), "PUT", ClientIp);
|
|
|
|
// then
|
|
var requestMatchResult = new RequestMatchResult();
|
|
spec.GetMatchingScore(request, requestMatchResult).Should().Be(1.0);
|
|
}
|
|
|
|
[Fact]
|
|
public void Request_WithPath_Should_specify_requests_matching_given_path_and_method_patch()
|
|
{
|
|
// given
|
|
var spec = Request.Create().WithPath("/foo").UsingPatch();
|
|
|
|
// when
|
|
var request = new RequestMessage(new UrlDetails("http://localhost/foo"), "PATCH", ClientIp);
|
|
|
|
// then
|
|
var requestMatchResult = new RequestMatchResult();
|
|
spec.GetMatchingScore(request, requestMatchResult).Should().Be(1.0);
|
|
}
|
|
|
|
[Fact]
|
|
public void Request_WithPath_Should_exclude_requests_matching_given_path_but_not_http_method()
|
|
{
|
|
// given
|
|
var spec = Request.Create().WithPath("/foo").UsingPut();
|
|
|
|
// when
|
|
var request = new RequestMessage(new UrlDetails("http://localhost/foo"), "HEAD", ClientIp);
|
|
|
|
// then
|
|
var requestMatchResult = new RequestMatchResult();
|
|
spec.GetMatchingScore(request, requestMatchResult).Should().NotBe(1.0);
|
|
}
|
|
}
|
|
|