1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Bunq\Tests\Exception; |
4
|
|
|
|
5
|
|
|
use Bunq\Exception\BunqException; |
6
|
|
|
use GuzzleHttp\Exception\ClientException; |
7
|
|
|
use PHPUnit\Framework\TestCase; |
8
|
|
|
use Prophecy\Prophecy\ObjectProphecy; |
9
|
|
|
use Psr\Http\Message\RequestInterface; |
10
|
|
|
use Psr\Http\Message\ResponseInterface; |
11
|
|
|
use Psr\Http\Message\UriInterface; |
12
|
|
|
|
13
|
|
|
final class BunqExceptionTest extends TestCase |
14
|
|
|
{ |
15
|
|
|
/** |
16
|
|
|
* @test |
17
|
|
|
*/ |
18
|
|
|
public function itRepresentsABunqException() |
19
|
|
|
{ |
20
|
|
|
/** @var UriInterface|ObjectProphecy $uri */ |
21
|
|
|
$uri = $this->prophesize(UriInterface::class); |
22
|
|
|
$uri->getPath()->willReturn('/path'); |
|
|
|
|
23
|
|
|
|
24
|
|
|
/** @var RequestInterface|ObjectProphecy $request */ |
25
|
|
|
$request = $this->prophesize(RequestInterface::class); |
26
|
|
|
$request->getUri()->willReturn($uri); |
|
|
|
|
27
|
|
|
|
28
|
|
|
/** @var ResponseInterface|ObjectProphecy $response */ |
29
|
|
|
$response = $this->prophesize(ResponseInterface::class); |
30
|
|
|
$response->getBody()->willReturn('body'); |
|
|
|
|
31
|
|
|
$response->getStatusCode()->willReturn(403); |
|
|
|
|
32
|
|
|
|
33
|
|
|
$clientException = new ClientException('Message', $request->reveal(), $response->reveal()); |
|
|
|
|
34
|
|
|
|
35
|
|
|
$bunqException = new BunqException($clientException); |
36
|
|
|
|
37
|
|
|
$this->assertInstanceOf(BunqException::class, $bunqException); |
38
|
|
|
$this->assertInstanceOf(\Exception::class, $bunqException); |
39
|
|
|
$this->assertSame('Path: /path, Message: body', $bunqException->getMessage()); |
40
|
|
|
$this->assertSame(403, $bunqException->getCode()); |
41
|
|
|
|
42
|
|
|
} |
43
|
|
|
} |
44
|
|
|
|
It seems like the method you are trying to call exists only in some of the possible types.
Let’s take a look at an example:
Available Fixes
Add an additional type-check:
Only allow a single type to be passed if the variable comes from a parameter: