Skip to content

Commit 7f11b8b

Browse files
committed
Merge pull request #4 from megazoll/psr7
Update guzzle to 6 version
2 parents 32e985f + 491f934 commit 7f11b8b

File tree

5 files changed

+21
-22
lines changed

5 files changed

+21
-22
lines changed

.travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
language: php
22

33
php:
4-
- 5.4
54
- 5.5
65
- 5.6
76
- hhvm

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ or update your `composer.json` file to include:
2727
```
2828
Run `composer update`
2929

30+
> Note that the required version of PHP is 5.5. If you want use library with PHP 5.4 you should use 1.2.0 version.
31+
3032
## Usage
3133

3234
### Create client

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
],
2020
"license": "MIT",
2121
"require": {
22-
"php": ">=5.4.0",
23-
"guzzlehttp/guzzle": "~5.2"
22+
"php": ">=5.5.0",
23+
"guzzlehttp/guzzle": "~6.0"
2424
},
2525
"require-dev": {
2626
"phpunit/phpunit": "~4.0",

src/Client.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ private function handleRequestException(HttpClientException $e)
303303
{
304304
if ($response = $e->getResponse()) {
305305
$exception = new Exception($response->getReasonPhrase(), $response->getStatusCode(), $e);
306-
$exception->setBody($response->json());
306+
$exception->setBody(json_decode($response->getBody()));
307307

308308
throw $exception;
309309
}

tests/src/UberTest.php

+16-18
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@
33
use Stevenmaguire\Uber\Client as Uber;
44
use Mockery as m;
55
use GuzzleHttp\Client as HttpClient;
6-
use GuzzleHttp\Subscriber\Mock;
7-
use GuzzleHttp\Message\MessageFactory;
6+
use GuzzleHttp\Handler\MockHandler;
7+
use GuzzleHttp\HandlerStack;
8+
use GuzzleHttp\Psr7\Response;
89
use GuzzleHttp\Exception\ClientException as HttpClientException;
910

1011
class UberTest extends \PHPUnit_Framework_TestCase
@@ -423,18 +424,16 @@ public function test_Throws_Exception_On_Http_Errors()
423424
$params = [];
424425
$responseCode = 429;
425426
$responseHeaders = ['Content-Length' => 0];
427+
$mock = new MockHandler([
428+
new Response($responseCode, $responseHeaders)
429+
]);
430+
$handler = HandlerStack::create($mock);
426431

427-
$factory = new MessageFactory;
428-
$response = $factory->createResponse($responseCode, $responseHeaders);
429-
430-
$mock = new Mock([$response]);
431-
432-
$http_client = new HttpClient;
433-
$http_client->getEmitter()->attach($mock);
432+
$http_client = new HttpClient(['handler' => $handler]);
434433

435434
$this->client->setHttpClient($http_client);
436435

437-
$products = $this->client->getProducts($params);
436+
$this->client->getProducts($params);
438437
}
439438

440439
public function test_Http_Exceptions_Include_Meta_From_Uber()
@@ -449,18 +448,17 @@ public function test_Http_Exceptions_Include_Meta_From_Uber()
449448
"Accept" => "application/json"
450449
];
451450

452-
$factory = new MessageFactory;
453-
$response = $factory->createResponse($responseCode, $responseHeaders, $responsePayload);
454-
455-
$mock = new Mock([$response]);
451+
$mock = new MockHandler([
452+
new Response($responseCode, $responseHeaders, $responsePayload)
453+
]);
454+
$handler = HandlerStack::create($mock);
456455

457-
$http_client = new HttpClient;
458-
$http_client->getEmitter()->attach($mock);
456+
$http_client = new HttpClient(['handler' => $handler]);
459457

460458
$this->client->setHttpClient($http_client);
461459

462460
try {
463-
$products = $this->client->getProducts($params);
461+
$this->client->getProducts($params);
464462
} catch (\Stevenmaguire\Uber\Exception $e) {
465463
$this->assertContains($responseReason, $e->getMessage());
466464
$this->assertEquals($responseCode, $e->getCode());
@@ -473,7 +471,7 @@ public function test_Client_Exceptions_Throw_Uber_Exception()
473471
$params = [];
474472
$exception = new HttpClientException(
475473
uniqid(),
476-
m::mock('GuzzleHttp\Message\RequestInterface')
474+
m::mock('Psr\Http\Message\RequestInterface')
477475
);
478476
$http_client = m::mock('GuzzleHttp\Client');
479477
$http_client->shouldReceive('get')->times(1)->andThrow($exception);

0 commit comments

Comments
 (0)