/** * @test */ public function getImgResourceHookGetsCalled() { $this->template->expects($this->atLeastOnce())->method('getFileName')->with('typo3/clear.gif')->will($this->returnValue('typo3/clear.gif')); $className = uniqid('tx_coretest'); $getImgResourceHookMock = $this->getMock('TYPO3\\CMS\\Frontend\\ContentObject\\ContentObjectGetImageResourceHookInterface', array('getImgResourcePostProcess'), array(), $className); $getImgResourceHookMock->expects($this->once())->method('getImgResourcePostProcess')->will($this->returnCallback(array($this, 'isGetImgResourceHookCalledCallback'))); $getImgResourceHookObjects = array($getImgResourceHookMock); $this->cObj->_setRef('getImgResourceHookObjects', $getImgResourceHookObjects); $this->cObj->IMAGE($this->typoScriptImage); }
/** * @test */ public function getImgResourceCallsGetImgResourcePostProcessHook() { $this->templateServiceMock->expects($this->atLeastOnce())->method('getFileName')->with('typo3/clear.gif')->will($this->returnValue('typo3/clear.gif')); $resourceFactory = $this->getMock(\TYPO3\CMS\Core\Resource\ResourceFactory::class, array(), array(), '', false); $this->subject->expects($this->any())->method('getResourceFactory')->will($this->returnValue($resourceFactory)); $className = $this->getUniqueId('tx_coretest'); $getImgResourceHookMock = $this->getMock(\TYPO3\CMS\Frontend\ContentObject\ContentObjectGetImageResourceHookInterface::class, array('getImgResourcePostProcess'), array(), $className); $getImgResourceHookMock->expects($this->once())->method('getImgResourcePostProcess')->will($this->returnCallback(array($this, 'isGetImgResourceHookCalledCallback'))); $getImgResourceHookObjects = array($getImgResourceHookMock); $this->subject->_setRef('getImgResourceHookObjects', $getImgResourceHookObjects); $this->subject->getImgResource('typo3/clear.gif', array()); }