mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-15 14:53:37 +01:00
* Add TIOBE + include SonarAnalyzer.CSharp * . * cp * Copyright © WireMock.Net * more fixes * fix * xpath * if (Matchers == null || !Matchers.Any()) * if (Matchers != null) * ? * . * .
57 lines
1.8 KiB
C#
57 lines
1.8 KiB
C#
// Copyright © WireMock.Net
|
|
|
|
using System.Threading.Tasks;
|
|
using FluentAssertions;
|
|
using Moq;
|
|
using WireMock.Models;
|
|
using WireMock.ResponseBuilders;
|
|
using WireMock.Settings;
|
|
using Xunit;
|
|
|
|
namespace WireMock.Net.Tests.ResponseBuilders;
|
|
|
|
public class ResponseWithFaultTests
|
|
{
|
|
private readonly WireMockServerSettings _settings = new();
|
|
private const string ClientIp = "::1";
|
|
|
|
private readonly Mock<IMapping> _mappingMock;
|
|
|
|
public ResponseWithFaultTests()
|
|
{
|
|
_mappingMock = new Mock<IMapping>();
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData(FaultType.EMPTY_RESPONSE)]
|
|
[InlineData(FaultType.MALFORMED_RESPONSE_CHUNK)]
|
|
public async Task Response_ProvideResponse_WithFault(FaultType faultType)
|
|
{
|
|
// Arrange
|
|
var request = new RequestMessage(new UrlDetails("http://localhost/fault"), "GET", ClientIp);
|
|
|
|
// Act
|
|
var responseBuilder = Response.Create().WithFault(faultType);
|
|
var response = await responseBuilder.ProvideResponseAsync(_mappingMock.Object, request, _settings).ConfigureAwait(false);
|
|
|
|
// Assert
|
|
response.Message.FaultType.Should().Be(faultType);
|
|
response.Message.FaultPercentage.Should().BeNull();
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData(FaultType.EMPTY_RESPONSE, 0.5)]
|
|
public async Task Response_ProvideResponse_WithFault_IncludingPercentage(FaultType faultType, double percentage)
|
|
{
|
|
// Arrange
|
|
var request = new RequestMessage(new UrlDetails("http://localhost/fault"), "GET", ClientIp);
|
|
|
|
// Act
|
|
var responseBuilder = Response.Create().WithFault(faultType, percentage);
|
|
var response = await responseBuilder.ProvideResponseAsync(_mappingMock.Object, request, _settings).ConfigureAwait(false);
|
|
|
|
// Assert
|
|
response.Message.FaultType.Should().Be(faultType);
|
|
response.Message.FaultPercentage.Should().Be(percentage);
|
|
}
|
|
} |