wiremock-php
Stub and mock web services with the power of WireMock from PHP.
WireMock provides a JSON API for interacting with it; wiremock-php makes it easy to use that JSON API from PHP by wrapping it up in a fluent API very similar to the Java API provided by WireMock.
Note that wiremock-php requires a standalone instance of WireMock to be run (which requires Java).
Version numbers track those of WireMock itself, but may lag behind (i.e. if a WireMock release does not contain changes to the API, there may be no corresponding version of wiremock-php).
Alternatives
Like the idea of stubbing & verifying HTTP requests, but don't like this library (maybe you don't want to install Java)? You might want to investigate the following:
Installation
It easiest to install wiremock-php via Composer:
php composer.phar require --dev wiremock-php/wiremock-php:1.43.1
Usage
API
The API is based directly on WireMock's Java API, so see the WireMock documentation for general help with interacting with WireMock.
Differences to Java API
To provide a fluent interface, the WireMock Java API makes use of statically imported methods (which act upon a default static instance), but it's also possible to act directly upon a Java WireMock instance (using slightly differently named methods).
Unfortunately, PHP doesn't support anything like Java's static import of methods, so there's not much point in mimicking the Java API's static instance pattern. Instead, in wiremock-php some methods which are static in Java are instance methods. Those methods are:
stubFor
verify
findAll
saveAllMappings
reset
,resetToDefault
,resetAllScenarios
setGlobalFixedDelay
,addRequestProcessingDelay
shutdownServer
Also, Java has an overload of withBody
that takes a byte array. Byte arrays are less common in PHP, so instead,
withBodyData
is provided, which takes a string to base64 encoded. To produce an appropriate string from an array
of bytes, use pack.
The request body matcher equalToJson
takes an optional $jsonCompareMode
parameter. In the Java API, these are enum
values on org.skyscreamer.jsonassert.JSONCompareMode; in wiremock-php, these values are consts on
JsonValueMatchingStrategy
.
In addition, wiremock-php adds the instance method isAlive
. This polls the standalone WireMock instance until an OK
response is received or a timeout is reached, allowing your PHP code to wait until WireMock is ready.
Example
A typical usage looks something like the following:
// Create an object to administer a WireMock instance. This is assumed to be at
// localhost:8080 unless these values are overridden.
$wireMock = WireMock::create(/* specify host, port here if needed */);
// Assert that the standalone service is running (by waiting for it to respond
// to a request within a timeout)
assertThat($wireMock->isAlive(), is(true));
// Stub out a request
$wireMock->stubFor(WireMock::get(WireMock::urlEqualTo('/some/url'))
->willReturn(WireMock::aResponse()
->withHeader('Content-Type', 'text/plain')
->withBody('Hello world!')));
// ... interact with the server ...
// Verify a request
$wireMock->verify(WireMock::postRequestedFor(WireMock::urlEqualTo('/verify/this'))
->withHeader('Content-Type', WireMock::equalTo('text/xml')));
Verification PHPUnit integration
If a verification fails a VerificationException
is thrown. If PHPUnit is present on the include path, this will be a
subclass of PHPUnit_Framework_AssertionFailedError
, thus causing any containing PHPUnit test to fail; if PHPUnit is
not present, VerificationException
subclasses Exception
.