ClientAdapterSpec.php
2.32 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
<?php
namespace spec\Cardinity\Http\Guzzle;
use Cardinity\Http\ClientInterface;
use Cardinity\Http\Guzzle\ExceptionMapper;
use Cardinity\Method\MethodInterface;
use GuzzleHttp\Client;
use GuzzleHttp\Exception\ClientException;
use Psr\Http\Message\ResponseInterface;
use PhpSpec\ObjectBehavior;
class ClientAdapterSpec extends ObjectBehavior
{
function let(
Client $client,
ExceptionMapper $mapper
) {
$this->beConstructedWith($client, $mapper);
}
function it_is_initializable()
{
$this->shouldHaveType('Cardinity\Http\Guzzle\ClientAdapter');
}
function it_sends_post_and_returns_result(
MethodInterface $method,
Client $client,
ResponseInterface $response
) {
$response
->getBody()
->shouldBeCalled()
->willReturn(json_encode(['foo' => 'bar']))
;
$client
->request('POST', 'https://api.cardinity.com/v1/', [])
->shouldBeCalled()
->willReturn($response)
;
$this
->sendRequest($method, 'POST', 'https://api.cardinity.com/v1/', [])
->shouldReturn(['foo' => 'bar'])
;
}
function it_wraps_client_exceptions_with_ours(
MethodInterface $method,
ClientInterface $client,
ExceptionMapper $mapper,
ClientException $exception
) {
$client
->request('POST', 'https://api.cardinity.com/v1/', [])
->willThrow($exception->getWrappedObject())
;
$mapper
->get($exception->getWrappedObject(), $method)
->shouldBeCalled()
->willThrow('Cardinity\Exception\Request')
;
$this
->shouldThrow('Cardinity\Exception\Request')
->duringSendRequest($method, 'POST', 'https://api.cardinity.com/v1/')
;
}
function it_handles_unexpected_exceptions(
MethodInterface $method,
ClientInterface $client,
\Exception $exception
)
{
$client
->request('POST', 'https://api.cardinity.com/v1/', [])
->willThrow($exception->getWrappedObject())
;
$this
->shouldThrow('Cardinity\Exception\UnexpectedError')
->duringSendRequest($method, 'POST', 'https://api.cardinity.com/v1/')
;
}
}