pbxapi / php-http-fixture-client
Fixture client for PHP-HTTP
Requires
- php: ^7.0
- danielstjules/stringy: ^3.1
- php-http/discovery: ^1.4
- php-http/mock-client: ^1.2
- psr/http-message: ^1.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.14
- php-http/guzzle6-adapter: ^1.1
- phpunit/phpunit: ^6.0
Provides
This package is auto-updated.
Last update: 2024-10-14 21:01:53 UTC
README
This is a fixture client for PHP-HTTP and is meant for testing purposes. It maps requests to static fixtures.
Install
$ composer require --dev swisnl/php-http-fixture-client
Usage
// Create client $responseBuilder = new \Pbxapi\Http\Fixture\ResponseBuilder('/path/to/fixtures'); $client = new \Pbxapi\Http\Fixture\Client($responseBuilder); // Send request $response = $client->sendRequest(new Request(...));
Fixture mapping
All requests send using this client are mapped to static fixtures located in the provided path. URLs are transformed to file paths by using the domain and path fragments and (optionally) the method and/or the query params (sorted alphabetically). A list of possible fixture paths is made and handled in order of specificity:
- {path}.{query}.{method}.mock
- {path}.{query}.mock
- {path}.{method}.mock
- {path}.mock
Please see the following table for some examples.
Strict mode
The ReponseBuilder
can be set to strict mode using setStrictMode(true)
.
When in strict mode, only the first possible fixture path will be used.
This means that both the method and query params must be present in the fixture file name and it does not fall back to other fixture files.
Helper
Please see https://swisnl.github.io/php-http-fixture-client/#helper for the URL helper.
Body
The body of a request is loaded directly from a fixture with the file extension .mock.
The contents of this file can be anything that is a valid HTTP response, e.g. HTML, JSON or even images.
If a fixture can not be found, a MockNotFoundException
will be thrown.
This exception has a convenience method getPossiblePaths()
which lists all file paths that were checked, in order of specificity.
Headers (optional)
The headers of a request are loaded from a fixture with the file extension .headers. This is a simple JSON object with headers, e.g.
{ "X-Made-With": "PHPUnit" }
Status (optional)
The status code of a request is loaded from a fixture with the file extension .status. This is a plain file containing only the HTTP status code. If no .status file is found, 200 OK will be used.
Mocks (advanced)
This client extends php-http/mock-client, which allows you to add custom responses and exceptions that ignore fixture files. Please see the mock-client documentation for more information.
N.B. A default response can not be set because this client uses that under the hood.
Change log
Please see CHANGELOG for more information on what has changed recently.
Testing
$ composer test
Contributing
Please see CONTRIBUTING and CODE_OF_CONDUCT for details.
Security
If you discover any security related issues, please email security@swis.nl instead of using the issue tracker.
License
The MIT License (MIT). Please see License File for more information.
SWIS
SWIS is a web agency from Leiden, the Netherlands. We love working with open source software.