/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/App/Test/Unit/ActionFlagTest.php
97 строк
3 KB
Alexandra Zota
ACP2E-4019: CE copyright updates for 2.4.9-beta1
22 окт 2025, 17:47
22 окт 2025, 17:47
1b769b7
Код
Авторство
О чём код?
<?php /** * Copyright 2015 Adobe * All Rights Reserved. */ 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')); } }