| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- declare(strict_types=1);
- namespace Magento\AuthorizenetAcceptjs\Test\Unit\Gateway\Response;
- use Magento\AuthorizenetAcceptjs\Gateway\Response\PaymentReviewStatusHandler;
- use Magento\AuthorizenetAcceptjs\Gateway\SubjectReader;
- use Magento\Payment\Gateway\Data\PaymentDataObjectInterface;
- use Magento\Payment\Model\InfoInterface;
- use Magento\Sales\Model\Order\Payment;
- use PHPUnit\Framework\MockObject\MockObject;
- use PHPUnit\Framework\TestCase;
- class PaymentReviewStatusHandlerTest extends TestCase
- {
- /**
- * @var PaymentReviewStatusHandler
- */
- private $handler;
- /**
- * @var InfoInterface|MockObject
- */
- private $paymentMock;
- /**
- * @var PaymentDataObjectInterface|MockObject
- */
- private $paymentDOMock;
- protected function setUp()
- {
- $this->paymentDOMock = $this->createMock(PaymentDataObjectInterface::class);
- $this->paymentMock = $this->createMock(Payment::class);
- $this->paymentDOMock->method('getPayment')
- ->willReturn($this->paymentMock);
- $this->handler = new PaymentReviewStatusHandler(new SubjectReader());
- }
- public function testApprovesPayment()
- {
- $subject = [
- 'payment' => $this->paymentDOMock
- ];
- $response = [
- 'transaction' => [
- 'transactionStatus' => 'approvedOrSomething',
- ]
- ];
- // Assert payment is handled correctly
- $this->paymentMock->expects($this->exactly(2))
- ->method('setData')
- ->withConsecutive(
- ['is_transaction_denied', false],
- ['is_transaction_approved', true]
- );
- $this->handler->handle($subject, $response);
- // Assertions are via mock expects above
- }
- /**
- * @param string $status
- * @dataProvider declinedTransactionStatusesProvider
- */
- public function testDeniesPayment(string $status)
- {
- $subject = [
- 'payment' => $this->paymentDOMock
- ];
- $response = [
- 'transaction' => [
- 'transactionStatus' => $status,
- ]
- ];
- // Assert payment is handled correctly
- $this->paymentMock->expects($this->exactly(2))
- ->method('setData')
- ->withConsecutive(
- ['is_transaction_denied', true],
- ['is_transaction_approved', false]
- );
- $this->handler->handle($subject, $response);
- }
- /**
- * @param string $status
- * @dataProvider pendingTransactionStatusesProvider
- */
- public function testDoesNothingWhenPending(string $status)
- {
- $subject = [
- 'payment' => $this->paymentDOMock
- ];
- $response = [
- 'transaction' => [
- 'transactionStatus' => $status,
- ]
- ];
- // Assert payment is handled correctly
- $this->paymentMock->expects($this->never())
- ->method('setData');
- $this->handler->handle($subject, $response);
- }
- public function pendingTransactionStatusesProvider()
- {
- return [
- ['FDSPendingReview'],
- ['FDSAuthorizedPendingReview']
- ];
- }
- public function declinedTransactionStatusesProvider()
- {
- return [
- ['void'],
- ['declined']
- ];
- }
- }
|