| Current Path : /home/rtorresani/www/vendor/magento/module-integration/Test/Unit/Controller/Token/ |
| Current File : //home/rtorresani/www/vendor/magento/module-integration/Test/Unit/Controller/Token/RequestTest.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Integration\Test\Unit\Controller\Token;
use Magento\Backend\App\Action\Context;
use Magento\Framework\App\Console\Response;
use Magento\Framework\App\RequestInterface;
use Magento\Framework\App\ResponseInterface;
use Magento\Framework\App\ViewInterface;
use Magento\Framework\Controller\ResultFactory;
use Magento\Framework\Event\ManagerInterface;
use Magento\Framework\Oauth\Helper\Request;
use Magento\Framework\Oauth\OauthInterface;
use Magento\Framework\ObjectManagerInterface;
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
use Magento\Framework\View\Layout;
use Magento\Framework\View\Layout\ProcessorInterface;
use Magento\Framework\View\Page\Config;
use Magento\Framework\View\Result\Page;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
/**
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
*/
class RequestTest extends TestCase
{
/**
* @var RequestInterface|MockObject
*/
protected $request;
/**
* @var ResponseInterface|MockObject
*/
protected $response;
/**
* @var Context|MockObject
*/
protected $context;
/**
* @var ObjectManager $objectManagerHelper
*/
protected $objectManagerHelper;
/**
* @var OauthInterface|MockObject
*/
protected $frameworkOauthSvcMock;
/**
* @var \Magento\Framework\Oauth\Helper\Request|MockObject
*/
protected $helperMock;
/**
* @var \Magento\Integration\Controller\Token\Request
*/
protected $requestAction;
protected function setUp(): void
{
$this->request = $this->getMockBuilder(RequestInterface::class)
->addMethods(['getMethod'])
->onlyMethods(
[
'getModuleName',
'setModuleName',
'getActionName',
'setActionName',
'getParam',
'setParams',
'getParams',
'getCookie',
'isSecure'
]
)
->getMockForAbstractClass();
$this->response = $this->createMock(Response::class);
/** @var ObjectManagerInterface|MockObject */
$objectManager = $this->getMockForAbstractClass(ObjectManagerInterface::class);
/** @var ManagerInterface|MockObject */
$eventManager = $this->getMockForAbstractClass(ManagerInterface::class);
/** @var ProcessorInterface|MockObject */
$update = $this->getMockForAbstractClass(ProcessorInterface::class);
/** @var Layout|MockObject */
$layout = $this->createMock(Layout::class);
$layout->expects($this->any())->method('getUpdate')->willReturn($update);
/** @var Config */
$pageConfig = $this->createMock(Config::class);
$pageConfig->expects($this->any())->method('addBodyClass')->willReturnSelf();
/** @var Page|MockObject */
$page = $this->createPartialMock(
Page::class,
['getConfig', 'initLayout', 'addPageLayoutHandles', 'getLayout']
);
$page->expects($this->any())->method('getConfig')->willReturn($pageConfig);
$page->expects($this->any())->method('addPageLayoutHandles')->willReturnSelf();
$page->expects($this->any())->method('getLayout')->willReturn($layout);
/** @var ViewInterface|MockObject */
$view = $this->getMockForAbstractClass(ViewInterface::class);
$view->expects($this->any())->method('getLayout')->willReturn($layout);
/** @var ResultFactory|MockObject */
$resultFactory = $this->createMock(ResultFactory::class);
$resultFactory->expects($this->any())->method('create')->willReturn($page);
$this->context = $this->createMock(Context::class);
$this->context->expects($this->any())->method('getRequest')->willReturn($this->request);
$this->context->expects($this->any())->method('getResponse')->willReturn($this->response);
$this->context->expects($this->any())->method('getObjectManager')
->willReturn($objectManager);
$this->context->expects($this->any())->method('getEventManager')->willReturn($eventManager);
$this->context->expects($this->any())->method('getView')->willReturn($view);
$this->context->expects($this->any())->method('getResultFactory')
->willReturn($resultFactory);
$this->helperMock = $this->createMock(Request::class);
$this->frameworkOauthSvcMock = $this->getMockForAbstractClass(OauthInterface::class);
/** @var ObjectManager $objectManagerHelper */
$this->objectManagerHelper = new 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();
}
}