![]() 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/Config/Test/Unit/Dom/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Framework\Config\Test\Unit\Dom; use Magento\Framework\Component\ComponentRegistrar; use Magento\Framework\Config\Dom\UrnResolver; use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; use PHPUnit\Framework\TestCase; class UrnResolverTest extends TestCase { /** * @var UrnResolver */ protected $urnResolver; /** * @var ObjectManager */ protected $objectManagerHelper; protected function setUp(): void { $this->objectManagerHelper = new ObjectManager($this); $this->urnResolver = $this->objectManagerHelper->getObject(UrnResolver::class); } public function testGetRealPathNoUrn() { $xsdPath = '../../testPath/test.xsd'; $result = $this->urnResolver->getRealPath($xsdPath); $this->assertSame($xsdPath, $result, 'XSD paths does not match.'); } public function testGetRealPathWithFrameworkUrn() { $xsdUrn = 'urn:magento:framework:Config/Test/Unit/_files/sample.xsd'; $xsdPath = str_replace('\\', '/', realpath(dirname(__DIR__)) . '/_files/sample.xsd'); $result = $this->urnResolver->getRealPath($xsdUrn); $this->assertSame($xsdPath, $result, 'XSD paths does not match.'); } public function testGetRealPathWithModuleUrn() { $xsdUrn = 'urn:magento:module:Magento_Customer:etc/address_formats.xsd'; $componentRegistrar = new ComponentRegistrar(); $xsdPath = $componentRegistrar->getPath(ComponentRegistrar::MODULE, 'Magento_Customer') . '/etc/address_formats.xsd'; $result = $this->urnResolver->getRealPath($xsdUrn); $this->assertSame($xsdPath, $result, 'XSD paths does not match.'); } public function testGetRealPathWithSetupUrn() { $xsdUrn = 'urn:magento:framework:Setup/Declaration/Schema/etc/schema.xsd'; $componentRegistrar = new ComponentRegistrar(); $xsdPath = $componentRegistrar->getPath(ComponentRegistrar::LIBRARY, 'magento/framework') . '/Setup/Declaration/Schema/etc/schema.xsd'; $result = $this->urnResolver->getRealPath($xsdUrn); $this->assertSame($xsdPath, $result, 'XSD paths does not match.'); } public function testGetRealPathWrongSection() { $this->expectException('Magento\Framework\Exception\NotFoundException'); $this->expectExceptionMessage( 'Unsupported format of schema location: \'urn:magento:test:test:etc/test_test.xsd\'' ); $xsdUrn = 'urn:magento:test:test:etc/test_test.xsd'; $this->urnResolver->getRealPath($xsdUrn); } public function testGetRealPathWrongModule() { $this->expectException('Magento\Framework\Exception\NotFoundException'); $this->expectExceptionMessage( 'Could not locate schema: \'urn:magento:module:Magento_Test:test.xsd\' at \'/test.xsd\'' ); $xsdUrn = 'urn:magento:module:Magento_Test:test.xsd'; $this->urnResolver->getRealPath($xsdUrn); } }