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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\Locale\Test\Unit\Deployed;
use Magento\Framework\App\Filesystem\DirectoryList;
use Magento\Framework\Filesystem;
use Magento\Framework\Filesystem\Directory\ReadInterface;
use Magento\Framework\Locale\Deployed\Codes;
use Magento\Framework\View\Design\Theme\FlyweightFactory;
use Magento\Framework\View\Design\ThemeInterface;
use \PHPUnit_Framework_MockObject_MockObject as MockObject;
/**
* Test for Codes class.
*
* @see Codes
*/
class CodesTest extends \PHPUnit\Framework\TestCase
{
/**
* @var Filesystem|MockObject
*/
private $fileSystemMock;
/**
* @var FlyweightFactory|MockObject
*/
private $flyweightFactoryMock;
/**
* @var Codes
*/
private $model;
/**
* @inheritdoc
*/
protected function setUp()
{
$this->fileSystemMock = $this->getMockBuilder(Filesystem::class)
->disableOriginalConstructor()
->getMock();
$this->flyweightFactoryMock = $this->getMockBuilder(FlyweightFactory::class)
->disableOriginalConstructor()
->getMock();
$this->model = new Codes(
$this->flyweightFactoryMock,
$this->fileSystemMock
);
}
public function testGetList()
{
$code = 'code';
$area = 'area';
$fullPath = 'some/full/path';
$themeMock = $this->getMockBuilder(ThemeInterface::class)
->getMockForAbstractClass();
$themeMock->expects($this->once())
->method('getFullPath')
->willReturn($fullPath);
$this->flyweightFactoryMock->expects($this->once())
->method('create')
->with($code, $area)
->willReturn($themeMock);
$reader = $this->getMockBuilder(ReadInterface::class)
->getMockForAbstractClass();
$reader->expects($this->once())
->method('read')
->with($fullPath)
->willReturn([
$fullPath . '/de_DE',
$fullPath . '/en_US',
$fullPath . '/fr_FR'
]);
$this->fileSystemMock->expects($this->once())
->method('getDirectoryRead')
->with(DirectoryList::STATIC_VIEW)
->willReturn($reader);
$this->assertEquals(
[
'de_DE',
'en_US',
'fr_FR'
],
$this->model->getList($code, $area)
);
}
}