-
Notifications
You must be signed in to change notification settings - Fork 263
Expand file tree
/
Copy pathGuzzleAdapterTest.php
More file actions
124 lines (99 loc) · 2.52 KB
/
GuzzleAdapterTest.php
File metadata and controls
124 lines (99 loc) · 2.52 KB
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
<?php
namespace Proxy\Proxy\Adapter\Guzzle;
use GuzzleHttp\Client;
use GuzzleHttp\Handler\MockHandler;
use GuzzleHttp\Psr7\Response as GuzzleResponse;
use PHPUnit\Framework\TestCase;
use Proxy\Adapter\Guzzle\GuzzleAdapter;
use Psr\Http\Message\ResponseInterface;
use Laminas\Diactoros\Request;
class GuzzleAdapterTest extends TestCase
{
/**
* @var GuzzleAdapter
*/
private $adapter;
/**
* @var array
*/
private $headers = ['Server' => 'Mock'];
/**
* @var int
*/
private $status = 200;
/**
* @var string
*/
private $body = 'Totally awesome response body';
public function setUp(): void
{
$mock = new MockHandler([
$this->createResponse(),
]);
$client = new Client(['handler' => $mock]);
$this->adapter = new GuzzleAdapter($client);
}
/**
* @test
*/
public function adapter_returns_psr_response()
{
$response = $this->sendRequest();
$this->assertInstanceOf(ResponseInterface::class, $response);
}
/**
* @test
*/
public function response_contains_body()
{
$response = $this->sendRequest();
$this->assertEquals($this->body, $response->getBody());
}
/**
* @test
*/
public function response_contains_statuscode()
{
$response = $this->sendRequest();
$this->assertEquals($this->status, $response->getStatusCode());
}
/**
* @test
*/
public function response_contains_header()
{
$response = $this->sendRequest();
$this->assertEquals('Mock', $response->getHeader('Server')[0]);
}
/**
* @test
*/
public function adapter_sends_request()
{
$request = new Request('http://localhost', 'GET');
$clientMock = $this->getMockBuilder(Client::class)
->disableOriginalConstructor()
->getMock();
$clientMock->expects($this->once())
->method('send')
->with($request)
->willReturn($this->createResponse());
$adapter = new GuzzleAdapter($clientMock);
$adapter->send($request);
}
/**
* @return ResponseInterface
*/
private function sendRequest()
{
$request = new Request('http://localhost', 'GET');
return $this->adapter->send($request);
}
/**
* @return ResponseInterface
*/
private function createResponse()
{
return new GuzzleResponse($this->status, $this->headers, $this->body);
}
}