mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-18 07:13:46 +01:00
50 lines
1.6 KiB
C#
50 lines
1.6 KiB
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using Stef.Validation;
|
|
|
|
namespace WireMock.Matchers.Request;
|
|
|
|
/// <summary>
|
|
/// The composite request matcher.
|
|
/// </summary>
|
|
public abstract class RequestMessageCompositeMatcher : IRequestMatcher
|
|
{
|
|
private readonly CompositeMatcherType _type;
|
|
|
|
/// <summary>
|
|
/// Gets the request matchers.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The request matchers.
|
|
/// </value>
|
|
private IEnumerable<IRequestMatcher> RequestMatchers { get; }
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="RequestMessageCompositeMatcher"/> class.
|
|
/// </summary>
|
|
/// <param name="requestMatchers">The request matchers.</param>
|
|
/// <param name="type">The CompositeMatcherType type (Defaults to 'And')</param>
|
|
protected RequestMessageCompositeMatcher(IEnumerable<IRequestMatcher> requestMatchers, CompositeMatcherType type = CompositeMatcherType.And)
|
|
{
|
|
Guard.NotNull(requestMatchers);
|
|
|
|
_type = type;
|
|
RequestMatchers = requestMatchers;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public double GetMatchingScore(IRequestMessage requestMessage, IRequestMatchResult requestMatchResult)
|
|
{
|
|
if (!RequestMatchers.Any())
|
|
{
|
|
return MatchScores.Mismatch;
|
|
}
|
|
|
|
if (_type == CompositeMatcherType.And)
|
|
{
|
|
return RequestMatchers.Average(requestMatcher => requestMatcher.GetMatchingScore(requestMessage, requestMatchResult));
|
|
}
|
|
|
|
return RequestMatchers.Max(requestMatcher => requestMatcher.GetMatchingScore(requestMessage, requestMatchResult));
|
|
}
|
|
} |