/** * @test */ public function forceAbsoluteUrlReturnsCorrectAbsoluteUrlWithSubfolder() { // Force hostname and subfolder $this->subject->expects($this->any())->method('getEnvironmentVariable')->will($this->returnValueMap(array(array('HTTP_HOST', 'localhost'), array('TYPO3_SITE_PATH', '/subfolder/')))); $expected = 'http://localhost/subfolder/fileadmin/my.pdf'; $url = 'fileadmin/my.pdf'; $configuration = array('forceAbsoluteUrl' => '1'); $this->assertEquals($expected, $this->subject->_call('forceAbsoluteUrl', $url, $configuration)); }
/** * @test * @param string $linkParameter * @param string $expectedResult * @dataProvider detectLinkTypeFromLinkParameterDataProvider */ public function detectLinkTypeFromLinkParameter($linkParameter, $expectedResult) { /** @var TemplateService|\PHPUnit_Framework_MockObject_MockObject $templateServiceObjectMock */ $templateServiceObjectMock = $this->getMock(TemplateService::class, array('dummy')); $templateServiceObjectMock->setup = array('lib.' => array('parseFunc.' => $this->getLibParseFunc())); /** @var TypoScriptFrontendController|\PHPUnit_Framework_MockObject_MockObject $typoScriptFrontendControllerMockObject */ $typoScriptFrontendControllerMockObject = $this->getMock(TypoScriptFrontendController::class, array(), array(), '', false); $typoScriptFrontendControllerMockObject->config = array('config' => array(), 'mainScript' => 'index.php'); $typoScriptFrontendControllerMockObject->tmpl = $templateServiceObjectMock; $GLOBALS['TSFE'] = $typoScriptFrontendControllerMockObject; $this->subject->_set('typoScriptFrontendController', $typoScriptFrontendControllerMockObject); $this->assertEquals($expectedResult, $this->subject->_call('detectLinkTypeFromLinkParameter', $linkParameter)); }
/** * @param string $expected The expected URL * @param string $url The URL to parse and manipulate * @param array $configuration The configuration array * @test * @dataProvider forceAbsoluteUrlReturnsCorrectAbsoluteUrlDataProvider */ public function forceAbsoluteUrlReturnsCorrectAbsoluteUrl($expected, $url, array $configuration) { // Force hostname $this->cObj->expects($this->any())->method('getEnvironmentVariable')->will($this->returnValueMap(array(array('HTTP_HOST', 'localhost'), array('TYPO3_SITE_PATH', '/')))); $this->assertEquals($expected, $this->cObj->_call('forceAbsoluteUrl', $url, $configuration)); }