1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Config\Test\Unit\Block\System\Config;
- class TabsTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @var \Magento\Config\Block\System\Config\Tabs
- */
- protected $_object;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject
- */
- protected $_structureMock;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject
- */
- protected $_requestMock;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject
- */
- protected $_urlBuilderMock;
- protected function setUp()
- {
- $this->_requestMock = $this->createMock(\Magento\Framework\App\RequestInterface::class);
- $this->_requestMock->expects(
- $this->any()
- )->method(
- 'getParam'
- )->with(
- 'section'
- )->will(
- $this->returnValue('currentSectionId')
- );
- $this->_structureMock = $this->createMock(\Magento\Config\Model\Config\Structure::class);
- $this->_structureMock->expects($this->once())->method('getTabs')->will($this->returnValue([]));
- $this->_urlBuilderMock = $this->createMock(\Magento\Backend\Model\Url::class);
- $data = [
- 'configStructure' => $this->_structureMock,
- 'request' => $this->_requestMock,
- 'urlBuilder' => $this->_urlBuilderMock,
- ];
- $helper = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this);
- $this->_object = $helper->getObject(\Magento\Config\Block\System\Config\Tabs::class, $data);
- }
- protected function tearDown()
- {
- unset($this->_object);
- unset($this->_requestMock);
- unset($this->_structureMock);
- unset($this->_urlBuilderMock);
- }
- public function testGetSectionUrl()
- {
- $this->_urlBuilderMock->expects(
- $this->once()
- )->method(
- 'getUrl'
- )->with(
- '*/*/*',
- ['_current' => true, 'section' => 'testSectionId']
- )->will(
- $this->returnValue('testSectionUrl')
- );
- $sectionMock = $this->createMock(\Magento\Config\Model\Config\Structure\Element\Section::class);
- $sectionMock->expects($this->once())->method('getId')->will($this->returnValue('testSectionId'));
- $this->assertEquals('testSectionUrl', $this->_object->getSectionUrl($sectionMock));
- }
- public function testIsSectionActiveReturnsTrueForActiveSection()
- {
- $sectionMock = $this->createMock(\Magento\Config\Model\Config\Structure\Element\Section::class);
- $sectionMock->expects($this->once())->method('getId')->will($this->returnValue('currentSectionId'));
- $this->assertTrue($this->_object->isSectionActive($sectionMock));
- }
- public function testIsSectionActiveReturnsFalseForNonActiveSection()
- {
- $sectionMock = $this->createMock(\Magento\Config\Model\Config\Structure\Element\Section::class);
- $sectionMock->expects($this->once())->method('getId')->will($this->returnValue('nonCurrentSectionId'));
- $this->assertFalse($this->_object->isSectionActive($sectionMock));
- }
- }
|