mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-05-03 06:04:28 +02:00
174 lines
6.2 KiB
C#
174 lines
6.2 KiB
C#
// Copyright © WireMock.Net
|
|
|
|
#pragma warning disable CS1591
|
|
using AnyOfTypes;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Linq;
|
|
using WireMock.Extensions;
|
|
using WireMock.Matchers;
|
|
using WireMock.Models;
|
|
|
|
// ReSharper disable once CheckNamespace
|
|
namespace WireMock.AwesomeAssertions;
|
|
|
|
public partial class WireMockAssertions
|
|
{
|
|
private const string MessageFormatNoCalls = "Expected {context:wiremockserver} to have been called using body {0}{reason}, but no calls were made.";
|
|
private const string MessageFormat = "Expected {context:wiremockserver} to have been called using body {0}{reason}, but didn't find it among the body/bodies {1}.";
|
|
|
|
[CustomAssertion]
|
|
public AndConstraint<WireMockAssertions> WithBody(string body, string because = "", params object[] becauseArgs)
|
|
{
|
|
return WithBody(new WildcardMatcher(body), because, becauseArgs);
|
|
}
|
|
|
|
[CustomAssertion]
|
|
public AndConstraint<WireMockAssertions> WithBody(IStringMatcher matcher, string because = "", params object[] becauseArgs)
|
|
{
|
|
var (filter, condition) = BuildFilterAndCondition(r => r.Body, matcher);
|
|
|
|
return ExecuteAssertionWithBodyStringMatcher(matcher, because, becauseArgs, condition, filter, r => r.Body);
|
|
}
|
|
|
|
[CustomAssertion]
|
|
public AndConstraint<WireMockAssertions> WithBodyAsJson(object body, IJsonMatcher? jsonMatcher = null, string because = "", params object[] becauseArgs)
|
|
{
|
|
return WithBodyAsJson(jsonMatcher ?? new JsonMatcher(body), because, becauseArgs);
|
|
}
|
|
|
|
[CustomAssertion]
|
|
public AndConstraint<WireMockAssertions> WithBodyAsJson(string body, IJsonMatcher? jsonMatcher = null, string because = "", params object[] becauseArgs)
|
|
{
|
|
return WithBodyAsJson(jsonMatcher ?? new JsonMatcher(body), because, becauseArgs);
|
|
}
|
|
|
|
[CustomAssertion]
|
|
public AndConstraint<WireMockAssertions> WithBodyAsJson(IJsonMatcher matcher, string because = "", params object[] becauseArgs)
|
|
{
|
|
var (filter, condition) = BuildFilterAndCondition(r => r.BodyAsJson, matcher);
|
|
|
|
return ExecuteAssertionWithBodyAsIObjectMatcher(matcher, because, becauseArgs, condition, filter, r => r.BodyAsJson);
|
|
}
|
|
|
|
[CustomAssertion]
|
|
public AndConstraint<WireMockAssertions> WithBodyAsBytes(byte[] body, string because = "", params object[] becauseArgs)
|
|
{
|
|
return WithBodyAsBytes(new ExactObjectMatcher(body), because, becauseArgs);
|
|
}
|
|
|
|
[CustomAssertion]
|
|
public AndConstraint<WireMockAssertions> WithBodyAsBytes(ExactObjectMatcher matcher, string because = "", params object[] becauseArgs)
|
|
{
|
|
var (filter, condition) = BuildFilterAndCondition(r => r.BodyAsBytes, matcher);
|
|
|
|
return ExecuteAssertionWithBodyAsIObjectMatcher(matcher, because, becauseArgs, condition, filter, r => r.BodyAsBytes);
|
|
}
|
|
|
|
private AndConstraint<WireMockAssertions> ExecuteAssertionWithBodyStringMatcher(
|
|
IStringMatcher matcher,
|
|
string because,
|
|
object[] becauseArgs,
|
|
Func<IReadOnlyList<IRequestMessage>, bool> condition,
|
|
Func<IReadOnlyList<IRequestMessage>, IReadOnlyList<IRequestMessage>> filter,
|
|
Func<IRequestMessage, object?> expression
|
|
)
|
|
{
|
|
_chain
|
|
.BecauseOf(because, becauseArgs)
|
|
.Given(() => RequestMessages)
|
|
.ForCondition(requests => CallsCount == 0 || requests.Any())
|
|
.FailWith(
|
|
MessageFormatNoCalls,
|
|
FormatBody(matcher.GetPatterns())
|
|
)
|
|
.Then
|
|
.ForCondition(condition)
|
|
.FailWith(
|
|
MessageFormat,
|
|
_ => FormatBody(matcher.GetPatterns()),
|
|
requests => FormatBodies(requests.Select(expression))
|
|
);
|
|
|
|
FilterRequestMessages(filter);
|
|
|
|
return new AndConstraint<WireMockAssertions>(this);
|
|
}
|
|
|
|
private AndConstraint<WireMockAssertions> ExecuteAssertionWithBodyAsIObjectMatcher(
|
|
IObjectMatcher matcher,
|
|
string because,
|
|
object[] becauseArgs,
|
|
Func<IReadOnlyList<IRequestMessage>, bool> condition,
|
|
Func<IReadOnlyList<IRequestMessage>, IReadOnlyList<IRequestMessage>> filter,
|
|
Func<IRequestMessage, object?> expression
|
|
)
|
|
{
|
|
_chain
|
|
.BecauseOf(because, becauseArgs)
|
|
.Given(() => RequestMessages)
|
|
.ForCondition(requests => CallsCount == 0 || requests.Any())
|
|
.FailWith(
|
|
MessageFormatNoCalls,
|
|
FormatBody(matcher.Value)
|
|
)
|
|
.Then
|
|
.ForCondition(condition)
|
|
.FailWith(
|
|
MessageFormat,
|
|
_ => FormatBody(matcher.Value),
|
|
requests => FormatBodies(requests.Select(expression))
|
|
);
|
|
|
|
FilterRequestMessages(filter);
|
|
|
|
return new AndConstraint<WireMockAssertions>(this);
|
|
}
|
|
|
|
private static string? FormatBody(object? body)
|
|
{
|
|
if (body == null)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
if (body is string str)
|
|
{
|
|
return str;
|
|
}
|
|
|
|
if (body is AnyOf<string, StringPattern>[] stringPatterns)
|
|
{
|
|
return FormatBodies(stringPatterns.Select(p => p.GetPattern()));
|
|
}
|
|
|
|
if (body is byte[] bytes)
|
|
{
|
|
return $"byte[{bytes.Length}] {{...}}";
|
|
}
|
|
|
|
if (body is JToken jToken)
|
|
{
|
|
return jToken.ToString(Formatting.None);
|
|
}
|
|
|
|
// System.IO.FileNotFoundException : Could not load file or assembly 'System.Text.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'. The system cannot find the file specified.
|
|
var typeName = body.GetType().FullName;
|
|
if (typeName == "System.Text.Json.JsonElement")
|
|
{
|
|
return ((dynamic)body).GetRawText();
|
|
}
|
|
|
|
if (typeName == "System.Text.Json.JsonDocument")
|
|
{
|
|
return ((dynamic)body).RootElement.GetRawText();
|
|
}
|
|
|
|
return JToken.FromObject(body).ToString(Formatting.None);
|
|
}
|
|
|
|
private static string? FormatBodies(IEnumerable<object?> bodies)
|
|
{
|
|
var valueAsArray = bodies as object[] ?? bodies.ToArray();
|
|
return valueAsArray.Length == 1 ? FormatBody(valueAsArray[0]) : $"[ {string.Join(", ", valueAsArray.Select(FormatBody))} ]";
|
|
}
|
|
} |