mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-14 07:33:33 +01:00
* netcore 2.1 * SimpleCommandLineParserTests * tests * SimpleCommandLineParserTests * test report * AspNetCoreSelfHost * Fixed Resharper warnings * tests * . * ResponseWithProxyTests ResponseWithProxyTests * postmanecho
68 lines
2.1 KiB
C#
68 lines
2.1 KiB
C#
using NFluent;
|
|
using WireMock.Matchers;
|
|
using WireMock.Matchers.Request;
|
|
using WireMock.Models;
|
|
using WireMock.RequestBuilders;
|
|
using Xunit;
|
|
|
|
namespace WireMock.Net.Tests
|
|
{
|
|
public class RequestWithClientIPTests
|
|
{
|
|
[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);
|
|
}
|
|
}
|
|
} |