mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-14 14:23:34 +01:00
77 lines
2.8 KiB
C#
77 lines
2.8 KiB
C#
// Copyright © WireMock.Net
|
|
|
|
//#if MIMEKIT
|
|
using System;
|
|
using System.Net;
|
|
using System.Net.Http;
|
|
using System.Net.Http.Headers;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using FluentAssertions;
|
|
using WireMock.Matchers;
|
|
using WireMock.RequestBuilders;
|
|
using WireMock.ResponseBuilders;
|
|
using WireMock.Server;
|
|
using Xunit;
|
|
|
|
namespace WireMock.Net.Tests;
|
|
|
|
public partial class WireMockServerTests
|
|
{
|
|
[Fact]
|
|
public async Task WireMockServer_WithMultiPartBody_Using_MimePartMatchers()
|
|
{
|
|
// Arrange
|
|
var server = WireMockServer.Start();
|
|
|
|
var textPlainContent = "This is some plain text";
|
|
var textPlainContentType = "text/plain";
|
|
var textPlainContentTypeMatcher = new ContentTypeMatcher(textPlainContentType);
|
|
var textPlainContentMatcher = new ExactMatcher(textPlainContent);
|
|
var textPlainMatcher = new MimePartMatcher(MatchBehaviour.AcceptOnMatch, textPlainContentTypeMatcher, null, null, textPlainContentMatcher);
|
|
|
|
var textJson = "{ \"Key\" : \"Value\" }";
|
|
var textJsonContentType = "text/json";
|
|
var textJsonContentTypeMatcher = new ContentTypeMatcher(textJsonContentType);
|
|
var textJsonContentMatcher = new JsonMatcher(new { Key = "Value" }, true);
|
|
var jsonMatcher = new MimePartMatcher(MatchBehaviour.AcceptOnMatch, textJsonContentTypeMatcher, null, null, textJsonContentMatcher);
|
|
|
|
var imagePngBytes = Convert.FromBase64String("iVBORw0KGgoAAAANSUhEUgAAAAIAAAACAgMAAAAP2OW3AAAADFBMVEX/tID/vpH/pWX/sHidUyjlAAAADElEQVR4XmMQYNgAAADkAMHebX3mAAAAAElFTkSuQmCC");
|
|
var imagePngContentMatcher = new ExactObjectMatcher(imagePngBytes);
|
|
var imagePngMatcher = new MimePartMatcher(MatchBehaviour.AcceptOnMatch, null, null, null, imagePngContentMatcher);
|
|
|
|
var matchers = new IMatcher[]
|
|
{
|
|
textPlainMatcher,
|
|
jsonMatcher,
|
|
imagePngMatcher
|
|
};
|
|
|
|
server
|
|
.Given(
|
|
Request.Create()
|
|
.UsingPost()
|
|
.WithPath("/multipart")
|
|
.WithMultiPart(matchers))
|
|
.RespondWith(Response.Create());
|
|
|
|
// Act
|
|
var formDataContent = new MultipartFormDataContent();
|
|
formDataContent.Add(new StringContent(textPlainContent, Encoding.UTF8, textPlainContentType), "text");
|
|
formDataContent.Add(new StringContent(textJson, Encoding.UTF8, textJsonContentType), "json");
|
|
|
|
var fileContent = new ByteArrayContent(imagePngBytes);
|
|
fileContent.Headers.ContentType = new MediaTypeHeaderValue("image/png");
|
|
formDataContent.Add(fileContent, "somefile", "image.png");
|
|
|
|
var client = server.CreateClient();
|
|
|
|
var response = await client.PostAsync("/multipart", formDataContent);
|
|
|
|
// Assert
|
|
response.StatusCode.Should().Be(HttpStatusCode.OK);
|
|
|
|
server.Stop();
|
|
}
|
|
}
|
|
//#endif |