12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Integration\Test\Unit\Controller\Adminhtml\Integration;
- class TokensExchangeTest extends \Magento\Integration\Test\Unit\Controller\Adminhtml\IntegrationTest
- {
- public function testTokensExchangeReauthorize()
- {
- $controller = $this->_createIntegrationController('TokensExchange');
- $this->_escaper->expects($this->once())->method('escapeHtml')->willReturnArgument(0);
- $this->_requestMock->expects($this->any())
- ->method('getParam')
- ->willReturnMap(
- [
- [
- \Magento\Integration\Controller\Adminhtml\Integration::PARAM_INTEGRATION_ID,
- null,
- self::INTEGRATION_ID,
- ],
- [\Magento\Integration\Controller\Adminhtml\Integration::PARAM_REAUTHORIZE, 0, 1],
- ]
- );
- $this->_integrationSvcMock->expects($this->once())
- ->method('get')
- ->with($this->equalTo(self::INTEGRATION_ID))
- ->willReturn($this->_getIntegrationModelMock());
- $this->_oauthSvcMock->expects($this->once())->method('deleteIntegrationToken');
- $this->_oauthSvcMock->expects($this->once())->method('postToConsumer');
- $consumerMock = $this->createMock(\Magento\Integration\Model\Oauth\Consumer::class);
- $consumerMock->expects($this->once())->method('getId')->willReturn(1);
- $this->_oauthSvcMock->expects($this->once())->method('loadConsumer')->willReturn($consumerMock);
- $this->_messageManager->expects($this->once())->method('addNotice');
- $this->_messageManager->expects($this->never())->method('addError');
- $this->_messageManager->expects($this->never())->method('addSuccess');
- $this->_viewMock->expects($this->once())->method('loadLayout');
- $this->_viewMock->expects($this->once())->method('renderLayout');
- $this->_responseMock->expects($this->once())->method('getBody');
- $this->_responseMock->expects($this->once())->method('representJson');
- $controller->execute();
- }
- }
|