wiki.techinc.nl/tests/phpunit/mocks/NullMultiHttpClient.php
Reedy eb41565a9a Tests: Start marking some closures as static
Bug: T274036
Change-Id: Ib738ecd3bc23d34900bc268c8246702ac3655746
2021-02-06 19:57:42 +00:00

32 lines
790 B
PHP

<?php
use PHPUnit\Framework\Assert;
use PHPUnit\Framework\AssertionFailedError;
/**
* A simple {@link MultiHttpClient} implementation that can be used to prevent
* HTTP requests in tests. All attempts to execute a request will fail.
*
* Use MockHttpTrait for controlling responses to mock HTTP requests.
*
* @author Daniel Kinzler
* @license GPL-2.0-or-later
*/
class NullMultiHttpClient extends MultiHttpClient {
/**
* Always fails.
*
* @param array $reqs
* @param array $opts
*
* @throws AssertionFailedError always
*/
public function runMulti( array $reqs, array $opts = [] ) {
$urls = implode( ', ', array_map( static function ( $req ) {
return $req['url'];
}, $reqs ) );
Assert::fail( "HTTP requests to {$urls} blocked. Use MockHttpTrait." );
}
}