events/Tests/ClientFactory.php
Daniel Siepmann 81065f5c67
BREAKING: TYPO3 v12 support (#44)
* Migrated all fixtures to PHP.
* Removed version specific adjustments.
2023-11-27 10:04:42 +01:00

41 lines
1.1 KiB
PHP

<?php
declare(strict_types=1);
namespace WerkraumMedia\Events\Tests;
use GuzzleHttp\Client;
use GuzzleHttp\Handler\MockHandler;
use GuzzleHttp\HandlerStack;
use GuzzleHttp\Middleware;
use GuzzleHttp\Psr7\Response;
/**
* Must only be used within tests.
*/
class ClientFactory
{
/**
* Use this to create a new client which will return provided responses.
*
* You can use the $historyContainer to assert actual requests afterwards,
* e.g. assert that urls or headers match.
*
* @see https://susi.dev/mock-http-api-responses-with-guzzle-psr-18-psr-7/
*
* @param Response[] $responses
* @param array{'request': Request, 'response': Response, 'error': null}[] $historyContainer
*/
public static function createClientWithHistory(
array $responses,
array &$historyContainer
): Client {
$history = Middleware::history($historyContainer);
$handlerStack = HandlerStack::create(new MockHandler($responses));
$handlerStack->push($history);
return new Client(['handler' => $handlerStack]);
}
}