|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/* |
|
4
|
|
|
* This file has been created by developers from BitBag. |
|
5
|
|
|
* Feel free to contact us once you face any issues or want to start |
|
6
|
|
|
* another great project. |
|
7
|
|
|
* You can find more information about us on https://bitbag.shop and write us |
|
8
|
|
|
* an email on [email protected]. |
|
9
|
|
|
*/ |
|
10
|
|
|
|
|
11
|
|
|
declare(strict_types=1); |
|
12
|
|
|
|
|
13
|
|
|
namespace spec\BitBag\SyliusMolliePlugin\Action; |
|
14
|
|
|
|
|
15
|
|
|
use BitBag\SyliusMolliePlugin\Action\NotifyAction; |
|
16
|
|
|
use BitBag\SyliusMolliePlugin\Client\MollieApiClient; |
|
17
|
|
|
use BitBag\SyliusMolliePlugin\Repository\SubscriptionRepositoryInterface; |
|
18
|
|
|
use Payum\Core\Action\ActionInterface; |
|
19
|
|
|
use Payum\Core\ApiAwareInterface; |
|
20
|
|
|
use Payum\Core\GatewayAwareInterface; |
|
21
|
|
|
use Payum\Core\GatewayInterface; |
|
22
|
|
|
use Payum\Core\Request\GetHttpRequest; |
|
23
|
|
|
use Payum\Core\Request\Notify; |
|
24
|
|
|
use PhpSpec\ObjectBehavior; |
|
25
|
|
|
|
|
26
|
|
|
final class NotifyActionSpec extends ObjectBehavior |
|
27
|
|
|
{ |
|
28
|
|
|
function let(GetHttpRequest $getHttpRequest, SubscriptionRepositoryInterface $subscriptionRepository): void |
|
|
|
|
|
|
29
|
|
|
{ |
|
30
|
|
|
$this->beConstructedWith($getHttpRequest, $subscriptionRepository); |
|
31
|
|
|
} |
|
32
|
|
|
|
|
33
|
|
|
function it_is_initializable(): void |
|
|
|
|
|
|
34
|
|
|
{ |
|
35
|
|
|
$this->shouldHaveType(NotifyAction::class); |
|
36
|
|
|
} |
|
37
|
|
|
|
|
38
|
|
|
function it_implements_action_interface(): void |
|
39
|
|
|
{ |
|
40
|
|
|
$this->shouldHaveType(ActionInterface::class); |
|
41
|
|
|
} |
|
42
|
|
|
|
|
43
|
|
|
function it_implements_api_aware_interface(): void |
|
44
|
|
|
{ |
|
45
|
|
|
$this->shouldHaveType(ApiAwareInterface::class); |
|
46
|
|
|
} |
|
47
|
|
|
|
|
48
|
|
|
function it_implements_gateway_aware_interface(): void |
|
49
|
|
|
{ |
|
50
|
|
|
$this->shouldHaveType(GatewayAwareInterface::class); |
|
51
|
|
|
} |
|
52
|
|
|
|
|
53
|
|
|
function it_executes( |
|
54
|
|
|
Notify $request, |
|
55
|
|
|
\ArrayObject $arrayObject, |
|
56
|
|
|
GatewayInterface $gateway, |
|
57
|
|
|
GetHttpRequest $getHttpRequest, |
|
58
|
|
|
MollieApiClient $mollieApiClient, |
|
59
|
|
|
\Mollie_API_Resource_Base $mollieApiResourceBase |
|
60
|
|
|
): void { |
|
61
|
|
|
$this->setGateway($gateway); |
|
|
|
|
|
|
62
|
|
|
|
|
63
|
|
|
$this->setApi($mollieApiClient); |
|
|
|
|
|
|
64
|
|
|
$getHttpRequest->request = ['id' => 1]; |
|
65
|
|
|
$request->getModel()->willReturn($arrayObject); |
|
66
|
|
|
$payment = \Mockery::mock('payment'); |
|
67
|
|
|
$payment->id = 1; |
|
|
|
|
|
|
68
|
|
|
$payment->metadata = (object) [ |
|
|
|
|
|
|
69
|
|
|
'order_id' => 1, |
|
70
|
|
|
]; |
|
71
|
|
|
$payment->shouldReceive('getPaymentUrl')->andReturn(''); |
|
72
|
|
|
$mollieApiResourceBase->get(1)->willReturn($payment); |
|
73
|
|
|
$mollieApiClient->payments = $mollieApiResourceBase; |
|
|
|
|
|
|
74
|
|
|
|
|
75
|
|
|
$this->execute($request); |
|
|
|
|
|
|
76
|
|
|
} |
|
77
|
|
|
|
|
78
|
|
|
function it_supports_only_notify_request_and_array_access( |
|
79
|
|
|
Notify $request, |
|
80
|
|
|
\ArrayAccess $arrayAccess |
|
81
|
|
|
): void { |
|
82
|
|
|
$request->getModel()->willReturn($arrayAccess); |
|
83
|
|
|
|
|
84
|
|
|
$this->supports($request)->shouldReturn(true); |
|
|
|
|
|
|
85
|
|
|
} |
|
86
|
|
|
} |
|
87
|
|
|
|
Adding explicit visibility (
private,protected, orpublic) is generally recommend to communicate to other developers how, and from where this method is intended to be used.