mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-04-26 10:18:26 +02:00
56 lines
1.9 KiB
C#
56 lines
1.9 KiB
C#
// Copyright © WireMock.Net
|
|
|
|
using System.Linq;
|
|
using Stef.Validation;
|
|
|
|
namespace WireMock.Matchers.Request;
|
|
|
|
/// <summary>
|
|
/// The request method matcher.
|
|
/// </summary>
|
|
internal class RequestMessageMethodMatcher : IRequestMatcher
|
|
{
|
|
/// <summary>
|
|
/// The <see cref="Matchers.MatchBehaviour"/>
|
|
/// </summary>
|
|
public MatchBehaviour MatchBehaviour { get; }
|
|
|
|
/// <summary>
|
|
/// The <see cref="Matchers.MatchOperator"/>
|
|
/// </summary>
|
|
public MatchOperator MatchOperator { get; }
|
|
|
|
/// <summary>
|
|
/// The methods
|
|
/// </summary>
|
|
public string[] Methods { get; }
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="RequestMessageMethodMatcher"/> class.
|
|
/// </summary>
|
|
/// <param name="methods">The methods.</param>
|
|
public RequestMessageMethodMatcher(params string[] methods) : this(MatchBehaviour.AcceptOnMatch, MatchOperator.Or, methods)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="RequestMessageMethodMatcher"/> class.
|
|
/// </summary>
|
|
/// <param name="matchBehaviour">The match behaviour.</param>
|
|
/// <param name="matchOperator">The <see cref="Matchers.MatchOperator"/> to use.</param>
|
|
/// <param name="methods">The methods.</param>
|
|
public RequestMessageMethodMatcher(MatchBehaviour matchBehaviour, MatchOperator matchOperator, params string[] methods)
|
|
{
|
|
Methods = Guard.NotNull(methods);
|
|
MatchBehaviour = matchBehaviour;
|
|
MatchOperator = matchOperator;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public double GetMatchingScore(IRequestMessage requestMessage, IRequestMatchResult requestMatchResult)
|
|
{
|
|
var scores = Methods.Select(m => string.Equals(m, requestMessage.Method, StringComparison.OrdinalIgnoreCase)).ToArray();
|
|
var score = MatchScores.ToScore(scores, MatchOperator);
|
|
return requestMatchResult.AddScore(GetType(), score, null);
|
|
}
|
|
} |