using System; using System.Collections.Generic; using System.Linq; using JetBrains.Annotations; using WireMock.Validation; namespace WireMock.Matchers.Request { /// /// The request url matcher. /// public class RequestMessageUrlMatcher : IRequestMatcher { /// /// The matchers. /// public IReadOnlyList Matchers { get; } /// /// The url functions. /// public Func[] Funcs { get; } /// /// Initializes a new instance of the class. /// /// The urls. public RequestMessageUrlMatcher([NotNull] params string[] urls) : this(urls.Select(url => new WildcardMatcher(url)).Cast().ToArray()) { } /// /// Initializes a new instance of the class. /// /// The matchers. public RequestMessageUrlMatcher([NotNull] params IMatcher[] matchers) { Check.NotNull(matchers, nameof(matchers)); Matchers = matchers; } /// /// Initializes a new instance of the class. /// /// The url functions. public RequestMessageUrlMatcher([NotNull] params Func[] funcs) { Check.NotNull(funcs, nameof(funcs)); Funcs = funcs; } /// public double GetMatchingScore(RequestMessage requestMessage, RequestMatchResult requestMatchResult) { double score = IsMatch(requestMessage); return requestMatchResult.AddScore(GetType(), score); } private double IsMatch(RequestMessage requestMessage) { if (Matchers != null) return Matchers.Max(matcher => matcher.IsMatch(requestMessage.Url)); if (Funcs != null) return MatchScores.ToScore(requestMessage.Url != null && Funcs.Any(func => func(requestMessage.Url))); return MatchScores.Mismatch; } } }