|
8 | 8 | use Psr\Http\Message\StreamInterface;
|
9 | 9 | use Stevenmaguire\Services\Trello\Authorization;
|
10 | 10 | use Stevenmaguire\Services\Trello\Client;
|
| 11 | +use Stevenmaguire\Services\Trello\Exceptions\Exception as ServiceException; |
11 | 12 |
|
12 | 13 | class ClientTest extends \PHPUnit_Framework_TestCase
|
13 | 14 | {
|
@@ -98,26 +99,32 @@ protected function prepareFor($method, $path, $query = "", $payload = [], $statu
|
98 | 99 | return is_array($options);
|
99 | 100 | });
|
100 | 101 |
|
101 |
| - if (is_string($payload)) { |
102 |
| - $responseBody = $payload; |
| 102 | + if (is_null($payload)) { |
| 103 | + $response = null; |
103 | 104 | } else {
|
104 |
| - $responseBody = json_encode($payload); |
105 |
| - } |
| 105 | + if (is_string($payload)) { |
| 106 | + $responseBody = $payload; |
| 107 | + } else { |
| 108 | + $responseBody = json_encode($payload); |
| 109 | + } |
106 | 110 |
|
107 |
| - $stream = m::mock(StreamInterface::class); |
108 |
| - $stream->shouldReceive('__toString')->andReturn($responseBody); |
| 111 | + $stream = m::mock(StreamInterface::class); |
| 112 | + $stream->shouldReceive('__toString')->andReturn($responseBody); |
109 | 113 |
|
110 |
| - $response = m::mock(ResponseInterface::class); |
111 |
| - $response->shouldReceive('getStatusCode')->andReturn($status); |
112 |
| - $response->shouldReceive('getBody')->andReturn($stream); |
113 |
| - $response->shouldReceive('getHeader')->with('content-type')->andReturn('application/json'); |
| 114 | + $response = m::mock(ResponseInterface::class); |
| 115 | + $response->shouldReceive('getStatusCode')->andReturn($status); |
| 116 | + $response->shouldReceive('getBody')->andReturn($stream); |
| 117 | + $response->shouldReceive('getHeader')->with('content-type')->andReturn('application/json'); |
| 118 | + } |
114 | 119 |
|
115 | 120 | $client = m::mock(HttpClient::class);
|
116 | 121 | if ($status == 200) {
|
117 | 122 | $client->shouldReceive('send')->with($request, $requestOptions)->andReturn($response);
|
118 | 123 | } else {
|
119 | 124 | $badRequest = m::mock(RequestInterface::class);
|
120 |
| - $response->shouldReceive('getReasonPhrase')->andReturn(""); |
| 125 | + if ($response) { |
| 126 | + $response->shouldReceive('getReasonPhrase')->andReturn(""); |
| 127 | + } |
121 | 128 | $exception = new BadResponseException('test exception', $badRequest, $response);
|
122 | 129 | $client->shouldReceive('send')->with($request, $requestOptions)->andThrow($exception);
|
123 | 130 | }
|
@@ -170,6 +177,20 @@ public function testBadRequestThrowsExeptionWithoutValidJson()
|
170 | 177 | $result = $this->client->getHttp()->get($path);
|
171 | 178 | }
|
172 | 179 |
|
| 180 | + public function testBadRequestThrowsExeptionWithoutResponse() |
| 181 | + { |
| 182 | + $path = uniqid(); |
| 183 | + $this->prepareFor("GET", $path, "", null, 400); |
| 184 | + |
| 185 | + try { |
| 186 | + $result = $this->client->getHttp()->get($path); |
| 187 | + } catch (ServiceException $e) { |
| 188 | + $this->assertTrue(is_string($e->getMessage())); |
| 189 | + $this->assertTrue(is_numeric($e->getCode())); |
| 190 | + $this->assertNull($e->getResponseBody()); |
| 191 | + } |
| 192 | + } |
| 193 | + |
173 | 194 | /**
|
174 | 195 | * @expectedException BadMethodCallException
|
175 | 196 | */
|
|
0 commit comments