![]() 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/Module/Test/Unit/Declaration/Converter/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Framework\Module\Test\Unit\Declaration\Converter; use Magento\Framework\Module\Declaration\Converter\Dom; use PHPUnit\Framework\TestCase; class DomTest extends TestCase { /** * @var Dom */ protected $_converter; protected function setUp(): void { $this->_converter = new Dom(); } public function testConvertWithValidDom() { $xmlFilePath = __DIR__ . '/_files/valid_module.xml'; $dom = new \DOMDocument(); $dom->loadXML(file_get_contents($xmlFilePath)); $expectedResult = include __DIR__ . '/_files/converted_valid_module.php'; $this->assertEquals($expectedResult, $this->_converter->convert($dom)); } /** * @param string $xmlString * @dataProvider convertWithInvalidDomDataProvider */ public function testConvertWithInvalidDom($xmlString) { $this->expectException('Exception'); $dom = new \DOMDocument(); try { $dom->loadXML($xmlString); $this->_converter->convert($dom); } catch (\PHPUnit\Framework\Error $ex) { // do nothing because we expect \Exception but not \PHPUnit\Framework\Error } } /** * @return array */ public function convertWithInvalidDomDataProvider() { return [ 'Module node without "name" attribute' => ['<?xml version="1.0"?><config><module /></config>'], 'Sequence module node without "name" attribute' => [ '<?xml version="1.0"?><config><module name="Module_One" >' . '<sequence><module/></sequence></module></config>', ], ]; } }