3
3
use Stevenmaguire \Uber \Client as Uber ;
4
4
use Mockery as m ;
5
5
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 ;
8
9
use GuzzleHttp \Exception \ClientException as HttpClientException ;
9
10
10
11
class UberTest extends \PHPUnit_Framework_TestCase
@@ -423,18 +424,16 @@ public function test_Throws_Exception_On_Http_Errors()
423
424
$ params = [];
424
425
$ responseCode = 429 ;
425
426
$ responseHeaders = ['Content-Length ' => 0 ];
427
+ $ mock = new MockHandler ([
428
+ new Response ($ responseCode , $ responseHeaders )
429
+ ]);
430
+ $ handler = HandlerStack::create ($ mock );
426
431
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 ]);
434
433
435
434
$ this ->client ->setHttpClient ($ http_client );
436
435
437
- $ products = $ this ->client ->getProducts ($ params );
436
+ $ this ->client ->getProducts ($ params );
438
437
}
439
438
440
439
public function test_Http_Exceptions_Include_Meta_From_Uber ()
@@ -449,18 +448,17 @@ public function test_Http_Exceptions_Include_Meta_From_Uber()
449
448
"Accept " => "application/json "
450
449
];
451
450
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 );
456
455
457
- $ http_client = new HttpClient ;
458
- $ http_client ->getEmitter ()->attach ($ mock );
456
+ $ http_client = new HttpClient (['handler ' => $ handler ]);
459
457
460
458
$ this ->client ->setHttpClient ($ http_client );
461
459
462
460
try {
463
- $ products = $ this ->client ->getProducts ($ params );
461
+ $ this ->client ->getProducts ($ params );
464
462
} catch (\Stevenmaguire \Uber \Exception $ e ) {
465
463
$ this ->assertContains ($ responseReason , $ e ->getMessage ());
466
464
$ this ->assertEquals ($ responseCode , $ e ->getCode ());
@@ -473,7 +471,7 @@ public function test_Client_Exceptions_Throw_Uber_Exception()
473
471
$ params = [];
474
472
$ exception = new HttpClientException (
475
473
uniqid (),
476
- m::mock ('GuzzleHttp \Message\RequestInterface ' )
474
+ m::mock ('Psr\Http \Message\RequestInterface ' )
477
475
);
478
476
$ http_client = m::mock ('GuzzleHttp\Client ' );
479
477
$ http_client ->shouldReceive ('get ' )->times (1 )->andThrow ($ exception );
0 commit comments