![]() 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/dev/tests/integration/testsuite/Magento/Framework/View/Utility/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\View\Utility; use Magento\Framework\App\Bootstrap; use Magento\Framework\App\Filesystem\DirectoryList; class LayoutTest extends \PHPUnit\Framework\TestCase { /** * @var \Magento\Framework\View\Utility\Layout */ protected $_utility; protected function setUp(): void { \Magento\TestFramework\Helper\Bootstrap::getInstance()->reinitialize( [ Bootstrap::INIT_PARAM_FILESYSTEM_DIR_PATHS => [ DirectoryList::APP => ['path' => BP . '/dev/tests/integration'], ], ] ); $this->_utility = new \Magento\Framework\View\Utility\Layout($this); } /** * Assert that the actual layout update instance represents the expected layout update file * * @param string $expectedUpdateFile * @param \Magento\Framework\View\Layout\ProcessorInterface $actualUpdate */ protected function _assertLayoutUpdate($expectedUpdateFile, $actualUpdate) { $this->assertInstanceOf(\Magento\Framework\View\Layout\ProcessorInterface::class, $actualUpdate); $layoutUpdateXml = $actualUpdate->getFileLayoutUpdatesXml(); $this->assertInstanceOf(\Magento\Framework\View\Layout\Element::class, $layoutUpdateXml); $this->assertXmlStringEqualsXmlFile($expectedUpdateFile, $layoutUpdateXml->asNiceXml()); } /** * @param string|array $inputFiles * @param string $expectedFile * * @dataProvider getLayoutFromFixtureDataProvider */ public function testGetLayoutUpdateFromFixture($inputFiles, $expectedFile) { $layoutUpdate = $this->_utility->getLayoutUpdateFromFixture($inputFiles); $this->_assertLayoutUpdate($expectedFile, $layoutUpdate); } /** * @param string|array $inputFiles * @param string $expectedFile * * @dataProvider getLayoutFromFixtureDataProvider */ public function testGetLayoutFromFixture($inputFiles, $expectedFile) { $layout = $this->_utility->getLayoutFromFixture($inputFiles, $this->_utility->getLayoutDependencies()); $this->assertInstanceOf(\Magento\Framework\View\LayoutInterface::class, $layout); $this->_assertLayoutUpdate($expectedFile, $layout->getUpdate()); } public function getLayoutFromFixtureDataProvider() { return [ 'single fixture file' => [ __DIR__ . '/_files/layout/handle_two.xml', __DIR__ . '/_files/layout_merged/single_handle.xml', ], 'multiple fixture files' => [ glob(__DIR__ . '/_files/layout/*.xml'), __DIR__ . '/_files/layout_merged/multiple_handles.xml', ] ]; } }