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\Integration\Test\Unit\Controller\Token;
/**
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
*/
class RequestTest extends \PHPUnit\Framework\TestCase
{
/**
* @var \Magento\Framework\App\RequestInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $request;
/**
* @var \Magento\Framework\App\ResponseInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $response;
/**
* @var \Magento\Backend\App\Action\Context|\PHPUnit_Framework_MockObject_MockObject
*/
protected $context;
/**
* @var \Magento\Framework\TestFramework\Unit\Helper\ObjectManager $objectManagerHelper
*/
protected $objectManagerHelper;
/**
* @var \Magento\Framework\Oauth\OauthInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $frameworkOauthSvcMock;
/**
* @var \Magento\Framework\Oauth\Helper\Request|\PHPUnit_Framework_MockObject_MockObject
*/
protected $helperMock;
/**
* @var \Magento\Integration\Controller\Token\Request
*/
protected $requestAction;
protected function setUp()
{
$this->request = $this->createPartialMock(\Magento\Framework\App\RequestInterface::class, [
'getMethod',
'getModuleName',
'setModuleName',
'getActionName',
'setActionName',
'getParam',
'setParams',
'getParams',
'getCookie',
'isSecure'
]);
$this->response = $this->createMock(\Magento\Framework\App\Console\Response::class);
/** @var \Magento\Framework\ObjectManagerInterface|\PHPUnit_Framework_MockObject_MockObject */
$objectManager = $this->createMock(\Magento\Framework\ObjectManagerInterface::class);
/** @var \Magento\Framework\Event\ManagerInterface|\PHPUnit_Framework_MockObject_MockObject */
$eventManager = $this->createMock(\Magento\Framework\Event\ManagerInterface::class);
/** @var \Magento\Framework\View\Layout\ProcessorInterface|\PHPUnit_Framework_MockObject_MockObject */
$update = $this->createMock(\Magento\Framework\View\Layout\ProcessorInterface::class);
/** @var \Magento\Framework\View\Layout|\PHPUnit_Framework_MockObject_MockObject */
$layout = $this->createMock(\Magento\Framework\View\Layout::class);
$layout->expects($this->any())->method('getUpdate')->will($this->returnValue($update));
/** @var \Magento\Framework\View\Page\Config */
$pageConfig = $this->createMock(\Magento\Framework\View\Page\Config::class);
$pageConfig->expects($this->any())->method('addBodyClass')->will($this->returnSelf());
/** @var \Magento\Framework\View\Result\Page|\PHPUnit_Framework_MockObject_MockObject */
$page = $this->createPartialMock(
\Magento\Framework\View\Result\Page::class,
['getConfig', 'initLayout', 'addPageLayoutHandles', 'getLayout']
);
$page->expects($this->any())->method('getConfig')->will($this->returnValue($pageConfig));
$page->expects($this->any())->method('addPageLayoutHandles')->will($this->returnSelf());
$page->expects($this->any())->method('getLayout')->will($this->returnValue($layout));
/** @var \Magento\Framework\App\ViewInterface|\PHPUnit_Framework_MockObject_MockObject */
$view = $this->createMock(\Magento\Framework\App\ViewInterface::class);
$view->expects($this->any())->method('getLayout')->will($this->returnValue($layout));
/** @var Magento\Framework\Controller\ResultFactory|\PHPUnit_Framework_MockObject_MockObject */
$resultFactory = $this->createMock(\Magento\Framework\Controller\ResultFactory::class);
$resultFactory->expects($this->any())->method('create')->will($this->returnValue($page));
$this->context = $this->createMock(\Magento\Backend\App\Action\Context::class);
$this->context->expects($this->any())->method('getRequest')->will($this->returnValue($this->request));
$this->context->expects($this->any())->method('getResponse')->will($this->returnValue($this->response));
$this->context->expects($this->any())->method('getObjectManager')
->will($this->returnValue($objectManager));
$this->context->expects($this->any())->method('getEventManager')->will($this->returnValue($eventManager));
$this->context->expects($this->any())->method('getView')->will($this->returnValue($view));
$this->context->expects($this->any())->method('getResultFactory')
->will($this->returnValue($resultFactory));
$this->helperMock = $this->createMock(\Magento\Framework\Oauth\Helper\Request::class);
$this->frameworkOauthSvcMock = $this->createMock(\Magento\Framework\Oauth\OauthInterface::class);
/** @var \Magento\Framework\TestFramework\Unit\Helper\ObjectManager $objectManagerHelper */
$this->objectManagerHelper = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this);
$this->requestAction = $this->objectManagerHelper->getObject(
\Magento\Integration\Controller\Token\Request::class,
[
'context' => $this->context,
'oauthService'=> $this->frameworkOauthSvcMock,
'helper' => $this->helperMock,
]
);
}
/**
* Test the basic Request action.
*/
public function testRequestAction()
{
$this->request->expects($this->any())
->method('getMethod')
->willReturn('GET');
$this->helperMock->expects($this->once())
->method('getRequestUrl');
$this->helperMock->expects($this->once())
->method('prepareRequest');
$this->frameworkOauthSvcMock->expects($this->once())
->method('getRequestToken')
->willReturn(['response']);
$this->response->expects($this->once())
->method('setBody');
$this->requestAction->execute();
}
}