mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-18 23:33:47 +01:00
* Fix construction of path in OpenApiParser (#1265) * Server-Sent Events (#1269) * Server Side Events * fixes * await HandleSseStringAsync(responseMessage, response, bodyData); * 1.7.5-preview-01 * IBlockingQueue * 1.7.5-preview-02 (03 April 2025) * IBlockingQueue * ... * Support OpenApi V31 (#1279) * Support OpenApi V31 * Update src/WireMock.Net.OpenApiParser/Extensions/OpenApiSchemaExtensions.cs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * fx --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Add ProtoDefinitionHelper.FromDirectory (#1263) * Add ProtoDefinitionHelper.FromDirectory * . * unix-windows * move test * imports in the proto files indeed should use a forward slash * updates * . * private Func<IdOrTexts> ProtoDefinitionFunc() * OpenTelemetry * . * fix path utils --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
52 lines
1.8 KiB
C#
52 lines
1.8 KiB
C#
#if !(NET452 || NET461 || NETCOREAPP3_1)
|
|
using System;
|
|
using System.IO;
|
|
using System.Threading.Tasks;
|
|
using Moq;
|
|
using VerifyXunit;
|
|
using WireMock.Net.OpenApiParser;
|
|
using WireMock.Net.OpenApiParser.Settings;
|
|
using Xunit;
|
|
|
|
namespace WireMock.Net.Tests.OpenApiParser;
|
|
|
|
[UsesVerify]
|
|
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_ShouldReturnMappings()
|
|
{
|
|
// Arrange
|
|
var settings = new WireMockOpenApiParserSettings
|
|
{
|
|
ExampleValues = _exampleValuesMock.Object
|
|
};
|
|
|
|
var openApiDocument = await File.ReadAllTextAsync(Path.Combine("OpenApiParser", "payroc-openapi-spec.yaml"));
|
|
|
|
// Act
|
|
var mappings = _sut.FromText(openApiDocument, settings, out _);
|
|
|
|
// Verify
|
|
await Verifier.Verify(mappings);
|
|
}
|
|
}
|
|
#endif |