mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-22 00:59:02 +01:00
* RejectOnMatch (wip) * RejectOnMatch (wip) * RejectOnMatch (wip) * RejectOnMatch (wip) * docs: improve sample app matcher to show use of reject on match * Reworked code review comments
77 lines
2.3 KiB
C#
77 lines
2.3 KiB
C#
using System;
|
|
using System.Linq;
|
|
using System.Xml;
|
|
using JetBrains.Annotations;
|
|
using WireMock.Validation;
|
|
#if !NETSTANDARD1_3
|
|
using Wmhelp.XPath2;
|
|
#endif
|
|
|
|
namespace WireMock.Matchers
|
|
{
|
|
/// <summary>
|
|
/// XPath2Matcher
|
|
/// </summary>
|
|
/// <seealso cref="IStringMatcher" />
|
|
public class XPathMatcher : IStringMatcher
|
|
{
|
|
private readonly string[] _patterns;
|
|
|
|
/// <inheritdoc cref="IMatcher.MatchBehaviour"/>
|
|
public MatchBehaviour MatchBehaviour { get; }
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="XPathMatcher"/> class.
|
|
/// </summary>
|
|
/// <param name="patterns">The patterns.</param>
|
|
public XPathMatcher([NotNull] params string[] patterns) : this(MatchBehaviour.AcceptOnMatch, patterns)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="XPathMatcher"/> class.
|
|
/// </summary>
|
|
/// <param name="matchBehaviour">The match behaviour.</param>
|
|
/// <param name="patterns">The patterns.</param>
|
|
public XPathMatcher(MatchBehaviour matchBehaviour, [NotNull] params string[] patterns)
|
|
{
|
|
Check.NotNull(patterns, nameof(patterns));
|
|
|
|
MatchBehaviour = matchBehaviour;
|
|
_patterns = patterns;
|
|
}
|
|
|
|
/// <inheritdoc cref="IStringMatcher.IsMatch"/>
|
|
public double IsMatch(string input)
|
|
{
|
|
double match = MatchScores.Mismatch;
|
|
if (input != null)
|
|
{
|
|
try
|
|
{
|
|
var nav = new XmlDocument { InnerXml = input }.CreateNavigator();
|
|
#if NETSTANDARD1_3
|
|
match = MatchScores.ToScore(_patterns.Select(p => true.Equals(nav.Evaluate($"boolean({p})"))));
|
|
#else
|
|
match = MatchScores.ToScore(_patterns.Select(p => true.Equals(nav.XPath2Evaluate($"boolean({p})"))));
|
|
#endif
|
|
}
|
|
catch (Exception)
|
|
{
|
|
// just ignore exception
|
|
}
|
|
}
|
|
|
|
return MatchBehaviourHelper.Convert(MatchBehaviour, match);
|
|
}
|
|
|
|
/// <inheritdoc cref="IStringMatcher.GetPatterns"/>
|
|
public string[] GetPatterns()
|
|
{
|
|
return _patterns;
|
|
}
|
|
|
|
/// <inheritdoc cref="IMatcher.Name"/>
|
|
public string Name => "XPathMatcher";
|
|
}
|
|
} |