mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-16 15:16:53 +01:00
* wip * . * mm * x * . * . * . * tests * . * more tests * trans * x * win * fix * . * tests
67 lines
2.0 KiB
C#
67 lines
2.0 KiB
C#
using NFluent;
|
|
using WireMock.Matchers;
|
|
using WireMock.Matchers.Request;
|
|
using WireMock.Models;
|
|
using WireMock.RequestBuilders;
|
|
using Xunit;
|
|
|
|
namespace WireMock.Net.Tests.RequestBuilders;
|
|
|
|
public class RequestBuilderWithClientIPTests
|
|
{
|
|
[Fact]
|
|
public void Request_WithClientIP_Match_Ok()
|
|
{
|
|
// given
|
|
var spec = Request.Create().WithClientIP("127.0.0.2", "1.1.1.1");
|
|
|
|
// when
|
|
var request = new RequestMessage(new UrlDetails("http://localhost"), "GET", "127.0.0.2");
|
|
|
|
// then
|
|
var requestMatchResult = new RequestMatchResult();
|
|
Check.That(spec.GetMatchingScore(request, requestMatchResult)).IsEqualTo(1.0);
|
|
}
|
|
|
|
[Fact]
|
|
public void Request_WithClientIP_Match_Fail()
|
|
{
|
|
// given
|
|
var spec = Request.Create().WithClientIP("127.0.0.2");
|
|
|
|
// when
|
|
var request = new RequestMessage(new UrlDetails("http://localhost"), "GET", "192.1.1.1");
|
|
|
|
// then
|
|
var requestMatchResult = new RequestMatchResult();
|
|
Check.That(spec.GetMatchingScore(request, requestMatchResult)).IsEqualTo(0.0);
|
|
}
|
|
|
|
[Fact]
|
|
public void Request_WithClientIP_WildcardMatcher()
|
|
{
|
|
// given
|
|
var spec = Request.Create().WithClientIP(new WildcardMatcher("127.0.0.2"));
|
|
|
|
// when
|
|
var request = new RequestMessage(new UrlDetails("http://localhost"), "GET", "127.0.0.2");
|
|
|
|
// then
|
|
var requestMatchResult = new RequestMatchResult();
|
|
Check.That(spec.GetMatchingScore(request, requestMatchResult)).IsEqualTo(1.0);
|
|
}
|
|
|
|
[Fact]
|
|
public void Request_WithClientIP_Func()
|
|
{
|
|
// given
|
|
var spec = Request.Create().WithClientIP(c => c.Contains("."));
|
|
|
|
// when
|
|
var request = new RequestMessage(new UrlDetails("http://localhost"), "GET", "127.0.0.2");
|
|
|
|
// then
|
|
var requestMatchResult = new RequestMatchResult();
|
|
Check.That(spec.GetMatchingScore(request, requestMatchResult)).IsEqualTo(1.0);
|
|
}
|
|
} |