objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); $this->messageManagerMock = $this->createMock(\Magento\Framework\Message\ManagerInterface::class); $this->requestMock = $this->getMockForAbstractClass( \Magento\Framework\App\RequestInterface::class, [], '', false, true, true, ['getParam'] ); $this->objectManagerMock = $this->getMockBuilder(\Magento\Framework\ObjectManager\ObjectManager::class) ->disableOriginalConstructor() ->setMethods(['create']) ->getMock(); $this->resultRedirectMock = $this->getMockBuilder(\Magento\Backend\Model\View\Result\Redirect::class) ->setMethods(['setPath']) ->disableOriginalConstructor() ->getMock(); $this->resultRedirectFactoryMock = $this->getMockBuilder( \Magento\Backend\Model\View\Result\RedirectFactory::class )->disableOriginalConstructor() ->setMethods(['create']) ->getMock(); $this->resultRedirectFactoryMock->expects($this->atLeastOnce()) ->method('create') ->willReturn($this->resultRedirectMock); $this->contextMock = $this->createMock(\Magento\Backend\App\Action\Context::class); $this->synonymGroupMock = $this->createMock(\Magento\Search\Model\SynonymGroup::class); $this->repository = $this->createMock(\Magento\Search\Api\SynonymGroupRepositoryInterface::class); $this->contextMock->expects($this->any())->method('getRequest')->willReturn($this->requestMock); $this->contextMock->expects($this->any())->method('getMessageManager')->willReturn($this->messageManagerMock); $this->contextMock->expects($this->any())->method('getObjectManager')->willReturn($this->objectManagerMock); $this->contextMock->expects($this->any()) ->method('getResultRedirectFactory') ->willReturn($this->resultRedirectFactoryMock); $this->deleteController = $this->objectManager->getObject( \Magento\Search\Controller\Adminhtml\Synonyms\Delete::class, [ 'context' => $this->contextMock, 'synGroupRepository' => $this->repository ] ); } public function testDeleteAction() { $this->requestMock->expects($this->once())->method('getParam')->with('group_id')->willReturn(10); $this->repository->expects($this->once())->method('delete')->with($this->synonymGroupMock); $this->repository->expects($this->once())->method('get')->with(10)->willReturn($this->synonymGroupMock); $this->messageManagerMock->expects($this->once()) ->method('addSuccessMessage') ->with(__('The synonym group has been deleted.')); $this->messageManagerMock->expects($this->never())->method('addErrorMessage'); $this->resultRedirectMock->expects($this->once())->method('setPath')->with('*/*/')->willReturnSelf(); $this->assertSame($this->resultRedirectMock, $this->deleteController->execute()); } public function testDeleteActionNoId() { $this->requestMock->expects($this->once()) ->method('getParam') ->willReturn(null); $this->messageManagerMock->expects($this->once()) ->method('addErrorMessage') ->with(__('We can\'t find a synonym group to delete.')); $this->messageManagerMock->expects($this->never()) ->method('addSuccessMessage'); $this->resultRedirectMock->expects($this->once()) ->method('setPath') ->with('*/*/') ->willReturnSelf(); $this->assertSame($this->resultRedirectMock, $this->deleteController->execute()); } }