diff --git a/typo3/sysext/core/Classes/TypoScript/TemplateService.php b/typo3/sysext/core/Classes/TypoScript/TemplateService.php index dfebd16bde2ef9e07063cf50d81deb1b43038fc6..e1443aa2ba2a0ce8cc297593b5720625e4fa5d83 100644 --- a/typo3/sysext/core/Classes/TypoScript/TemplateService.php +++ b/typo3/sysext/core/Classes/TypoScript/TemplateService.php @@ -1127,7 +1127,7 @@ class TemplateService { // if this is an URL, it can be returned directly $urlScheme = parse_url($file, PHP_URL_SCHEME); - if ($urlScheme === 'https' || $urlScheme === 'http') { + if ($urlScheme === 'https' || $urlScheme === 'http' || is_file(PATH_site . $file)) { return $file; } diff --git a/typo3/sysext/core/Tests/Unit/TypoScript/TemplateServiceTest.php b/typo3/sysext/core/Tests/Unit/TypoScript/TemplateServiceTest.php index 226d0905e655dcd994a07bd6a0408743821838e3..b6e87de91a92210880dd7f120a1cd936071a4cc8 100644 --- a/typo3/sysext/core/Tests/Unit/TypoScript/TemplateServiceTest.php +++ b/typo3/sysext/core/Tests/Unit/TypoScript/TemplateServiceTest.php @@ -41,7 +41,9 @@ class TemplateServiceTest extends \TYPO3\CMS\Core\Tests\UnitTestCase { protected function setUp() { $GLOBALS['TYPO3_LOADED_EXT'] = array(); $this->templateService = new \TYPO3\CMS\Core\TypoScript\TemplateService(); + $this->templateService->tt_track = FALSE; $this->templateServiceMock = $this->getAccessibleMock('\\TYPO3\\CMS\\Core\\TypoScript\\TemplateService', array('dummy')); + $this->templateServiceMock->tt_track = FALSE; } /** @@ -151,4 +153,34 @@ class TemplateServiceTest extends \TYPO3\CMS\Core\Tests\UnitTestCase { $this->templateServiceMock->updateRootlineData($newInvalidRootline); } + /** + * @test + */ + public function getFileNameReturnsUrlCorrectly() { + $this->assertSame('http://example.com', $this->templateService->getFileName('http://example.com')); + $this->assertSame('https://example.com', $this->templateService->getFileName('https://example.com')); + } + + /** + * @test + */ + public function getFileNameReturnsFileCorrectly() { + $this->assertSame('typo3/index.php', $this->templateService->getFileName('typo3/index.php')); + } + + /** + * @test + */ + public function getFileNameReturnsNullIfDirectory() { + $this->assertNull($this->templateService->getFileName(__DIR__)); + } + + /** + * @test + */ + public function getFileNameReturnsNullWithInvalidFileName() { + $this->assertNull($this->templateService->getFileName(' ')); + $this->assertNull($this->templateService->getFileName('something/../else')); + } + }