![]() 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/Logger/Test/Unit/Handler/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Framework\Logger\Test\Unit\Handler; use Magento\Framework\Filesystem\DriverInterface; use Magento\Framework\Logger\Handler\Base; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; class BaseTest extends TestCase { /** * @var Base|MockObject */ private $model; /** * @var \ReflectionMethod */ private $sanitizeMethod; protected function setUp(): void { $driverMock = $this->getMockBuilder(DriverInterface::class) ->disableOriginalConstructor() ->getMockForAbstractClass(); $this->model = new Base($driverMock); $class = new \ReflectionClass($this->model); $this->sanitizeMethod = $class->getMethod('sanitizeFileName'); $this->sanitizeMethod->setAccessible(true); } public function testSanitizeEmpty() { $this->assertEquals('', $this->sanitizeMethod->invokeArgs($this->model, [''])); } public function testSanitizeSimpleFilename() { $this->assertEquals('custom.log', $this->sanitizeMethod->invokeArgs($this->model, ['custom.log'])); } public function testSanitizeLeadingSlashFilename() { $this->assertEquals( 'customfolder/custom.log', $this->sanitizeMethod->invokeArgs($this->model, ['/customfolder/custom.log']) ); } public function testSanitizeParentLevelFolder() { $this->assertEquals( 'var/hack/custom.log', $this->sanitizeMethod->invokeArgs($this->model, ['../../../var/hack/custom.log']) ); } }