-
Notifications
You must be signed in to change notification settings - Fork 212
/
Copy pathConfigTest.php
209 lines (170 loc) · 6.77 KB
/
ConfigTest.php
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
<?php
/**
*
* Adyen Payment module (https://www.adyen.com/)
*
* Copyright (c) 2024 Adyen N.V. (https://www.adyen.com/)
* See LICENSE.txt for license details.
*
* Author: Adyen <magento@adyen.com>
*/
namespace Adyen\Payment\Test\Unit\Helper;
use Adyen\Payment\Helper\Config;
use Adyen\Payment\Test\Unit\AbstractAdyenTestCase;
use Magento\Framework\App\Config\Storage\WriterInterface;
use Magento\Framework\Encryption\EncryptorInterface;
use Magento\Framework\Serialize\SerializerInterface;
use Magento\Payment\Model\MethodInterface;
use Magento\Store\Model\ScopeInterface;
use Magento\Framework\App\Config\ScopeConfigInterface;
class ConfigTest extends AbstractAdyenTestCase
{
protected ScopeConfigInterface $scopeConfigMock;
private EncryptorInterface $encryptorMock;
private WriterInterface $configWriterMock;
private SerializerInterface $serializerMock;
private Config $configHelper;
protected function setUp(): void
{
parent::setUp();
$this->scopeConfigMock = $this->createMock(ScopeConfigInterface::class);
$this->encryptorMock = $this->createMock(EncryptorInterface::class);
$this->configWriterMock = $this->createMock(WriterInterface::class);
$this->serializerMock = $this->createMock(SerializerInterface::class);
$this->configHelper = new Config(
$this->scopeConfigMock,
$this->encryptorMock,
$this->configWriterMock,
$this->serializerMock
);
}
public function testGetIsPaymentMethodsActive()
{
$this->scopeConfigMock
->method('getValue')
->with('payment/adyen_abstract/payment_methods_active')
->willReturn('1');
$this->assertTrue($this->configHelper->getIsPaymentMethodsActive());
}
public function testGetAllowMultistoreTokensWithEnabledSetting()
{
$storeId = 1;
$expectedResult = true;
$path = 'payment/adyen_abstract/allow_multistore_tokens';
$this->scopeConfigMock->expects($this->once())
->method('isSetFlag')
->with($this->equalTo($path), $this->equalTo(ScopeInterface::SCOPE_STORE), $this->equalTo($storeId))
->willReturn($expectedResult);
$result = $this->configHelper->getAllowMultistoreTokens($storeId);
$this->assertEquals($expectedResult, $result);
}
public function testGetAllowMultistoreTokensWithDisabledSetting()
{
$storeId = 1;
$expectedResult = false;
$path = 'payment/adyen_abstract/allow_multistore_tokens';
$this->scopeConfigMock->expects($this->once())
->method('isSetFlag')
->with($this->equalTo($path), $this->equalTo(ScopeInterface::SCOPE_STORE), $this->equalTo($storeId))
->willReturn($expectedResult);
$result = $this->configHelper->getAllowMultistoreTokens($storeId);
$this->assertEquals($expectedResult, $result);
}
public function testGetAdyenPosCloudPaymentAction()
{
$storeId = PHP_INT_MAX;
$expectedResult = MethodInterface::ACTION_ORDER;
$path = sprintf(
"%s/%s/%s",
Config::XML_PAYMENT_PREFIX,
Config::XML_ADYEN_POS_CLOUD,
Config::XML_PAYMENT_ACTION
);
$this->scopeConfigMock->expects($this->once())
->method('getValue')
->with($this->equalTo($path), $this->equalTo(ScopeInterface::SCOPE_STORE), $this->equalTo($storeId))
->willReturn($expectedResult);
$result = $this->configHelper->getAdyenPosCloudPaymentAction($storeId);
$this->assertEquals($expectedResult, $result);
}
public function testSetConfigData()
{
$value = 'TEST_VALUE';
$field = 'test_path';
$xml_prefix = Config::XML_ADYEN_ABSTRACT_PREFIX;
$this->configWriterMock->expects($this->once())->method('save');
$this->configHelper->setConfigData($value, $field, $xml_prefix);
}
public function testRemoveConfigData()
{
$field = 'test_path';
$xml_prefix = Config::XML_ADYEN_ABSTRACT_PREFIX;
$this->configWriterMock->expects($this->once())->method('delete');
$this->configHelper->removeConfigData($field, $xml_prefix);
}
public function testGetThreeDSModes()
{
$storeId = PHP_INT_MAX;
$expectedResult = MethodInterface::ACTION_ORDER;
$path = sprintf(
"%s/%s/%s",
Config::XML_PAYMENT_PREFIX,
Config::XML_ADYEN_CC,
Config::XML_THREEDS_FLOW
);
$this->scopeConfigMock->expects($this->once())
->method('getValue')
->with($this->equalTo($path), $this->equalTo(ScopeInterface::SCOPE_STORE), $this->equalTo($storeId))
->willReturn($expectedResult);
$result = $this->configHelper->getThreeDSFlow($storeId);
$this->assertEquals($expectedResult, $result);
}
public function testGetIsCvcRequiredForRecurringCardPayments()
{
$storeId = PHP_INT_MAX;
$expectedResult = true;
$path = sprintf(
"%s/%s/%s",
Config::XML_PAYMENT_PREFIX,
Config::XML_ADYEN_CC_VAULT,
'require_cvc'
);
$this->scopeConfigMock->expects($this->once())
->method('isSetFlag')
->with($this->equalTo($path), $this->equalTo(ScopeInterface::SCOPE_STORE), $this->equalTo($storeId))
->willReturn($expectedResult);
$result = $this->configHelper->getIsCvcRequiredForRecurringCardPayments($storeId);
$this->assertEquals($expectedResult, $result);
}
public function testGetIsWebhookCleanupEnabled()
{
$path = sprintf(
"%s/%s/%s",
Config::XML_PAYMENT_PREFIX,
Config::XML_ADYEN_ABSTRACT_PREFIX,
Config::XML_CLEANUP_OLD_WEBHOOKS
);
$this->scopeConfigMock->expects($this->once())
->method('isSetFlag')
->with($this->equalTo($path), $this->equalTo(ScopeInterface::SCOPE_STORE), $this->equalTo(null))
->willReturn(true);
$result = $this->configHelper->getIsWebhookCleanupEnabled();
$this->assertTrue($result);
}
public function testGetRequiredDaysForOldWebhooks()
{
$path = sprintf(
"%s/%s/%s",
Config::XML_PAYMENT_PREFIX,
Config::XML_ADYEN_ABSTRACT_PREFIX,
Config::XML_REQUIRED_DAYS_OLD_WEBHOOKS
);
$this->scopeConfigMock->expects($this->once())
->method('getValue')
->with($this->equalTo($path), $this->equalTo(ScopeInterface::SCOPE_STORE), $this->equalTo(null))
->willReturn("90");
$result = $this->configHelper->getRequiredDaysForOldWebhooks();
$this->assertIsInt($result);
$this->assertEquals(90, $result);
}
}