![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-catalog/Test/Unit/Controller/Product/Compare/ |
<?php /** * * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Catalog\Test\Unit\Controller\Product\Compare; use Magento\Catalog\Api\ProductRepositoryInterface; use Magento\Catalog\Controller\Product\Compare\Index; use Magento\Catalog\Model\Product\Compare\ItemFactory; use Magento\Catalog\Model\Product\Compare\ListCompare; use Magento\Catalog\Model\ResourceModel\Product\Compare\Item; use Magento\Catalog\Model\ResourceModel\Product\Compare\Item\CollectionFactory; use Magento\Customer\Model\Session; use Magento\Customer\Model\Visitor; use Magento\Framework\App\Action\Context; use Magento\Framework\App\RequestInterface; use Magento\Framework\App\ResponseInterface; use Magento\Framework\Controller\Result\RedirectFactory; use Magento\Framework\Data\Form\FormKey\Validator; use Magento\Framework\Url\DecoderInterface; use Magento\Framework\View\Result\PageFactory; use Magento\Store\Model\StoreManagerInterface; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; /** * @SuppressWarnings(PHPMD.TooManyFields) * @SuppressWarnings(PHPMD.CouplingBetweenObjects) */ class IndexTest extends TestCase { /** @var Index */ protected $index; /** @var Context|MockObject */ protected $contextMock; /** @var ItemFactory|MockObject */ protected $itemFactoryMock; /** @var Item\CollectionFactory|MockObject */ protected $collectionFactoryMock; /** @var Session|MockObject */ protected $sessionMock; /** @var Visitor|MockObject */ protected $visitorMock; /** @var ListCompare|MockObject */ protected $listCompareMock; /** @var \Magento\Catalog\Model\Session|MockObject */ protected $catalogSession; /** @var StoreManagerInterface|MockObject */ protected $storeManagerMock; /** @var Validator|MockObject */ protected $formKeyValidatorMock; /** @var RedirectFactory|MockObject */ protected $redirectFactoryMock; /** @var PageFactory|MockObject */ protected $pageFactoryMock; /** @var ProductRepositoryInterface|MockObject */ protected $productRepositoryMock; /** @var DecoderInterface|MockObject */ protected $decoderMock; /** @var RequestInterface|MockObject */ protected $request; /** @var ResponseInterface|MockObject */ protected $response; protected function setUp(): void { $this->contextMock = $this->createPartialMock( Context::class, ['getRequest', 'getResponse', 'getResultRedirectFactory'] ); $this->request = $this->getMockForAbstractClass(RequestInterface::class); $this->response = $this->getMockForAbstractClass(ResponseInterface::class); $this->redirectFactoryMock = $this->createPartialMock( RedirectFactory::class, ['create'] ); $this->contextMock->expects($this->any())->method('getRequest')->willReturn($this->request); $this->contextMock->expects($this->any())->method('getResponse')->willReturn($this->response); $this->contextMock->expects($this->any()) ->method('getResultRedirectFactory') ->willReturn($this->redirectFactoryMock); $this->itemFactoryMock = $this->createPartialMock( ItemFactory::class, ['create'] ); $this->collectionFactoryMock = $this->createPartialMock( CollectionFactory::class, ['create'] ); $this->sessionMock = $this->createMock(Session::class); $this->visitorMock = $this->createMock(Visitor::class); $this->listCompareMock = $this->createMock(ListCompare::class); $this->catalogSession = $this->getMockBuilder(\Magento\Catalog\Model\Session::class) ->addMethods(['setBeforeCompareUrl']) ->disableOriginalConstructor() ->getMock(); $this->storeManagerMock = $this->getMockForAbstractClass(StoreManagerInterface::class); $this->formKeyValidatorMock = $this->getMockBuilder(Validator::class) ->disableOriginalConstructor() ->getMock(); $this->pageFactoryMock = $this->createMock(PageFactory::class); $this->productRepositoryMock = $this->getMockForAbstractClass(ProductRepositoryInterface::class); $this->decoderMock = $this->getMockForAbstractClass(DecoderInterface::class); $this->index = new Index( $this->contextMock, $this->itemFactoryMock, $this->collectionFactoryMock, $this->sessionMock, $this->visitorMock, $this->listCompareMock, $this->catalogSession, $this->storeManagerMock, $this->formKeyValidatorMock, $this->pageFactoryMock, $this->productRepositoryMock, $this->decoderMock ); } public function testExecute() { $beforeUrl = 'test_url'; $this->request->expects($this->any()) ->method('getParam') ->willReturnMap( [ ['uenc', null, $beforeUrl], ] ); $this->decoderMock->expects($this->once()) ->method('decode') ->with($beforeUrl) ->willReturn($beforeUrl . '1'); $this->catalogSession->expects($this->once()) ->method('setBeforeCompareUrl') ->with($beforeUrl . '1') ->willReturnSelf(); $this->redirectFactoryMock->expects($this->never())->method('create'); $this->index->execute(); } }