mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-15 23:03:55 +01:00
* matcher
* wip
* fix
* <VersionPrefix>1.4.0</VersionPrefix>
* .
* x
* ?
* netstandard2.1
* {}
* test
* Fix: Assembly with same name is already loaded
* _format file
* AssemblyFile = $"WireMock.CodeHelper.Class{Guid.NewGuid()}"
* AssemblyFile = $"WireMock.CodeHelper.Class{Guid.NewGuid().ToString().Replace("-", "")}"
* GC
* x
* remove load ex
* ret
* readme
* no GC
* GetImplementationTypeByInterface
* ``
* PluginLoader
* type
276 lines
7.7 KiB
C#
276 lines
7.7 KiB
C#
using System;
|
|
using FluentAssertions;
|
|
using NFluent;
|
|
using WireMock.Admin.Mappings;
|
|
using WireMock.Matchers;
|
|
using WireMock.Serialization;
|
|
using WireMock.Settings;
|
|
using Xunit;
|
|
|
|
namespace WireMock.Net.Tests.Serialization
|
|
{
|
|
public class MatcherModelMapperTests
|
|
{
|
|
private readonly WireMockServerSettings _settings = new WireMockServerSettings();
|
|
|
|
private readonly MatcherMapper _sut;
|
|
|
|
public MatcherModelMapperTests()
|
|
{
|
|
_sut = new MatcherMapper(_settings);
|
|
}
|
|
|
|
[Fact]
|
|
public void MatcherModelMapper_Map_CSharpCodeMatcher()
|
|
{
|
|
// Assign
|
|
var model = new MatcherModel
|
|
{
|
|
Name = "CSharpCodeMatcher",
|
|
Patterns = new[] { "return it == \"x\";" }
|
|
};
|
|
var sut = new MatcherMapper(new WireMockServerSettings { AllowCSharpCodeMatcher = true });
|
|
|
|
// Act 1
|
|
var matcher1 = (ICSharpCodeMatcher)sut.Map(model);
|
|
|
|
// Assert 1
|
|
matcher1.Should().NotBeNull();
|
|
matcher1.IsMatch("x").Should().Be(1.0d);
|
|
|
|
// Act 2
|
|
var matcher2 = (ICSharpCodeMatcher)sut.Map(model);
|
|
|
|
// Assert 2
|
|
matcher2.Should().NotBeNull();
|
|
matcher2.IsMatch("x").Should().Be(1.0d);
|
|
}
|
|
|
|
[Fact]
|
|
public void MatcherModelMapper_Map_CSharpCodeMatcher_NotAllowed_ThrowsException()
|
|
{
|
|
// Assign
|
|
var model = new MatcherModel
|
|
{
|
|
Name = "CSharpCodeMatcher",
|
|
Patterns = new[] { "x" }
|
|
};
|
|
var sut = new MatcherMapper(new WireMockServerSettings { AllowCSharpCodeMatcher = false });
|
|
|
|
// Act
|
|
Action action = () => sut.Map(model);
|
|
|
|
// Assert
|
|
action.Should().Throw<NotSupportedException>();
|
|
}
|
|
|
|
[Fact]
|
|
public void MatcherModelMapper_Map_Null()
|
|
{
|
|
// Act
|
|
IMatcher matcher = _sut.Map((MatcherModel)null);
|
|
|
|
// Assert
|
|
Check.That(matcher).IsNull();
|
|
}
|
|
|
|
[Fact]
|
|
public void MatcherModelMapper_Map_ExactMatcher_Pattern()
|
|
{
|
|
// Assign
|
|
var model = new MatcherModel
|
|
{
|
|
Name = "ExactMatcher",
|
|
Patterns = new[] { "x" }
|
|
};
|
|
|
|
// Act
|
|
var matcher = (ExactMatcher)_sut.Map(model);
|
|
|
|
// Assert
|
|
matcher.GetPatterns().Should().ContainSingle("x");
|
|
matcher.ThrowException.Should().BeFalse();
|
|
}
|
|
|
|
[Fact]
|
|
public void MatcherModelMapper_Map_ExactMatcher_Patterns()
|
|
{
|
|
// Assign
|
|
var model = new MatcherModel
|
|
{
|
|
Name = "ExactMatcher",
|
|
Patterns = new[] { "x", "y" }
|
|
};
|
|
|
|
// Act
|
|
var matcher = (ExactMatcher)_sut.Map(model);
|
|
|
|
// Assert
|
|
Check.That(matcher.GetPatterns()).ContainsExactly("x", "y");
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData(nameof(LinqMatcher))]
|
|
[InlineData(nameof(ExactMatcher))]
|
|
[InlineData(nameof(ExactObjectMatcher))]
|
|
[InlineData(nameof(RegexMatcher))]
|
|
[InlineData(nameof(JsonMatcher))]
|
|
[InlineData(nameof(JsonPathMatcher))]
|
|
[InlineData(nameof(JmesPathMatcher))]
|
|
[InlineData(nameof(XPathMatcher))]
|
|
[InlineData(nameof(WildcardMatcher))]
|
|
[InlineData(nameof(ContentTypeMatcher))]
|
|
[InlineData(nameof(SimMetricsMatcher))]
|
|
public void MatcherModelMapper_Map_ThrowExceptionWhenMatcherFails_True(string name)
|
|
{
|
|
// Assign
|
|
var settings = new WireMockServerSettings
|
|
{
|
|
ThrowExceptionWhenMatcherFails = true
|
|
};
|
|
var sut = new MatcherMapper(settings);
|
|
var model = new MatcherModel
|
|
{
|
|
Name = name,
|
|
Patterns = new[] { "" }
|
|
};
|
|
|
|
// Act
|
|
var matcher = sut.Map(model);
|
|
|
|
// Assert
|
|
matcher.ThrowException.Should().BeTrue();
|
|
}
|
|
|
|
[Fact]
|
|
public void MatcherModelMapper_Map_ExactObjectMatcher_ValidBase64StringPattern()
|
|
{
|
|
// Assign
|
|
var model = new MatcherModel
|
|
{
|
|
Name = "ExactObjectMatcher",
|
|
Patterns = new object[] { "c3RlZg==" }
|
|
};
|
|
|
|
// Act
|
|
var matcher = (ExactObjectMatcher)_sut.Map(model);
|
|
|
|
// Assert
|
|
Check.That(matcher.ValueAsBytes).ContainsExactly(new byte[] { 115, 116, 101, 102 });
|
|
}
|
|
|
|
[Fact]
|
|
public void MatcherModelMapper_Map_ExactObjectMatcher_InvalidBase64StringPattern()
|
|
{
|
|
// Assign
|
|
var model = new MatcherModel
|
|
{
|
|
Name = "ExactObjectMatcher",
|
|
Patterns = new object[] { "_" }
|
|
};
|
|
|
|
// Act & Assert
|
|
Check.ThatCode(() => _sut.Map(model)).Throws<ArgumentException>();
|
|
}
|
|
|
|
[Fact]
|
|
public void MatcherModelMapper_Map_RegexMatcher()
|
|
{
|
|
// Assign
|
|
var model = new MatcherModel
|
|
{
|
|
Name = "RegexMatcher",
|
|
Patterns = new[] { "x", "y" },
|
|
IgnoreCase = true
|
|
};
|
|
|
|
// Act
|
|
var matcher = (RegexMatcher)_sut.Map(model);
|
|
|
|
// Assert
|
|
Check.That(matcher.GetPatterns()).ContainsExactly("x", "y");
|
|
Check.That(matcher.IsMatch("X")).IsEqualTo(0.5d);
|
|
}
|
|
|
|
[Fact]
|
|
public void MatcherModelMapper_Map_WildcardMatcher()
|
|
{
|
|
// Assign
|
|
var model = new MatcherModel
|
|
{
|
|
Name = "WildcardMatcher",
|
|
Patterns = new[] { "x", "y" },
|
|
IgnoreCase = true
|
|
};
|
|
|
|
// Act
|
|
var matcher = (WildcardMatcher)_sut.Map(model);
|
|
|
|
// Assert
|
|
Check.That(matcher.GetPatterns()).ContainsExactly("x", "y");
|
|
Check.That(matcher.IsMatch("X")).IsEqualTo(0.5d);
|
|
}
|
|
|
|
[Fact]
|
|
public void MatcherModelMapper_Map_SimMetricsMatcher()
|
|
{
|
|
// Assign
|
|
var model = new MatcherModel
|
|
{
|
|
Name = "SimMetricsMatcher",
|
|
Pattern = "x"
|
|
};
|
|
|
|
// Act
|
|
var matcher = (SimMetricsMatcher)_sut.Map(model);
|
|
|
|
// Assert
|
|
Check.That(matcher.GetPatterns()).ContainsExactly("x");
|
|
}
|
|
|
|
[Fact]
|
|
public void MatcherModelMapper_Map_SimMetricsMatcher_BlockDistance()
|
|
{
|
|
// Assign
|
|
var model = new MatcherModel
|
|
{
|
|
Name = "SimMetricsMatcher.BlockDistance",
|
|
Pattern = "x"
|
|
};
|
|
|
|
// Act
|
|
var matcher = (SimMetricsMatcher)_sut.Map(model);
|
|
|
|
// Assert
|
|
Check.That(matcher.GetPatterns()).ContainsExactly("x");
|
|
}
|
|
|
|
[Fact]
|
|
public void MatcherModelMapper_Map_SimMetricsMatcher_Throws1()
|
|
{
|
|
// Assign
|
|
var model = new MatcherModel
|
|
{
|
|
Name = "error",
|
|
Pattern = "x"
|
|
};
|
|
|
|
// Act
|
|
Check.ThatCode(() => _sut.Map(model)).Throws<NotSupportedException>();
|
|
}
|
|
|
|
[Fact]
|
|
public void MatcherModelMapper_Map_SimMetricsMatcher_Throws2()
|
|
{
|
|
// Assign
|
|
var model = new MatcherModel
|
|
{
|
|
Name = "SimMetricsMatcher.error",
|
|
Pattern = "x"
|
|
};
|
|
|
|
// Act
|
|
Check.ThatCode(() => _sut.Map(model)).Throws<NotSupportedException>();
|
|
}
|
|
}
|
|
} |