![]() 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/framework/Controller/Test/Unit/Controller/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Framework\Controller\Test\Unit\Controller; use Magento\Framework\App\Request\Http; use Magento\Framework\App\ViewInterface; use Magento\Framework\Controller\Noroute\Index; use Magento\Framework\DataObject; use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; class NorouteTest extends TestCase { /** * @var \Magento\Framework\Controller\Noroute */ protected $_controller; /** * @var MockObject */ protected $_requestMock; /** * @var MockObject */ protected $_viewMock; /** * @var MockObject */ protected $_statusMock; protected function setUp(): void { $helper = new ObjectManager($this); $this->_requestMock = $this->createMock(Http::class); $this->_viewMock = $this->getMockForAbstractClass(ViewInterface::class); $this->_statusMock = $this->getMockBuilder(DataObject::class) ->addMethods(['getLoaded', 'getForwarded']) ->disableOriginalConstructor() ->getMock(); $this->_controller = $helper->getObject( Index::class, ['request' => $this->_requestMock, 'view' => $this->_viewMock] ); } public function testIndexActionWhenStatusNotLoaded() { $this->_requestMock->expects( $this->once() )->method( 'getParam' )->with( '__status__' )->willReturn( $this->_statusMock ); $this->_statusMock->expects($this->any())->method('getLoaded')->willReturn(false); $this->_viewMock->expects($this->once())->method('loadLayout')->with(['default', 'noroute']); $this->_viewMock->expects($this->once())->method('renderLayout'); $this->_controller->execute(); } public function testIndexActionWhenStatusLoaded() { $this->_requestMock->expects( $this->once() )->method( 'getParam' )->with( '__status__' )->willReturn( $this->_statusMock ); $this->_statusMock->expects($this->any())->method('getLoaded')->willReturn(true); $this->_statusMock->expects($this->any())->method('getForwarded')->willReturn(false); $this->_viewMock->expects($this->never())->method('loadLayout'); $this->_requestMock->expects( $this->once() )->method( 'setActionName' )->willReturn( $this->_requestMock ); $this->_controller->execute(); } public function testIndexActionWhenStatusNotInstanceofMagentoObject() { $this->_requestMock->expects( $this->once() )->method( 'getParam' )->with( '__status__' )->willReturn( 'string' ); $this->_controller->execute(); } }