123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Payment\Test\Unit\Plugin;
- /**
- * Class PaymentConfigurationProcessTest.
- */
- class PaymentConfigurationProcessTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @var \Magento\Store\Model\StoreManagerInterface|\PHPUnit_Framework_MockObject_MockObject
- */
- private $storeManager;
- /**
- * @var \Magento\Store\Api\Data\StoreInterface|\PHPUnit_Framework_MockObject_MockObject
- */
- private $store;
- /**
- * @var \Magento\Payment\Api\PaymentMethodListInterface|\PHPUnit_Framework_MockObject_MockObject
- */
- private $paymentMethodList;
- /**
- * @var \Magento\Checkout\Block\Checkout\LayoutProcessor|\PHPUnit_Framework_MockObject_MockObject
- */
- private $layoutProcessor;
- /**
- * @var \Magento\Payment\Plugin\PaymentConfigurationProcess
- */
- private $plugin;
- /**
- * Set up
- */
- protected function setUp()
- {
- $this->storeManager = $this
- ->getMockBuilder(\Magento\Store\Model\StoreManagerInterface::class)
- ->disableOriginalConstructor()
- ->setMethods(['getStore'])
- ->getMockForAbstractClass();
- $this->store = $this
- ->getMockBuilder(\Magento\Store\Api\Data\StoreInterface::class)
- ->disableOriginalConstructor()
- ->setMethods(['getId'])
- ->getMockForAbstractClass();
- $this->paymentMethodList = $this
- ->getMockBuilder(\Magento\Payment\Api\PaymentMethodListInterface::class)
- ->disableOriginalConstructor()
- ->setMethods(['getActiveList'])
- ->getMockForAbstractClass();
- $this->layoutProcessor = $this
- ->getMockBuilder(\Magento\Checkout\Block\Checkout\LayoutProcessor::class)
- ->disableOriginalConstructor()
- ->setMethods(['process'])
- ->getMockForAbstractClass();
- $objectManagerHelper = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this);
- $this->plugin = $objectManagerHelper->getObject(
- \Magento\Payment\Plugin\PaymentConfigurationProcess::class,
- [
- 'paymentMethodList' => $this->paymentMethodList,
- 'storeManager' => $this->storeManager
- ]
- );
- }
- /**
- * @param array $jsLayout
- * @param array $activePaymentList
- * @param array $expectedResult
- * @dataProvider beforeProcessDataProvider
- */
- public function testBeforeProcess($jsLayout, $activePaymentList, $expectedResult)
- {
- $this->store->expects($this->once())->method('getId')->willReturn(1);
- $this->storeManager->expects($this->once())->method('getStore')->willReturn($this->store);
- $this->paymentMethodList->expects($this->once())
- ->method('getActiveList')
- ->with(1)
- ->willReturn($activePaymentList);
- $result = $this->plugin->beforeProcess($this->layoutProcessor, $jsLayout);
- $this->assertEquals($result[0], $expectedResult);
- }
- /**
- * Data provider for BeforeProcess.
- *
- * @return array
- */
- public function beforeProcessDataProvider()
- {
- $jsLayout['components']['checkout']['children']['steps']['children']['billing-step']
- ['children']['payment']['children']['renders']['children'] = [
- 'braintree' => [
- 'methods' => [
- 'braintree_paypal' => [],
- 'braintree' => []
- ]
- ],
- 'paypal-payments' => [
- 'methods' => [
- 'payflowpro' => [],
- 'payflow_link' => []
- ]
- ]
- ];
- $result1['components']['checkout']['children']['steps']['children']['billing-step']
- ['children']['payment']['children']['renders']['children'] = [];
- $result2['components']['checkout']['children']['steps']['children']['billing-step']
- ['children']['payment']['children']['renders']['children'] = [
- 'braintree' => [
- 'methods' => [
- 'braintree' => [],
- 'braintree_paypal' => []
- ]
- ]
- ];
- $braintreePaymentMethod = $this
- ->getMockBuilder(\Magento\Payment\Api\Data\PaymentMethodInterface::class)
- ->disableOriginalConstructor()
- ->setMethods(['getCode'])
- ->getMockForAbstractClass();
- $braintreePaypalPaymentMethod = $this
- ->getMockBuilder(\Magento\Payment\Api\Data\PaymentMethodInterface::class)
- ->disableOriginalConstructor()
- ->setMethods(['getCode'])
- ->getMockForAbstractClass();
- $braintreePaymentMethod->expects($this->any())->method('getCode')->willReturn('braintree');
- $braintreePaypalPaymentMethod->expects($this->any())->method('getCode')->willReturn('braintree_paypal');
- return [
- [$jsLayout, [], $result1],
- [$jsLayout, [$braintreePaymentMethod, $braintreePaypalPaymentMethod], $result2]
- ];
- }
- }
|