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
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Signifyd\Model\Guarantee;
use Magento\Framework\App\ObjectManager;
use Magento\Sales\Api\Data\OrderStatusHistoryInterface;
use Magento\Sales\Api\OrderRepositoryInterface;
use Magento\Signifyd\Api\CaseRepositoryInterface;
use Magento\Signifyd\Api\Data\CaseInterface;
use Magento\Signifyd\Model\SignifydGateway\Gateway;
use Magento\Signifyd\Model\SignifydGateway\GatewayException;
use Magento\TestFramework\Helper\Bootstrap;
use PHPUnit\Framework\MockObject_MockObject as MockObject;
use Psr\Log\LoggerInterface;
/**
* Contains test cases for canceling Signifyd guarantee flow.
*/
class CancelingServiceTest extends \PHPUnit\Framework\TestCase
{
private static $caseId = 123;
/**
* @var ObjectManager
*/
private $objectManager;
/**
* @var Gateway|MockObject
*/
private $gateway;
/**
* @var LoggerInterface|MockObject
*/
private $logger;
/**
* @var CancelingService;
*/
private $service;
/**
* @inheritdoc
*/
protected function setUp()
{
$this->objectManager = Bootstrap::getObjectManager();
$this->gateway = $this->getMockBuilder(Gateway::class)
->disableOriginalConstructor()
->setMethods(['cancelGuarantee'])
->getMock();
$this->logger = $this->getMockBuilder(LoggerInterface::class)
->disableOriginalConstructor()
->getMock();
$this->service = $this->objectManager->create(CancelingService::class, [
'gateway' => $this->gateway,
'logger' => $this->logger
]);
}
/**
* Checks a test case, when Signifyd guarantee was canceled.
*
* @covers \Magento\Signifyd\Model\Guarantee\CancelingService::cancelForOrder
* @magentoDataFixture Magento/Signifyd/_files/case.php
* @magentoConfigFixture current_store fraud_protection/signifyd/active 1
*/
public function testCancelForOrderWithCanceledGuarantee()
{
/** @var CaseRepositoryInterface $caseRepository */
$caseRepository = $this->objectManager->get(CaseRepositoryInterface::class);
$caseEntity = $caseRepository->getByCaseId(self::$caseId);
$caseEntity->setGuaranteeDisposition(CaseInterface::GUARANTEE_CANCELED);
$caseRepository->save($caseEntity);
$this->gateway->expects(self::never())
->method('cancelGuarantee');
$this->logger->expects(self::never())
->method('error');
$result = $this->service->cancelForOrder($caseEntity->getOrderId());
self::assertFalse($result);
}
/**
* Checks a test case, when Signifyd gateway throws an exception.
*
* @covers \Magento\Signifyd\Model\Guarantee\CancelingService::cancelForOrder
* @magentoDataFixture Magento/Signifyd/_files/approved_case.php
* @magentoConfigFixture current_store fraud_protection/signifyd/active 1
*/
public function testCancelForOrderWithFailedRequest()
{
$exceptionMessage = 'Something wrong.';
/** @var CaseRepositoryInterface $caseRepository */
$caseRepository = $this->objectManager->get(CaseRepositoryInterface::class);
$caseEntity = $caseRepository->getByCaseId(self::$caseId);
$this->gateway->expects(self::once())
->method('cancelGuarantee')
->with(self::equalTo(self::$caseId))
->willThrowException(new GatewayException($exceptionMessage));
$this->logger->expects(self::once())
->method('error')
->with(self::equalTo($exceptionMessage));
$result = $this->service->cancelForOrder($caseEntity->getOrderId());
self::assertFalse($result);
}
/**
* Checks a test case, when request to cancel is submitted and case entity is updated successfully.
*
* @covers \Magento\Signifyd\Model\Guarantee\CancelingService::cancelForOrder
* @magentoDataFixture Magento/Signifyd/_files/approved_case.php
* @magentoConfigFixture current_store fraud_protection/signifyd/active 1
*/
public function testCancelForOrder()
{
/** @var CaseRepositoryInterface $caseRepository */
$caseRepository = $this->objectManager->get(CaseRepositoryInterface::class);
$caseEntity = $caseRepository->getByCaseId(self::$caseId);
$this->gateway->expects(self::once())
->method('cancelGuarantee')
->with(self::equalTo(self::$caseId))
->willReturn(CaseInterface::GUARANTEE_CANCELED);
$this->logger->expects(self::never())
->method('error');
$result = $this->service->cancelForOrder($caseEntity->getOrderId());
self::assertTrue($result);
$updatedCase = $caseRepository->getByCaseId(self::$caseId);
self::assertEquals(CaseInterface::GUARANTEE_CANCELED, $updatedCase->getGuaranteeDisposition());
/** @var OrderRepositoryInterface $orderRepository */
$orderRepository = $this->objectManager->get(OrderRepositoryInterface::class);
$order = $orderRepository->get($updatedCase->getOrderId());
$histories = $order->getStatusHistories();
self::assertNotEmpty($histories);
/** @var OrderStatusHistoryInterface $caseCreationComment */
$caseCreationComment = array_pop($histories);
self::assertInstanceOf(OrderStatusHistoryInterface::class, $caseCreationComment);
self::assertEquals('Case Update: Case guarantee has been cancelled.', $caseCreationComment->getComment());
}
}