|
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\Controller\Action\Admin; |
|
14
|
|
|
|
|
15
|
|
|
use BitBag\SyliusMolliePlugin\Controller\Action\Admin\Refund; |
|
16
|
|
|
use Doctrine\ORM\EntityManagerInterface; |
|
17
|
|
|
use Payum\Core\Payum; |
|
18
|
|
|
use PhpSpec\ObjectBehavior; |
|
19
|
|
|
use SM\Factory\FactoryInterface; |
|
20
|
|
|
use SM\StateMachine\StateMachineInterface; |
|
21
|
|
|
use Sylius\Bundle\PayumBundle\Model\GatewayConfig; |
|
22
|
|
|
use Sylius\Component\Core\Model\PaymentInterface; |
|
23
|
|
|
use Sylius\Component\Core\Model\PaymentMethodInterface; |
|
24
|
|
|
use Sylius\Component\Core\Repository\PaymentRepositoryInterface; |
|
25
|
|
|
use Sylius\Component\Payment\PaymentTransitions; |
|
26
|
|
|
use Symfony\Component\HttpFoundation\HeaderBag; |
|
27
|
|
|
use Symfony\Component\HttpFoundation\Request; |
|
28
|
|
|
use Symfony\Component\HttpFoundation\Session\Flash\FlashBagInterface; |
|
29
|
|
|
use Symfony\Component\HttpFoundation\Session\Session; |
|
30
|
|
|
|
|
31
|
|
|
final class RefundSpec extends ObjectBehavior |
|
32
|
|
|
{ |
|
33
|
|
|
function let( |
|
|
|
|
|
|
34
|
|
|
PaymentRepositoryInterface $paymentRepository, |
|
35
|
|
|
Payum $payum, |
|
36
|
|
|
Session $session, |
|
37
|
|
|
FactoryInterface $stateMachineFactory, |
|
38
|
|
|
EntityManagerInterface $paymentEntityManager |
|
39
|
|
|
): void { |
|
40
|
|
|
$this->beConstructedWith( |
|
41
|
|
|
$paymentRepository, |
|
42
|
|
|
$payum, |
|
43
|
|
|
$session, |
|
44
|
|
|
$stateMachineFactory, |
|
45
|
|
|
$paymentEntityManager |
|
46
|
|
|
); |
|
47
|
|
|
} |
|
48
|
|
|
|
|
49
|
|
|
function it_is_initializable(): void |
|
|
|
|
|
|
50
|
|
|
{ |
|
51
|
|
|
$this->shouldHaveType(Refund::class); |
|
52
|
|
|
} |
|
53
|
|
|
|
|
54
|
|
|
function it_refunds( |
|
55
|
|
|
Request $request, |
|
56
|
|
|
PaymentRepositoryInterface $paymentRepository, |
|
57
|
|
|
PaymentInterface $payment, |
|
58
|
|
|
PaymentMethodInterface $paymentMethod, |
|
59
|
|
|
GatewayConfig $gatewayConfig, |
|
60
|
|
|
FactoryInterface $stateMachineFactory, |
|
61
|
|
|
StateMachineInterface $stateMachine, |
|
62
|
|
|
Session $session, |
|
63
|
|
|
FlashBagInterface $flashBag, |
|
64
|
|
|
HeaderBag $headerBag |
|
65
|
|
|
): void { |
|
66
|
|
|
$request->get('id')->willReturn(1); |
|
67
|
|
|
$headerBag->get('referer', null, true)->willReturn('wwww.example.com'); |
|
68
|
|
|
$request->headers = $headerBag; |
|
69
|
|
|
$paymentMethod->getGatewayConfig()->willReturn($gatewayConfig); |
|
|
|
|
|
|
70
|
|
|
$payment->getMethod()->willReturn($paymentMethod); |
|
|
|
|
|
|
71
|
|
|
$paymentRepository->find(1)->willReturn($payment); |
|
72
|
|
|
$stateMachine->can(PaymentTransitions::TRANSITION_REFUND)->willReturn(true); |
|
73
|
|
|
$session->getFlashBag()->willReturn($flashBag); |
|
|
|
|
|
|
74
|
|
|
$stateMachineFactory->get($payment, PaymentTransitions::GRAPH)->willReturn($stateMachine); |
|
|
|
|
|
|
75
|
|
|
|
|
76
|
|
|
$stateMachine->apply(PaymentTransitions::TRANSITION_REFUND)->shouldBeCalled(); |
|
77
|
|
|
|
|
78
|
|
|
$this->__invoke($request); |
|
79
|
|
|
} |
|
80
|
|
|
} |
|
81
|
|
|
|
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.