1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\Logger\Test\Unit\Handler;
class BaseTest extends \PHPUnit\Framework\TestCase
{
/**
* @var \Magento\Framework\Logger\Handler\Base|\PHPUnit_Framework_MockObject_MockObject
*/
private $model;
/**
* @var \ReflectionMethod
*/
private $sanitizeMethod;
protected function setUp()
{
$driverMock = $this->getMockBuilder(\Magento\Framework\Filesystem\DriverInterface::class)
->disableOriginalConstructor()
->getMock();
$this->model = new \Magento\Framework\Logger\Handler\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'])
);
}
/**
* @expectedException \InvalidArgumentException
* @expectedExceptionMessage Filename expected to be a string
*/
public function testSanitizeFileException()
{
$this->sanitizeMethod->invokeArgs($this->model, [['filename' => 'notValid']]);
}
}