|
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\StateMachine; |
|
14
|
|
|
|
|
15
|
|
|
use BitBag\SyliusMolliePlugin\Action\Api\BaseApiAwareAction; |
|
16
|
|
|
use BitBag\SyliusMolliePlugin\Action\StateMachine\StatusRecurringSubscriptionAction; |
|
17
|
|
|
use BitBag\SyliusMolliePlugin\Client\MollieApiClient; |
|
18
|
|
|
use BitBag\SyliusMolliePlugin\Entity\SubscriptionInterface; |
|
19
|
|
|
use BitBag\SyliusMolliePlugin\Request\StateMachine\StatusRecurringSubscription; |
|
20
|
|
|
use BitBag\SyliusMolliePlugin\Transitions\SubscriptionTransitions; |
|
21
|
|
|
use Doctrine\ORM\EntityManagerInterface; |
|
22
|
|
|
use Payum\Core\Action\ActionInterface; |
|
23
|
|
|
use Payum\Core\ApiAwareInterface; |
|
24
|
|
|
use PhpSpec\ObjectBehavior; |
|
25
|
|
|
use SM\Factory\FactoryInterface; |
|
26
|
|
|
use SM\StateMachine\StateMachineInterface; |
|
27
|
|
|
|
|
28
|
|
|
final class StatusRecurringSubscriptionActionSpec extends ObjectBehavior |
|
29
|
|
|
{ |
|
30
|
|
|
function let( |
|
|
|
|
|
|
31
|
|
|
EntityManagerInterface $subscriptionManager, |
|
32
|
|
|
FactoryInterface $subscriptionSateMachineFactory |
|
33
|
|
|
): void { |
|
34
|
|
|
$this->beConstructedWith( |
|
35
|
|
|
$subscriptionManager, |
|
36
|
|
|
$subscriptionSateMachineFactory |
|
37
|
|
|
); |
|
38
|
|
|
} |
|
39
|
|
|
|
|
40
|
|
|
function it_is_initializable(): void |
|
|
|
|
|
|
41
|
|
|
{ |
|
42
|
|
|
$this->shouldHaveType(StatusRecurringSubscriptionAction::class); |
|
43
|
|
|
} |
|
44
|
|
|
|
|
45
|
|
|
function it_implements_action_interface(): void |
|
46
|
|
|
{ |
|
47
|
|
|
$this->shouldHaveType(ActionInterface::class); |
|
48
|
|
|
} |
|
49
|
|
|
|
|
50
|
|
|
function it_implements_api_aware_interface(): void |
|
51
|
|
|
{ |
|
52
|
|
|
$this->shouldHaveType(ApiAwareInterface::class); |
|
53
|
|
|
} |
|
54
|
|
|
|
|
55
|
|
|
function it_extends_base_api_aware(): void |
|
56
|
|
|
{ |
|
57
|
|
|
$this->shouldHaveType(BaseApiAwareAction::class); |
|
58
|
|
|
} |
|
59
|
|
|
|
|
60
|
|
|
function it_executes( |
|
61
|
|
|
StatusRecurringSubscription $request, |
|
62
|
|
|
MollieApiClient $mollieApiClient, |
|
63
|
|
|
SubscriptionInterface $subscription, |
|
64
|
|
|
\Mollie_API_Resource_Customers_Subscriptions $subscriptions, |
|
65
|
|
|
\Mollie_API_Object_Customer_Subscription $customerSubscription, |
|
66
|
|
|
FactoryInterface $subscriptionSateMachineFactory, |
|
67
|
|
|
StateMachineInterface $stateMachine, |
|
68
|
|
|
\Mollie_API_Resource_Base $resourceBase |
|
69
|
|
|
): void { |
|
70
|
|
|
$this->setApi($mollieApiClient); |
|
|
|
|
|
|
71
|
|
|
$stateMachine->can(SubscriptionTransitions::TRANSITION_ACTIVATE)->willReturn(); |
|
72
|
|
|
$customerSubscription->status = \Mollie_API_Object_Customer_Subscription::STATUS_ACTIVE; |
|
73
|
|
|
$subscriptionSateMachineFactory->get($subscription, SubscriptionTransitions::GRAPH)->willReturn($stateMachine); |
|
|
|
|
|
|
74
|
|
|
$subscription->getSubscriptionId()->willReturn('id_1'); |
|
75
|
|
|
$subscription->getCustomerId()->willReturn('id_1'); |
|
76
|
|
|
$resourceBase->get('id_1')->willReturn($customerSubscription); |
|
77
|
|
|
$subscriptions->withParentId('id_1')->willReturn($resourceBase); |
|
|
|
|
|
|
78
|
|
|
$mollieApiClient->customers_subscriptions = $subscriptions; |
|
79
|
|
|
$request->getModel()->willReturn($subscription); |
|
80
|
|
|
|
|
81
|
|
|
$this->execute($request); |
|
|
|
|
|
|
82
|
|
|
} |
|
83
|
|
|
|
|
84
|
|
|
function it_supports_status_recurring_subscription_request_and_subscription_model( |
|
85
|
|
|
StatusRecurringSubscription $request, |
|
86
|
|
|
SubscriptionInterface $subscription |
|
87
|
|
|
): void { |
|
88
|
|
|
$request->getModel()->willReturn($subscription); |
|
89
|
|
|
|
|
90
|
|
|
$this->supports($request)->shouldReturn(true); |
|
|
|
|
|
|
91
|
|
|
} |
|
92
|
|
|
} |
|
93
|
|
|
|
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.