123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Payment\Test\Unit\Model;
- use Magento\Payment\Model\MethodList;
- use Magento\Payment\Model\Method\AbstractMethod;
- class MethodListTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @var MethodList
- */
- protected $methodList;
- /**
- * @var \Magento\Framework\TestFramework\Unit\Helper\ObjectManager
- */
- protected $objectManager;
- /**
- * @var \Magento\Payment\Api\PaymentMethodListInterface|\PHPUnit_Framework_MockObject_MockObject
- */
- private $paymentMethodList;
- /**
- * @var \Magento\Payment\Model\Method\InstanceFactory|\PHPUnit_Framework_MockObject_MockObject
- */
- private $paymentMethodInstanceFactory;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject
- */
- protected $specificationFactoryMock;
- protected function setUp()
- {
- $this->objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this);
- $this->paymentMethodList = $this->getMockBuilder(\Magento\Payment\Api\PaymentMethodListInterface::class)
- ->disableOriginalConstructor()
- ->getMockForAbstractClass();
- $this->paymentMethodInstanceFactory = $this->getMockBuilder(
- \Magento\Payment\Model\Method\InstanceFactory::class
- )->disableOriginalConstructor()->getMock();
- $this->specificationFactoryMock = $this->createMock(\Magento\Payment\Model\Checks\SpecificationFactory::class);
- $this->methodList = $this->objectManager->getObject(
- \Magento\Payment\Model\MethodList::class,
- [
- 'specificationFactory' => $this->specificationFactoryMock
- ]
- );
- $this->objectManager->setBackwardCompatibleProperty(
- $this->methodList,
- 'paymentMethodList',
- $this->paymentMethodList
- );
- $this->objectManager->setBackwardCompatibleProperty(
- $this->methodList,
- 'paymentMethodInstanceFactory',
- $this->paymentMethodInstanceFactory
- );
- }
- public function testGetAvailableMethods()
- {
- $storeId = 1;
- $quoteMock = $this->createMock(\Magento\Quote\Model\Quote::class);
- $quoteMock->expects($this->once())->method('getStoreId')->will($this->returnValue($storeId));
- $quoteMock->expects($this->atLeastOnce())
- ->method('getPayment')
- ->will($this->returnValue($this->createMock(\Magento\Quote\Model\Quote\Payment::class)));
- $methodInstanceMock = $this->createMock(\Magento\Payment\Model\Method\AbstractMethod::class);
- $methodInstanceMock->expects($this->once())
- ->method('isAvailable')
- ->willReturn(true);
- $compositeMock = $this->createMock(\Magento\Payment\Model\Checks\Composite::class);
- $compositeMock->expects($this->atLeastOnce())
- ->method('isApplicable')
- ->with($methodInstanceMock, $quoteMock)
- ->will($this->returnValue(true));
- $this->specificationFactoryMock->expects($this->atLeastOnce())
- ->method('create')
- ->with([
- AbstractMethod::CHECK_USE_CHECKOUT,
- AbstractMethod::CHECK_USE_FOR_COUNTRY,
- AbstractMethod::CHECK_USE_FOR_CURRENCY,
- AbstractMethod::CHECK_ORDER_TOTAL_MIN_MAX
- ])
- ->will($this->returnValue($compositeMock));
- $methodMock = $this->getMockForAbstractClass(\Magento\Payment\Api\Data\PaymentMethodInterface::class);
- $this->paymentMethodList->expects($this->once())
- ->method('getActiveList')
- ->willReturn([$methodMock]);
- $this->paymentMethodInstanceFactory->expects($this->once())
- ->method('create')
- ->willReturn($methodInstanceMock);
- $methodInstanceMock->expects($this->atLeastOnce())
- ->method('setInfoInstance')
- ->with($this->createMock(\Magento\Quote\Model\Quote\Payment::class))
- ->will($this->returnSelf());
- $this->assertEquals([$methodInstanceMock], $this->methodList->getAvailableMethods($quoteMock));
- }
- }
|