closureMock = function () { return 'Expected'; }; $this->subjectMock = $this->createMock(\Magento\Backend\App\AbstractAction::class); $this->requestMock = $this->getMockForAbstractClass( RequestInterface::class, [], '', false, false, true, ['getPost', 'setPostValue'] ); $objectManager = new ObjectManager($this); $this->plugin = $objectManager->getObject( \Magento\Backend\App\Action\Plugin\MassactionKey::class, [ 'subject' => $this->subjectMock, 'request' => $this->requestMock, ] ); } /** * @param $postData array|string * @param array $convertedData * @dataProvider beforeDispatchDataProvider */ public function testBeforeDispatchWhenMassactionPrepareKeyRequestExists($postData, $convertedData) { $this->requestMock->expects($this->at(0)) ->method('getPost') ->with('massaction_prepare_key') ->will($this->returnValue('key')); $this->requestMock->expects($this->at(1)) ->method('getPost') ->with('key') ->will($this->returnValue($postData)); $this->requestMock->expects($this->once()) ->method('setPostValue') ->with('key', $convertedData); $this->plugin->beforeDispatch($this->subjectMock, $this->requestMock); } /** * @return array */ public function beforeDispatchDataProvider() { return [ 'post_data_is_array' => [['key'], ['key']], 'post_data_is_string' => ['key, key_two', ['key', ' key_two']] ]; } public function testBeforeDispatchWhenMassactionPrepareKeyRequestNotExists() { $this->requestMock->expects($this->once()) ->method('getPost') ->with('massaction_prepare_key') ->will($this->returnValue(false)); $this->requestMock->expects($this->never()) ->method('setPostValue'); $this->plugin->beforeDispatch($this->subjectMock, $this->requestMock); } }