![]() 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/App/Test/Unit/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Framework\App\Test\Unit; use Magento\Framework\App\ActionFlag; use Magento\Framework\App\Request\Http; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; class ActionFlagTest extends TestCase { /** * @var ActionFlag */ protected $_actionFlag; /** * @var MockObject */ protected $_requestMock; protected function setUp(): void { $this->_requestMock = $this->createMock(Http::class); $this->_actionFlag = new ActionFlag($this->_requestMock); } public function testSetIfActionNotExist() { $this->_requestMock->expects($this->once())->method('getActionName')->willReturn('action_name'); $this->_requestMock->expects($this->once())->method('getRouteName'); $this->_requestMock->expects($this->once())->method('getControllerName'); $this->_actionFlag->set('', 'flag', 'value'); } public function testSetIfActionExist() { $this->_requestMock->expects($this->never())->method('getActionName'); $this->_requestMock->expects($this->once())->method('getRouteName'); $this->_requestMock->expects($this->once())->method('getControllerName'); $this->_actionFlag->set('action', 'flag', 'value'); } public function testGetIfFlagNotExist() { $this->_requestMock->expects($this->once())->method('getActionName')->willReturn('action_name'); $this->_requestMock->expects($this->once())->method('getRouteName'); $this->_requestMock->expects($this->once())->method('getControllerName'); $this->assertEquals([], $this->_actionFlag->get('')); } public function testGetIfFlagExist() { $this->_requestMock->expects($this->never())->method('getActionName'); $this->_requestMock->expects( $this->exactly(3) )->method( 'getRouteName' )->willReturn( 'route' ); $this->_requestMock->expects( $this->exactly(3) )->method( 'getControllerName' )->willReturn( 'controller' ); $this->_actionFlag->set('action', 'flag', 'value'); $this->assertEquals('value', $this->_actionFlag->get('action', 'flag')); } public function testGetIfFlagWithControllerKryNotExist() { $this->_requestMock->expects($this->never())->method('getActionName'); $this->_requestMock->expects( $this->once() )->method( 'getRouteName' )->willReturn( 'route' ); $this->_requestMock->expects( $this->once() )->method( 'getControllerName' )->willReturn( 'controller' ); $this->assertFalse($this->_actionFlag->get('action', 'flag')); } }