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
67
68
69
70
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Widget\Test\Unit\Model\Config;
use Magento\Framework\Component\ComponentRegistrar;
use \Magento\Widget\Model\Config\FileResolver;
class FileResolverTest extends \PHPUnit\Framework\TestCase
{
/**
* @var FileResolver
*/
private $object;
/**
* @var \Magento\Framework\Module\Dir\Reader|\PHPUnit_Framework_MockObject_MockObject
*/
private $moduleReader;
/**
* @var \Magento\Framework\Config\FileIteratorFactory|\PHPUnit_Framework_MockObject_MockObject
*/
private $factory;
/**
* @var \Magento\Framework\Component\DirSearch|\PHPUnit_Framework_MockObject_MockObject
*/
private $componentDirSearch;
protected function setUp()
{
$this->moduleReader = $this->createMock(\Magento\Framework\Module\Dir\Reader::class);
$this->factory = $this->createMock(\Magento\Framework\Config\FileIteratorFactory::class);
$this->componentDirSearch = $this->createMock(\Magento\Framework\Component\DirSearch::class);
$this->object = new FileResolver($this->moduleReader, $this->factory, $this->componentDirSearch);
}
public function testGetGlobal()
{
$expected = new \stdClass();
$this->moduleReader
->expects($this->once())
->method('getConfigurationFiles')
->with('file')
->willReturn($expected);
$this->assertSame($expected, $this->object->get('file', 'global'));
}
public function testGetDesign()
{
$expected = new \stdClass();
$this->componentDirSearch->expects($this->once())
->method('collectFiles')
->with(ComponentRegistrar::THEME, 'etc/file')
->will($this->returnValue(['test']));
$this->factory->expects($this->once())->method('create')->with(['test'])->willReturn($expected);
$this->assertSame($expected, $this->object->get('file', 'design'));
}
public function testGetDefault()
{
$expected = new \stdClass();
$this->factory->expects($this->once())->method('create')->with([])->willReturn($expected);
$this->assertSame($expected, $this->object->get('file', 'unknown'));
}
}