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
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Theme\Test\Unit\Helper;
class ThemeTest extends \PHPUnit\Framework\TestCase
{
/**
* @dataProvider getCssAssetsDataProvider
* @param string $layoutStr
* @param array $expectedResult
*/
public function testGetCssAssets($layoutStr, $expectedResult)
{
$theme = $this->getMockForAbstractClass(\Magento\Framework\View\Design\ThemeInterface::class);
$theme->expects($this->once())->method('getArea')->will($this->returnValue('area'));
$layoutMergeFactory = $this->_getLayoutMergeFactory($theme, $layoutStr);
$assetRepo = $this->createPartialMock(\Magento\Framework\View\Asset\Repository::class, ['createAsset']);
$assetRepo->expects($this->any())
->method('createAsset')
->will($this->returnArgument(0));
$helper = new \Magento\Theme\Helper\Theme(
$this->createMock(\Magento\Framework\App\Helper\Context::class),
$layoutMergeFactory,
$assetRepo
);
$result = $helper->getCssAssets($theme);
$this->assertSame($expectedResult, $result);
}
/**
* @return array
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)
*/
public function getCssAssetsDataProvider()
{
// @codingStandardsIgnoreStart
return [
[
'<block class="Magento\Theme\Block\Html\Head" name="head">
<block class="Magento\Theme\Block\Html\Head\Css" name="magento-loader-js">
<arguments><argument name="file" xsi:type="string">test1.css</argument></arguments>
</block>
</block>',
['test1.css' => 'test1.css'],
],
[
'<block class="Magento\Theme\Block\Html\Head" name="head">
<block class="Magento\Theme\Block\Html\Head\Css" name="magento-loader-js">
<arguments>
<argument name="file" xsi:type="string">Magento_Theme::test3.css</argument>
</arguments>
</block>
</block>',
['Magento_Theme::test3.css' => 'Magento_Theme::test3.css'],
],
[
'<block class="Magento\Theme\Block\Html\Head" name="head">
<block class="Magento\Theme\Block\Html\Head\Css" name="magento-loader-js">
<arguments><argument name="file" xsi:type="string">test.css</argument></arguments>
</block>
<block class="Magento\Theme\Block\Html\Head\Css" name="magento-loader-js">
<arguments>
<argument name="file" xsi:type="string">Magento_Theme::test.css</argument>
</arguments>
</block>
</block>
<referenceBlock name="head">
<block class="Magento\Theme\Block\Html\Head\Css" name="magento-loader-js">
<arguments><argument name="file" xsi:type="string">testh.css</argument></arguments>
</block>
<block class="Magento\Theme\Block\Html\Head\Css" name="magento-loader-js">
<arguments><argument name="file" xsi:type="string">Magento_Theme::test.css</argument></arguments>
</block>
</referenceBlock>
<block type="Some_Block_Class">
<block class="Magento\Theme\Block\Html\Head\Css" name="magento-loader-js">
<arguments><argument name="file" xsi:type="string">testa.css</argument></arguments>
</block>
<block class="Magento\Theme\Block\Html\Head\Css" name="magento-loader-js">
<arguments>
<argument name="file" xsi:type="string">Magento_Theme::testa.css</argument>
</arguments>
</block>
</block>
<referenceBlock name="some_block_name">
<block class="Magento\Theme\Block\Html\Head\Css" name="magento-loader-js">
<arguments><argument name="file" xsi:type="string">testb.css</argument></arguments>
</block>
<block class="Magento\Theme\Block\Html\Head\Css" name="magento-loader-js">
<arguments>
<argument name="file" xsi:type="string">Magento_Theme::testb.css</argument>
</arguments>
</block>
</referenceBlock>',
[
'Magento_Theme::test.css' => 'Magento_Theme::test.css',
'test.css' => 'test.css',
'testh.css' => 'testh.css',
],
],
];
// @codingStandardsIgnoreEnd
}
/**
* @param \PHPUnit_Framework_MockObject_MockObject $theme
* @param string $layoutStr
* @return \Magento\Framework\View\Layout\ProcessorFactory|\PHPUnit_Framework_MockObject_MockObject
*/
protected function _getLayoutMergeFactory($theme, $layoutStr)
{
/** @var $layoutProcessor \Magento\Framework\View\Layout\ProcessorInterface */
$layoutProcessor = $this->getMockBuilder(\Magento\Framework\View\Layout\ProcessorInterface::class)
->getMockForAbstractClass();
$xml = '<layouts xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">' . $layoutStr . '</layouts>';
$layoutElement = simplexml_load_string($xml);
$layoutProcessor->expects(
$this->any()
)->method(
'getFileLayoutUpdatesXml'
)->will(
$this->returnValue($layoutElement)
);
/** @var $processorFactory \Magento\Framework\View\Layout\ProcessorFactory */
$processorFactory = $this->createPartialMock(
\Magento\Framework\View\Layout\ProcessorFactory::class,
['create']
);
$processorFactory->expects($this->any())
->method('create')
->with(['theme' => $theme])
->will($this->returnValue($layoutProcessor));
return $processorFactory;
}
}