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
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Backend\Test\Unit\App\Router;
class NoRouteHandlerTest extends \PHPUnit\Framework\TestCase
{
/**
* @var \PHPUnit_Framework_MockObject_MockObject
*/
protected $_helperMock;
/**
* @var \PHPUnit_Framework_MockObject_MockObject
*/
protected $_requestMock;
/**
* @var \PHPUnit_Framework_MockObject_MockObject
*/
protected $_routeConfigMock;
/**
* @var \Magento\Backend\App\Router\NoRouteHandler
*/
protected $_model;
protected function setUp()
{
$this->_requestMock = $this->createMock(\Magento\Framework\App\Request\Http::class);
$this->_routeConfigMock = $this->createMock(\Magento\Framework\App\Route\ConfigInterface::class);
$this->_helperMock = $this->createMock(\Magento\Backend\Helper\Data::class);
$this->_helperMock->expects($this->any())->method('getAreaFrontName')->will($this->returnValue('backend'));
$this->_model = new \Magento\Backend\App\Router\NoRouteHandler($this->_helperMock, $this->_routeConfigMock);
}
/**
* @covers \Magento\Backend\App\Router\NoRouteHandler::process
*/
public function testProcessWithBackendAreaFrontName()
{
$this->_routeConfigMock
->expects($this->once())
->method('getRouteFrontName')
->with('adminhtml')
->will($this->returnValue('admin'));
$this->_requestMock
->expects($this->once())
->method('getPathInfo')
->will($this->returnValue('backend/admin/custom'));
$this->_requestMock->expects(
$this->once()
)->method(
'setModuleName'
)->with(
'admin'
)->will(
$this->returnValue($this->_requestMock)
);
$this->_requestMock->expects(
$this->once()
)->method(
'setControllerName'
)->with(
'noroute'
)->will(
$this->returnValue($this->_requestMock)
);
$this->_requestMock->expects(
$this->once()
)->method(
'setActionName'
)->with(
'index'
)->will(
$this->returnValue($this->_requestMock)
);
$this->assertEquals(true, $this->_model->process($this->_requestMock));
}
/**
* @covers \Magento\Backend\App\Router\NoRouteHandler::process
*/
public function testProcessWithoutAreaFrontName()
{
$this->_requestMock->expects(
$this->once()
)->method(
'getPathInfo'
)->will(
$this->returnValue('module/controller/action')
);
$this->_requestMock->expects($this->never())->method('setModuleName');
$this->_requestMock->expects($this->never())->method('setControllerName');
$this->_requestMock->expects($this->never())->method('setActionName');
$this->assertEquals(false, $this->_model->process($this->_requestMock));
}
}