mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-09-16 14:51:22 +02:00
* Upgrade dependency RamlToOpenApiConverter to version 0.40.0 * fix code comment * . * Potential fix for pull request finding 'Constant condition' Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com> * Potential fix for pull request finding 'Constant condition' Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com> * fix --------- Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com>
93 lines
3.1 KiB
C#
93 lines
3.1 KiB
C#
using Moq;
|
|
using WireMock.Net.OpenApiParser;
|
|
using WireMock.Net.OpenApiParser.Settings;
|
|
|
|
namespace WireMock.Net.Tests.OpenApiParser;
|
|
|
|
public class WireMockOpenApiParserTests
|
|
{
|
|
private readonly DateTime _exampleDateTime = new(2024, 6, 19, 12, 34, 56, DateTimeKind.Utc);
|
|
private readonly Mock<IWireMockOpenApiParserExampleValues> _exampleValuesMock = new();
|
|
|
|
private readonly WireMockOpenApiParser _sut = new();
|
|
|
|
public WireMockOpenApiParserTests()
|
|
{
|
|
_exampleValuesMock.SetupGet(e => e.Boolean).Returns(true);
|
|
_exampleValuesMock.SetupGet(e => e.Integer).Returns(42);
|
|
_exampleValuesMock.SetupGet(e => e.Float).Returns(1.1f);
|
|
_exampleValuesMock.SetupGet(e => e.Decimal).Returns(2.2m);
|
|
_exampleValuesMock.SetupGet(e => e.String).Returns("example-string");
|
|
_exampleValuesMock.SetupGet(e => e.Object).Returns("example-object");
|
|
_exampleValuesMock.SetupGet(e => e.Bytes).Returns("Stef"u8.ToArray());
|
|
_exampleValuesMock.SetupGet(e => e.Date).Returns(() => _exampleDateTime.Date);
|
|
_exampleValuesMock.SetupGet(e => e.DateTime).Returns(() => _exampleDateTime);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task FromText_UsingYaml_ShouldReturnMappings()
|
|
{
|
|
// Arrange
|
|
var settings = new WireMockOpenApiParserSettings
|
|
{
|
|
ExampleValues = _exampleValuesMock.Object
|
|
};
|
|
|
|
var openApiDocument = File.ReadAllText(Path.Combine("OpenApiParser", "payroc-openapi-spec.yaml"));
|
|
|
|
// Act
|
|
var mappings = _sut.FromText(openApiDocument, settings, out var diagnostic);
|
|
|
|
// Assert
|
|
mappings.Should().NotBeEmpty();
|
|
diagnostic.Should().NotBeNull();
|
|
diagnostic.Errors.Should().BeEmpty();
|
|
|
|
// Verify
|
|
await Verify(mappings);
|
|
}
|
|
|
|
[Fact]
|
|
public void FromText_UsingInvalidYaml_ShouldReturnEmptyMappingsWithDiagnostic()
|
|
{
|
|
// Arrange
|
|
var settings = new WireMockOpenApiParserSettings
|
|
{
|
|
ExampleValues = _exampleValuesMock.Object
|
|
};
|
|
|
|
var openApiDocument = File.ReadAllText(Path.Combine("OpenApiParser", "invalid.yaml"));
|
|
|
|
// Act
|
|
var mappings = _sut.FromText(openApiDocument, settings, out var diagnostic);
|
|
|
|
// Assert
|
|
mappings.Should().BeEmpty();
|
|
diagnostic.Should().NotBeNull();
|
|
diagnostic.Errors.Should().HaveCount(1);
|
|
diagnostic.Errors[0].Message.Should().Be("Responses must contain at least one response");
|
|
}
|
|
|
|
[Fact]
|
|
public async Task FromText_UsingJson_WithPlainTextExample_ShouldReturnMappings()
|
|
{
|
|
// Arrange
|
|
var settings = new WireMockOpenApiParserSettings
|
|
{
|
|
ExampleValues = _exampleValuesMock.Object
|
|
};
|
|
|
|
var openApiDocument = File.ReadAllText(Path.Combine("OpenApiParser", "oas-content-example.json"));
|
|
|
|
// Act
|
|
var mappings = _sut.FromText(openApiDocument, settings, out var diagnostic);
|
|
|
|
// Assert
|
|
mappings.Should().NotBeEmpty();
|
|
diagnostic.Should().NotBeNull();
|
|
diagnostic.Errors.Should().BeEmpty();
|
|
|
|
// Verify
|
|
await Verify(mappings);
|
|
}
|
|
} |