30 lines
676 B
PHP
30 lines
676 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 = [] ) {
|
||
|
|
Assert::fail( "HTTP request blocked. Use MockHttpTrait." );
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|