airtimerewards / guzzle-test-helper
Helper for testing guzzle requests.
Installs: 7 484
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 0
Open Issues: 0
Requires
- php: ^7.3 || ^8.0
- guzzlehttp/guzzle: ^6.0 || ^7.0
Requires (Dev)
- alexeyshockov/guzzle-psalm-plugin: ^0.3.1
- friendsofphp/php-cs-fixer: ^2.16
- phpunit/phpunit: ^9.5
- roave/security-advisories: dev-master
- vimeo/psalm: ^4.4
README
This library is used to help test requests and responses made by guzzle. Instantiate an instance of AirtimeRewards\GuzzleTestHelper\MockGuzzleClient
with the same parameters you would instantiate the standard guzzle client, then responses can be injected and requests can be retrieved for assertions.
Example
<?php use AirtimeRewards\GuzzleTestHelper\MockGuzzleClient; $client = new MockGuzzleClient(); $client->append(200, ['Content-Type' => 'text/plain'], 'Hello World!'); $client->append(204); $response = $client->get('/foo'); echo $response->getBody(); // "Hello World!" echo $response->getStatusCode(); // 200 $response2 = $client->post('/bar'); echo $response2->getStatusCode(); // 204 $request1 = $client->getRequest(0); echo $request1->getUri(); // "/foo" echo $request1->getMethod(); // "GET" $request2 = $client->getLastRequest(); echo $request2->getUri(); // "/bar" echo $request2->getMethod(); // "POST"