123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- declare(strict_types=1);
- namespace Magento\AuthorizenetAcceptjs\Test\Unit\Gateway\Command;
- use Magento\AuthorizenetAcceptjs\Gateway\Command\AcceptPaymentStrategyCommand;
- use Magento\AuthorizenetAcceptjs\Gateway\Command\RefundTransactionStrategyCommand;
- use Magento\AuthorizenetAcceptjs\Gateway\SubjectReader;
- use Magento\Payment\Gateway\Command\CommandPoolInterface;
- use Magento\Payment\Gateway\Command\ResultInterface;
- use Magento\Payment\Gateway\CommandInterface;
- use PHPUnit\Framework\MockObject\MockObject;
- use PHPUnit\Framework\TestCase;
- class AcceptPaymentStrategyCommandTest extends TestCase
- {
- /**
- * @var CommandInterface|MockObject
- */
- private $commandMock;
- /**
- * @var CommandInterface|MockObject
- */
- private $transactionDetailsCommandMock;
- /**
- * @var CommandPoolInterface|MockObject
- */
- private $commandPoolMock;
- /**
- * @var RefundTransactionStrategyCommand
- */
- private $command;
- /**
- * @var ResultInterface|MockObject
- */
- private $transactionResultMock;
- protected function setUp()
- {
- $this->transactionDetailsCommandMock = $this->createMock(CommandInterface::class);
- $this->commandMock = $this->createMock(CommandInterface::class);
- $this->transactionResultMock = $this->createMock(ResultInterface::class);
- $this->commandPoolMock = $this->createMock(CommandPoolInterface::class);
- $this->command = new AcceptPaymentStrategyCommand(
- $this->commandPoolMock,
- new SubjectReader()
- );
- }
- /**
- * @param string $status
- * @dataProvider inReviewStatusesProvider
- */
- public function testCommandWillAcceptInTheGatewayWhenInFDSReview(string $status)
- {
- // Assert command is executed
- $this->commandMock->expects($this->once())
- ->method('execute');
- $this->commandPoolMock->method('get')
- ->willReturnMap([
- ['get_transaction_details', $this->transactionDetailsCommandMock],
- ['accept_fds', $this->commandMock]
- ]);
- $this->transactionResultMock->method('get')
- ->willReturn([
- 'transaction' => [
- 'transactionStatus' => $status
- ]
- ]);
- $buildSubject = [
- 'foo' => '123'
- ];
- $this->transactionDetailsCommandMock->expects($this->once())
- ->method('execute')
- ->with($buildSubject)
- ->willReturn($this->transactionResultMock);
- $this->command->execute($buildSubject);
- }
- public function testCommandWillDoNothingWhenTransactionHasAlreadyBeenAuthorized()
- {
- // Assert command is never executed
- $this->commandMock->expects($this->never())
- ->method('execute');
- $this->commandPoolMock->method('get')
- ->willReturnMap([
- ['get_transaction_details', $this->transactionDetailsCommandMock],
- ]);
- $this->transactionResultMock->method('get')
- ->willReturn([
- 'transaction' => [
- 'transactionStatus' => 'anythingelseisfine'
- ]
- ]);
- $buildSubject = [
- 'foo' => '123'
- ];
- $this->transactionDetailsCommandMock->expects($this->once())
- ->method('execute')
- ->with($buildSubject)
- ->willReturn($this->transactionResultMock);
- $this->command->execute($buildSubject);
- }
- public function inReviewStatusesProvider()
- {
- return [
- ['FDSPendingReview'],
- ['FDSAuthorizedPendingReview']
- ];
- }
- }
|