![]() 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/File/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Framework\Config\Test\Unit\File; use Magento\Framework\Config\File\ConfigFilePool; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; class ConfigFilePoolTest extends TestCase { /** * @var MockObject|ConfigFilePool */ private $configFilePool; protected function setUp(): void { $newPath = [ 'new_key' => 'new_config.php' ]; $this->configFilePool = new ConfigFilePool($newPath); } public function testGetPaths() { $expected['new_key'] = 'new_config.php'; $expected[ConfigFilePool::APP_CONFIG] = 'config.php'; $expected[ConfigFilePool::APP_ENV] = 'env.php'; $this->assertEquals($expected, $this->configFilePool->getPaths()); } public function testGetPath() { $expected = 'config.php'; $this->assertEquals($expected, $this->configFilePool->getPath(ConfigFilePool::APP_CONFIG)); } public function testGetPathException() { $this->expectException('Exception'); $this->expectExceptionMessage('File config key does not exist.'); $fileKey = 'not_existing'; $this->configFilePool->getPath($fileKey); } }