mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-17 23:57:03 +01:00
74 lines
2.4 KiB
C#
74 lines
2.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using JetBrains.Annotations;
|
|
using WireMock.Validation;
|
|
|
|
namespace WireMock.Matchers.Request
|
|
{
|
|
/// <summary>
|
|
/// The request header matcher.
|
|
/// </summary>
|
|
public class RequestMessageHeaderMatcher : IRequestMatcher
|
|
{
|
|
/// <summary>
|
|
/// The name.
|
|
/// </summary>
|
|
private readonly string _name;
|
|
|
|
/// <summary>
|
|
/// The matcher.
|
|
/// </summary>
|
|
private readonly IMatcher _matcher;
|
|
|
|
/// <summary>
|
|
/// The header function
|
|
/// </summary>
|
|
private readonly Func<IDictionary<string, string>, bool> _headerFunc;
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="RequestMessageHeaderMatcher"/> class.
|
|
/// </summary>
|
|
/// <param name="name">The name.</param>
|
|
/// <param name="pattern">The pattern.</param>
|
|
/// <param name="ignoreCase">The ignoreCase.</param>
|
|
public RequestMessageHeaderMatcher([NotNull] string name, [NotNull] string pattern, bool ignoreCase = true)
|
|
{
|
|
Check.NotNull(name, nameof(name));
|
|
Check.NotNull(pattern, nameof(pattern));
|
|
|
|
_name = name;
|
|
_matcher = new WildcardMatcher(pattern, ignoreCase);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="RequestMessageHeaderMatcher"/> class.
|
|
/// </summary>
|
|
/// <param name="func">
|
|
/// The func.
|
|
/// </param>
|
|
public RequestMessageHeaderMatcher([NotNull] Func<IDictionary<string, string>, bool> func)
|
|
{
|
|
Check.NotNull(func, nameof(func));
|
|
_headerFunc = func;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Determines whether the specified RequestMessage is match.
|
|
/// </summary>
|
|
/// <param name="requestMessage">The RequestMessage.</param>
|
|
/// <returns>
|
|
/// <c>true</c> if the specified RequestMessage is match; otherwise, <c>false</c>.
|
|
/// </returns>
|
|
public bool IsMatch(RequestMessage requestMessage)
|
|
{
|
|
if (_headerFunc != null)
|
|
return _headerFunc(requestMessage.Headers);
|
|
|
|
if (requestMessage.Headers == null)
|
|
return false;
|
|
|
|
string headerValue = requestMessage.Headers[_name];
|
|
return _matcher.IsMatch(headerValue);
|
|
}
|
|
}
|
|
} |