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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\App\Test\Unit;
use \Magento\Framework\App\DeploymentConfig;
use \Magento\Framework\Config\ConfigOptionsListConstants;
class DeploymentConfigTest extends \PHPUnit\Framework\TestCase
{
/**
* @var array
*/
private static $fixture = [
'configData1' => 'scalar_value',
'configData2' => [
'foo' => 1,
'bar' => ['baz' => 2],
],
];
/**
* @var array
*/
private static $flattenedFixture = [
'configData1' => 'scalar_value',
'configData2' => [
'foo' => 1,
'bar' => ['baz' => 2],
],
'configData2/foo' => 1,
'configData2/bar' => ['baz' => 2],
'configData2/bar/baz' => 2,
];
/**
* @var array
*/
protected static $fixtureConfig;
/**
* @var array
*/
protected static $fixtureConfigMerged;
/**
* @var \Magento\Framework\App\DeploymentConfig
*/
protected $_deploymentConfig;
/**
* @var \Magento\Framework\App\DeploymentConfig
*/
protected $_deploymentConfigMerged;
/**
* @var \PHPUnit_Framework_MockObject_MockObject
*/
private $reader;
public static function setUpBeforeClass()
{
self::$fixtureConfig = require __DIR__ . '/_files/config.php';
self::$fixtureConfigMerged = require __DIR__ . '/_files/other/local_developer_merged.php';
}
protected function setUp()
{
$this->reader = $this->createMock(\Magento\Framework\App\DeploymentConfig\Reader::class);
$this->_deploymentConfig = new \Magento\Framework\App\DeploymentConfig($this->reader, []);
$this->_deploymentConfigMerged = new \Magento\Framework\App\DeploymentConfig(
$this->reader,
require __DIR__ . '/_files/other/local_developer.php'
);
}
public function testGetters()
{
$this->reader->expects($this->once())->method('load')->willReturn(self::$fixture);
$this->assertSame(self::$flattenedFixture, $this->_deploymentConfig->get());
// second time to ensure loader will be invoked only once
$this->assertSame(self::$flattenedFixture, $this->_deploymentConfig->get());
$this->assertSame('scalar_value', $this->_deploymentConfig->getConfigData('configData1'));
$this->assertSame(self::$fixture['configData2'], $this->_deploymentConfig->getConfigData('configData2'));
}
public function testIsAvailable()
{
$this->reader->expects($this->once())->method('load')->willReturn([
ConfigOptionsListConstants::CONFIG_PATH_INSTALL_DATE => 1
]);
$object = new DeploymentConfig($this->reader);
$this->assertTrue($object->isAvailable());
}
public function testNotAvailable()
{
$this->reader->expects($this->once())->method('load')->willReturn([]);
$object = new DeploymentConfig($this->reader);
$this->assertFalse($object->isAvailable());
}
public function testNotAvailableThenAvailable()
{
$this->reader->expects($this->at(0))->method('load')->willReturn([]);
$this->reader->expects($this->at(1))->method('load')->willReturn([
ConfigOptionsListConstants::CONFIG_PATH_INSTALL_DATE => 1
]);
$object = new DeploymentConfig($this->reader);
$this->assertFalse($object->isAvailable());
$this->assertTrue($object->isAvailable());
}
/**
* @param array $data
* @expectedException \Exception
* @expectedExceptionMessage Key collision
* @dataProvider keyCollisionDataProvider
*/
public function testKeyCollision(array $data)
{
$this->reader->expects($this->once())->method('load')->willReturn($data);
$object = new DeploymentConfig($this->reader);
$object->get();
}
/**
* @return array
*/
public function keyCollisionDataProvider()
{
return [
[
['foo' => ['bar' => '1'], 'foo/bar' => '2'],
['foo/bar' => '1', 'foo' => ['bar' => '2']],
['foo' => ['subfoo' => ['subbar' => '1'], 'subfoo/subbar' => '2'], 'bar' => '3'],
]
];
}
}