1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
|
<?php
declare( strict_types = 1 );
use MediaWiki\Http\MwHttpRequestToResponseInterfaceAdapter;
use Psr\Http\Message\StreamInterface;
/**
* @covers \MediaWiki\Http\MwHttpRequestToResponseInterfaceAdapter
*
* @group Http
* @group small
*
* @license GPL-2.0-or-later
*/
class MwHttpRequestToResponseInterfaceAdapterTest extends MediaWikiUnitTestCase {
public function testGivenNotExecutedRequest_constructorThrows() {
$req = $this->newMockMWHttpRequestWithHeaders( [] );
$this->expectException( \LogicException::class );
new MwHttpRequestToResponseInterfaceAdapter( $req );
}
public function testGetHeaders() {
$headers = [
'foo' => [ 'bar' ],
'some' => [ 'such', 'other' ]
];
$mwHttpReq = $this->newMockMWHttpRequestWithHeaders( $headers );
$response = new MwHttpRequestToResponseInterfaceAdapter( $mwHttpReq );
$this->assertEquals( $headers, $response->getHeaders() );
}
public function testHasHeader() {
$mwHttpReq = $this->newMockMWHttpRequestWithHeaders( [
'foo' => [ 'bar' ],
] );
$response = new MwHttpRequestToResponseInterfaceAdapter( $mwHttpReq );
$this->assertTrue( $response->hasHeader( 'foo' ) );
}
public function testGivenExistingHeader_getHeaderReturnsValuesArray() {
$headerValues = [ 'bar', 'baz' ];
$mwHttpReq = $this->newMockMWHttpRequestWithHeaders( [
'foo' => $headerValues,
] );
$response = new MwHttpRequestToResponseInterfaceAdapter( $mwHttpReq );
$this->assertEquals( $headerValues, $response->getHeader( 'foo' ) );
}
public function testGivenNonExistingHeader_getHeaderReturnsEmptyArray() {
$mwHttpReq = $this->newMockMWHttpRequestWithHeaders( [
'some-header' => [ 'some', 'such' ],
] );
$response = new MwHttpRequestToResponseInterfaceAdapter( $mwHttpReq );
$this->assertEquals( [], $response->getHeader( 'foo' ) );
}
public function testGetBody() {
$req = $this->newMockMWHttpRequestWithHeaders( [ 'Some-header' => [ 'abc' ] ] );
$body = '{ "some": "body" }';
$req->expects( $this->once() )
->method( 'getContent' )
->willReturn( $body );
$response = new MwHttpRequestToResponseInterfaceAdapter( $req );
$this->assertEquals( $body, $response->getBody() );
}
public function testGetStatusCode() {
$req = $this->newMockMWHttpRequestWithHeaders( [ 'Some-header' => [ 'abc' ] ] );
$status = 200;
$req->expects( $this->once() )
->method( 'getStatus' )
->willReturn( $status );
$response = new MwHttpRequestToResponseInterfaceAdapter( $req );
$this->assertEquals( $status, $response->getStatusCode() );
}
public function testGivenExistingHeader_getHeaderLineReturnsCommaSeparatedValues() {
$mwHttpReq = $this->newMockMWHttpRequestWithHeaders( [
'foo' => [ 'bar', 'baz' ],
] );
$response = new MwHttpRequestToResponseInterfaceAdapter( $mwHttpReq );
$this->assertEquals( 'bar,baz', $response->getHeaderLine( 'foo' ) );
}
public function testGivenNonExistingHeader_getHeaderLineReturnsEmptyString() {
$mwHttpReq = $this->newMockMWHttpRequestWithHeaders( [
'some-header' => [ 'some', 'such' ],
] );
$response = new MwHttpRequestToResponseInterfaceAdapter( $mwHttpReq );
$this->assertSame( '', $response->getHeaderLine( 'foo' ) );
}
public function testGetProtocolVersionIsNotImplemented() {
$this->expectException( \LogicException::class );
( new MwHttpRequestToResponseInterfaceAdapter( $this->createMock( MWHttpRequest::class ) ) )
->getProtocolVersion();
}
/**
* @dataProvider unsupportedMethodsProvider
*/
public function testBuilderMethodsThrowLogicException( string $method, $args ) {
$this->expectException( \LogicException::class );
( new MwHttpRequestToResponseInterfaceAdapter( $this->createMock( MWHttpRequest::class ) ) )
->{$method}( ...$args );
}
public function unsupportedMethodsProvider() {
return [
[ 'withAddedHeader', [ 'foo', 'bar' ] ],
[ 'withBody', [ $this->createMock( StreamInterface::class ) ] ],
[ 'withHeader', [ 'foo', 'bar' ] ],
[ 'withoutHeader', [ 'foo', 'bar' ] ],
[ 'withProtocolVersion', [ '1.1' ] ],
[ 'withStatus', [ 200 ] ],
];
}
private function newMockMWHttpRequestWithHeaders( array $headers ) {
$req = $this->createMock( MWHttpRequest::class );
$req->method( 'getResponseHeaders' )
->willReturn( $headers );
return $req;
}
}
|