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
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Cms\Test\Unit\Controller\Index;
class IndexTest extends \PHPUnit\Framework\TestCase
{
/**
* @var \Magento\Cms\Controller\Index\Index
*/
protected $controller;
/**
* @var \PHPUnit_Framework_MockObject_MockObject
*/
protected $cmsHelperMock;
/**
* @var \PHPUnit_Framework_MockObject_MockObject
*/
protected $requestMock;
/**
* @var \Magento\Framework\Controller\Result\ForwardFactory|\PHPUnit_Framework_MockObject_MockObject
*/
protected $forwardFactoryMock;
/**
* @var \Magento\Framework\Controller\Result\Forward|\PHPUnit_Framework_MockObject_MockObject
*/
protected $forwardMock;
/**
* @var \Magento\Framework\View\Result\Page|\PHPUnit_Framework_MockObject_MockObject
*/
protected $resultPageMock;
/**
* @var string
*/
protected $pageId = 'home';
/**
* Test setUp
*/
protected function setUp()
{
$helper = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this);
$objectManagerMock = $this->createMock(\Magento\Framework\ObjectManagerInterface::class);
$responseMock = $this->createMock(\Magento\Framework\App\Response\Http::class);
$this->resultPageMock = $this->getMockBuilder(\Magento\Framework\View\Result\Page::class)
->disableOriginalConstructor()
->getMock();
$this->forwardFactoryMock = $this->getMockBuilder(\Magento\Framework\Controller\Result\ForwardFactory::class)
->setMethods(['create'])
->disableOriginalConstructor()
->getMock();
$this->forwardMock = $this->getMockBuilder(\Magento\Framework\Controller\Result\Forward::class)
->disableOriginalConstructor()
->getMock();
$this->forwardFactoryMock->expects($this->any())
->method('create')
->willReturn($this->forwardMock);
$scopeConfigMock = $this->createMock(\Magento\Framework\App\Config\ScopeConfigInterface::class);
$this->requestMock = $this->createMock(\Magento\Framework\App\Request\Http::class);
$this->cmsHelperMock = $this->createMock(\Magento\Cms\Helper\Page::class);
$valueMap = [
[\Magento\Framework\App\Config\ScopeConfigInterface::class,
$scopeConfigMock,
],
[\Magento\Cms\Helper\Page::class, $this->cmsHelperMock],
];
$objectManagerMock->expects($this->any())->method('get')->willReturnMap($valueMap);
$scopeConfigMock->expects($this->once())
->method('getValue')
->with(
\Magento\Cms\Helper\Page::XML_PATH_HOME_PAGE,
\Magento\Store\Model\ScopeInterface::SCOPE_STORE
)
->willReturn($this->pageId);
$this->controller = $helper->getObject(
\Magento\Cms\Controller\Index\Index::class,
[
'response' => $responseMock,
'objectManager' => $objectManagerMock,
'request' => $this->requestMock,
'resultForwardFactory' => $this->forwardFactoryMock,
'scopeConfig' => $scopeConfigMock,
'page' => $this->cmsHelperMock
]
);
}
/**
* Controller test
*/
public function testExecuteResultPage()
{
$this->cmsHelperMock->expects($this->once())
->method('prepareResultPage')
->with($this->controller, $this->pageId)
->willReturn($this->resultPageMock);
$this->assertSame($this->resultPageMock, $this->controller->execute());
}
/**
* Controller test
*/
public function testExecuteResultForward()
{
$this->forwardMock->expects($this->once())
->method('forward')
->with('defaultIndex')
->willReturnSelf();
$this->assertSame($this->forwardMock, $this->controller->execute());
}
}