Skip to content

Commit a6f184e

Browse files
committed
Merge pull request #6 from stevenmaguire/check-exception-response
Add support for RequestExceptions that do not have a Response object
2 parents d39edac + 33716d2 commit a6f184e

File tree

3 files changed

+73
-14
lines changed

3 files changed

+73
-14
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
11
#Changelog
22
All Notable changes to `trello-php` will be documented in this file
33

4+
## 0.3.6 - 2015-10-26
5+
6+
### Added
7+
- Add support for RequestExceptions that do not have a Response object.
8+
9+
### Deprecated
10+
- Nothing
11+
12+
### Fixed
13+
- Nothing
14+
15+
### Removed
16+
- Nothing
17+
18+
### Security
19+
- Nothing
20+
421
## 0.3.5 - 2015-10-19
522

623
### Added

src/Http.php

+24-3
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,25 @@ protected function getHeaders()
142142
return [];
143143
}
144144

145+
/**
146+
* Prepares an array of important exception parts based on composition of a
147+
* given exception.
148+
*
149+
* @param RequestException $requestException
150+
*
151+
* @return array
152+
*/
153+
private function getRequestExceptionParts(RequestException $requestException)
154+
{
155+
$response = $requestException->getResponse();
156+
$parts = [];
157+
$parts['reason'] = $response ? $response->getReasonPhrase() : $requestException->getMessage();
158+
$parts['code'] = $response ? $response->getStatusCode() : $requestException->getCode();
159+
$parts['body'] = $response ? $response->getBody() : null;
160+
161+
return $parts;
162+
}
163+
145164
/**
146165
* Creates fully qualified domain from given path.
147166
*
@@ -248,13 +267,15 @@ public function setClient(HttpClientInterface $httpClient)
248267
*/
249268
protected function throwRequestException(RequestException $requestException)
250269
{
270+
$exceptionParts = $this->getRequestExceptionParts($requestException);
271+
251272
$exception = new Exceptions\Exception(
252-
$requestException->getResponse()->getReasonPhrase(),
253-
$requestException->getResponse()->getStatusCode(),
273+
$exceptionParts['reason'],
274+
$exceptionParts['code'],
254275
$requestException
255276
);
256277

257-
$body = (string) $requestException->getResponse()->getBody();
278+
$body = $exceptionParts['body'];
258279
$json = json_decode($body);
259280

260281
if (json_last_error() == JSON_ERROR_NONE) {

tests/ClientTest.php

+32-11
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
use Psr\Http\Message\StreamInterface;
99
use Stevenmaguire\Services\Trello\Authorization;
1010
use Stevenmaguire\Services\Trello\Client;
11+
use Stevenmaguire\Services\Trello\Exceptions\Exception as ServiceException;
1112

1213
class ClientTest extends \PHPUnit_Framework_TestCase
1314
{
@@ -98,26 +99,32 @@ protected function prepareFor($method, $path, $query = "", $payload = [], $statu
9899
return is_array($options);
99100
});
100101

101-
if (is_string($payload)) {
102-
$responseBody = $payload;
102+
if (is_null($payload)) {
103+
$response = null;
103104
} else {
104-
$responseBody = json_encode($payload);
105-
}
105+
if (is_string($payload)) {
106+
$responseBody = $payload;
107+
} else {
108+
$responseBody = json_encode($payload);
109+
}
106110

107-
$stream = m::mock(StreamInterface::class);
108-
$stream->shouldReceive('__toString')->andReturn($responseBody);
111+
$stream = m::mock(StreamInterface::class);
112+
$stream->shouldReceive('__toString')->andReturn($responseBody);
109113

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+
}
114119

115120
$client = m::mock(HttpClient::class);
116121
if ($status == 200) {
117122
$client->shouldReceive('send')->with($request, $requestOptions)->andReturn($response);
118123
} else {
119124
$badRequest = m::mock(RequestInterface::class);
120-
$response->shouldReceive('getReasonPhrase')->andReturn("");
125+
if ($response) {
126+
$response->shouldReceive('getReasonPhrase')->andReturn("");
127+
}
121128
$exception = new BadResponseException('test exception', $badRequest, $response);
122129
$client->shouldReceive('send')->with($request, $requestOptions)->andThrow($exception);
123130
}
@@ -170,6 +177,20 @@ public function testBadRequestThrowsExeptionWithoutValidJson()
170177
$result = $this->client->getHttp()->get($path);
171178
}
172179

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+
173194
/**
174195
* @expectedException BadMethodCallException
175196
*/

0 commit comments

Comments
 (0)