productFrontendActionMock = $this->getMockBuilder( \Magento\Catalog\Model\ResourceModel\ProductFrontendAction::class ) ->disableOriginalConstructor() ->getMock(); $this->frontendStorageConfigurationPoolMock = $this->getMockBuilder( \Magento\Catalog\Model\FrontendStorageConfigurationPool::class ) ->disableOriginalConstructor() ->getMock(); $this->objectManagerHelper = new ObjectManagerHelper($this); $this->model = $this->objectManagerHelper->getObject( \Magento\Catalog\Cron\FrontendActionsFlush::class, [ 'productFrontendActionResource' => $this->productFrontendActionMock, 'frontendStorageConfigurationPool' => $this->frontendStorageConfigurationPoolMock ] ); } public function testExecute() { $connectionMock = $this->createMock(\Magento\Framework\DB\Adapter\AdapterInterface::class); $selectMock = $this->createMock(\Magento\Framework\DB\Select::class); $frontendConfiguration = $this->createMock(\Magento\Catalog\Model\FrontendStorageConfigurationInterface::class); $selectMock ->expects($this->once()) ->method('from') ->with('catalog_product_frontend_action', ['action_id', 'type_id']) ->will($this->returnSelf()); $selectMock ->expects($this->once()) ->method('group') ->with('type_id') ->willReturnSelf(); $frontendConfiguration->expects($this->once()) ->method('get') ->willReturn([ 'lifetime' => 1500 ]); $this->frontendStorageConfigurationPoolMock->expects($this->once()) ->method('get') ->with('recently_viewed_product') ->willReturn($frontendConfiguration); $this->productFrontendActionMock->expects($this->exactly(2)) ->method('getMainTable') ->willReturn('catalog_product_frontend_action'); $this->productFrontendActionMock->expects($this->exactly(2)) ->method('getConnection') ->willReturn($connectionMock); $connectionMock->expects($this->once()) ->method('select') ->willReturn($selectMock); $connectionMock->expects($this->once()) ->method('fetchPairs') ->with($selectMock) ->willReturn([ 'recently_viewed_product' ]); $connectionMock->expects($this->once()) ->method('quoteInto') ->with('added_at < ?', time() - 1500) ->willReturn(['added_at < ?', time() - 1500]); $connectionMock->expects($this->once()) ->method('delete') ->with('catalog_product_frontend_action', [['added_at < ?', time() - 1500]]); $this->model->execute(); } }