Skip to content

Using WireMock in UnitTests

Stef Heyenrath edited this page Dec 21, 2020 · 11 revisions

WireMock with your favorite UnitTest framework

Obviously you can use your favorite test framework and use WireMock.Net within your tests. In order to avoid flaky tests you should:

  • let WireMock.Net choose ports dynamically. Avoid hard coded ports in your tests. This can cause issues when running these unit-tests on a build-server, there is not 100% guarantee that this port will be free on the OS.
  • clean up the request log or shutdown the server at the end of each test

Below a simple example using Nunit and NFluent test assertion library:

[SetUp]
public void StartMockServer()
{
    _server = WireMockServer.Start();
}

[Test]
public async void Should_respond_to_request()
{
   // Assign
   _sut = new SomeComponentDoingHttpCalls();

  _server
    .Given(Request.Create().WithPath("/foo").UsingGet())
    .RespondWith(
      Response.Create()
        .WithStatusCode(200)
        .WithBody(@"{ ""msg"": ""Hello world!"" }")
    );

  // Act
  var response = _sut.DoSomething();
    
  // Assert
  Check.That(response).IsEqualTo(EXPECTED_RESULT);
}

[TearDown]
public void ShutdownServer()
{
    _server.Stop();
}

For some more examples: see https://github.com/bredah/csharp-wiremock

Clone this wiki locally