-
Notifications
You must be signed in to change notification settings - Fork 222
Expand file tree
/
Copy pathCheckoutPaymentsDetailsHandlerTest.php
More file actions
189 lines (158 loc) · 5.8 KB
/
CheckoutPaymentsDetailsHandlerTest.php
File metadata and controls
189 lines (158 loc) · 5.8 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<?php
namespace Test\Unit\Gateway\Response;
use Adyen\Payment\Test\Unit\AbstractAdyenTestCase;
use Adyen\Payment\Gateway\Response\CheckoutPaymentsDetailsHandler;
use Adyen\Payment\Helper\Data;
use Magento\Payment\Gateway\Data\OrderAdapterInterface;
use Magento\Payment\Gateway\Data\PaymentDataObject;
use Magento\Sales\Model\Order;
use Magento\Sales\Model\Order\Payment;
use PHPUnit\Framework\MockObject\MockObject;
class CheckoutPaymentsDetailsHandlerTest extends AbstractAdyenTestCase
{
private CheckoutPaymentsDetailsHandler $checkoutPaymentsDetailsHandler;
private Payment|MockObject $paymentMock;
private Order|MockObject $orderMock;
private array $handlingSubject;
protected function setUp(): void
{
$this->adyenHelperMock = $this->createMock(Data::class);
$this->checkoutPaymentsDetailsHandler = new CheckoutPaymentsDetailsHandler($this->adyenHelperMock);
$orderAdapterMock = $this->createMock(OrderAdapterInterface::class);
$this->orderMock = $this->createMock(Order::class);
$this->paymentMock = $this->createMock(Payment::class);
$this->paymentMock->method('getOrder')->willReturn($this->orderMock);
$this->paymentDataObject = new PaymentDataObject($orderAdapterMock, $this->paymentMock);
$this->handlingSubject = [
'payment' => $this->paymentDataObject,
'paymentAction' => "authorize",
'stateObject' => null
];
}
public function testIfGeneralFlowIsHandledCorrectly()
{
// prepare Handler input.
$responseCollection = [
'hasOnlyGiftCards' => false,
0 => [
'additionalData' => [],
'amount' => [],
'resultCode' => 'Authorised',
]
];
$this->paymentMock
->expects($this->once())
->method('getMethod')
->willReturn('any_method');
$this->orderMock
->expects($this->once())
->method('setCanSendNewEmailFlag')
->with(false);
$this->applyGenericMockExpectations();
$this->checkoutPaymentsDetailsHandler->handle($this->handlingSubject, $responseCollection);
}
public function testIfBoletoSendsAnEmail()
{
// prepare Handler input.
$responseCollection = [
'hasOnlyGiftCards' => false,
0 => [
'additionalData' => [],
'amount' => [],
'resultCode' => 'Authorised',
'pspReference' => 'ABC12345'
]
];
$this->paymentMock
->expects($this->once())
->method('getMethod')
->willReturn(CheckoutPaymentsDetailsHandler::ADYEN_BOLETO);
// for boleto it should not call this function.
$this->orderMock
->expects($this->never())
->method('setCanSendNewEmailFlag')
->with(false);
$this->applyGenericMockExpectations();
$this->checkoutPaymentsDetailsHandler->handle($this->handlingSubject, $responseCollection);
}
public function testIfPartialPaymentHandlesLastPaymentResponse()
{
// prepare Handler input.
$responseCollection = [
'hasOnlyGiftCards' => false,
0 => [
'additionalData' => [],
'amount' => [],
'resultCode' => 'Authorised',
'pspReference' => 'ABC54321',
'paymentMethod' => [
'name' => 'giftcard',
'type' => 'Givex',
]
],
1 => [
'additionalData' => [
'paymentMethod' => 'VI',
],
'amount' => [],
'resultCode' => 'Authorised',
'pspReference' => 'ABC12345',
'paymentMethod' => [
'name' => 'card',
'type' => 'VI',
]
]
];
$this->paymentMock
->expects($this->once())
->method('getMethod')
->willReturn('any_method');
$this->orderMock
->expects($this->once())
->method('setCanSendNewEmailFlag')
->with(false);
// validate whether the psp reference of the last payment method is used when setting these values.
$this->paymentMock
->expects($this->once())
->method('setCcTransId')
->with('ABC12345');
$this->paymentMock
->expects($this->once())
->method('setLastTransId')
->with('ABC12345');
$this->paymentMock
->expects($this->once())
->method('setTransactionId')
->with('ABC12345');
$this->paymentMock
->expects($this->once())
->method('getAdditionalInformation')
->with('cc_type')
->willReturn(null);
$this->paymentMock
->expects($this->once())
->method('setAdditionalInformation')
->with('cc_type', 'VI');
$this->paymentMock
->expects($this->once())
->method('setCcType')
->with('VI');
$this->applyGenericMockExpectations();
$this->checkoutPaymentsDetailsHandler->handle($this->handlingSubject, $responseCollection);
}
private function applyGenericMockExpectations() : void
{
$this->paymentMock
->expects($this->once())
->method('setIsTransactionPending')
->with(true);
$this->paymentMock
->expects($this->once())
->method('setIsTransactionClosed')
->with(false);
$this->paymentMock
->expects($this->once())
->method('setShouldCloseParentTransaction')
->with(false);
}
}