Wiremock Stateful Behaviour

When working with third-party APIs, it’s not uncommon to receive different responses when calling the same endpoint. This can make it difficult to test the integration of our system with theirs. To simulate these behaviors and test our system’s response to them, we can use WireMock.

Read More

How to test certificates with Wiremock and Postman

When developing an application where certificates are used, it is often convenient to test it using a non-real system to verify that we are creating a good request with the certificate included. One way to do this is to simulate with WireMock a system which needs a valid certificate to respond correctly and validate it using Postman.

Read More