Download the PHP package genesis/mock-api without Composer
On this page you can find all versions of the php package genesis/mock-api. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download genesis/mock-api
More information about genesis/mock-api
Files in genesis/mock-api
Package mock-api
Short Description Develop and run automated tests against a mock API.
License MIT
Informations about the package mock-api
API mocker
Have an application that depends on an API but is too much of a burden on testing? Replace your API with a mock API using this package and mock requests on the fly.
How to install
Start mock-api:
Test that the mock API is running:
Stop mock-api:
Find more commands in the generated Makefile.
Static mocks
You can add your static routes (ones that will be available as soon as you boot up the mock API) in the staticMocks folder. The data format is defined below and example request already exists.
Dynamic mocks
To mock a request POST
your mocking request to /mocks
with mockData
json. Example mock request:
You can override a static mock with a dynamic one. Purging the mocks will revert the back to the static mock.
Full mock data options:
mockData (object)
: Contains mock request information.
mockData.url (string)
: The URL to mock, can be an existing statically mocked URL.
mockData.<METHOD> ([]object)
: The method to mock for the URL.
mockData.<METHOD>.with (?string)
: A regex pattern to be applied to the URL optionally.
mockData.<METHOD>.response_code (?int)
: The response code to return optionally.
mockData.<METHOD>.headers (?object)
: The headers to return.
mockData.<METHOD>.body (mixed)
: The response content.
mockData.<METHOD>.consecutive_responses (?[]object)
: On consecutive calls return one after the other. Supports response_code, headers and body.
mockData.<METHOD>.proxy (?object)
: Proxy the response through another URL.
View mocked endpoints
View existing mock requests by visiting /mocks
Purge dynamic mocks
To purge all dynamic mocks created send GET
request to /mocks?purge=true
Development:
Running tests is just a case of running the behat tests: