mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-07-04 03:51:56 +02:00
@@ -0,0 +1,39 @@
|
|||||||
|
using System;
|
||||||
|
using NFluent;
|
||||||
|
using WireMock.Matchers.Request;
|
||||||
|
using WireMock.RequestBuilders;
|
||||||
|
using Xunit;
|
||||||
|
|
||||||
|
namespace WireMock.Net.Tests
|
||||||
|
{
|
||||||
|
public partial class RequestTests
|
||||||
|
{
|
||||||
|
[Fact]
|
||||||
|
public void Should_specify_requests_matching_given_url_wildcard()
|
||||||
|
{
|
||||||
|
// given
|
||||||
|
var spec = Request.Create().WithUrl("*/foo");
|
||||||
|
|
||||||
|
// when
|
||||||
|
var request = new RequestMessage(new Uri("http://localhost/foo"), "blabla", ClientIp);
|
||||||
|
|
||||||
|
// then
|
||||||
|
var requestMatchResult = new RequestMatchResult();
|
||||||
|
Check.That(spec.GetMatchingScore(request, requestMatchResult)).IsEqualTo(1.0);
|
||||||
|
}
|
||||||
|
|
||||||
|
[Fact]
|
||||||
|
public void Should_specify_requests_matching_given_url_exact()
|
||||||
|
{
|
||||||
|
// given
|
||||||
|
var spec = Request.Create().WithUrl("http://localhost/foo");
|
||||||
|
|
||||||
|
// when
|
||||||
|
var request = new RequestMessage(new Uri("http://localhost/foo"), "blabla", ClientIp);
|
||||||
|
|
||||||
|
// then
|
||||||
|
var requestMatchResult = new RequestMatchResult();
|
||||||
|
Check.That(spec.GetMatchingScore(request, requestMatchResult)).IsEqualTo(1.0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -83,20 +83,6 @@ namespace WireMock.Net.Tests
|
|||||||
Check.That(spec.GetMatchingScore(request, requestMatchResult)).IsNotEqualTo(1.0);
|
Check.That(spec.GetMatchingScore(request, requestMatchResult)).IsNotEqualTo(1.0);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
|
||||||
public void Should_specify_requests_matching_given_url()
|
|
||||||
{
|
|
||||||
// given
|
|
||||||
var spec = Request.Create().WithUrl("*/foo");
|
|
||||||
|
|
||||||
// when
|
|
||||||
var request = new RequestMessage(new Uri("http://localhost/foo"), "blabla", ClientIp);
|
|
||||||
|
|
||||||
// then
|
|
||||||
var requestMatchResult = new RequestMatchResult();
|
|
||||||
Check.That(spec.GetMatchingScore(request, requestMatchResult)).IsEqualTo(1.0);
|
|
||||||
}
|
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
public void Should_exclude_requests_matching_given_http_method_but_not_url()
|
public void Should_exclude_requests_matching_given_http_method_but_not_url()
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user