2008-04-06 06:00:43 +02:00
|
|
|
<?php
|
2008-06-15 15:33:53 +02:00
|
|
|
/**
|
|
|
|
* @package sapphire
|
|
|
|
* @subpackage tests
|
2008-09-27 18:04:01 +02:00
|
|
|
*
|
|
|
|
* @todo test Director::alternateBaseFolder()
|
2008-06-15 15:33:53 +02:00
|
|
|
*/
|
2008-04-06 06:00:43 +02:00
|
|
|
class DirectorTest extends SapphireTest {
|
|
|
|
|
|
|
|
public function testFileExists() {
|
|
|
|
$tempFileName = 'DirectorTest_testFileExists.tmp';
|
|
|
|
$tempFilePath = TEMP_FOLDER . '/' . $tempFileName;
|
|
|
|
|
|
|
|
// create temp file
|
|
|
|
file_put_contents($tempFilePath, '');
|
|
|
|
|
|
|
|
$this->assertTrue(
|
|
|
|
Director::fileExists($tempFilePath),
|
|
|
|
'File exist check with absolute path'
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertTrue(
|
|
|
|
Director::fileExists($tempFilePath . '?queryparams=1&foo[bar]=bar'),
|
|
|
|
'File exist check with query params ignored'
|
|
|
|
);
|
|
|
|
|
|
|
|
unlink($tempFilePath);
|
|
|
|
}
|
2008-09-30 01:41:50 +02:00
|
|
|
|
2008-09-27 18:04:01 +02:00
|
|
|
public function testAlternativeBaseURL() {
|
2008-09-30 01:41:50 +02:00
|
|
|
// relative base URLs - you should end them in a /
|
|
|
|
Director::setBaseURL('/relativebase/');
|
|
|
|
$this->assertEquals('/relativebase/', Director::baseURL());
|
|
|
|
$this->assertEquals(Director::protocolAndHost() . '/relativebase/', Director::absoluteBaseURL());
|
|
|
|
$this->assertEquals(Director::protocolAndHost() . '/relativebase/subfolder/test', Director::absoluteURL('subfolder/test'));
|
|
|
|
|
|
|
|
// absolute base URLs - you should end them in a /
|
|
|
|
Director::setBaseURL('http://www.example.org/');
|
|
|
|
$this->assertEquals('http://www.example.org/', Director::baseURL());
|
|
|
|
$this->assertEquals('http://www.example.org/', Director::absoluteBaseURL());
|
|
|
|
$this->assertEquals('http://www.example.org/subfolder/test', Director::absoluteURL('subfolder/test'));
|
|
|
|
|
|
|
|
// Setting it to false restores functionality
|
2008-09-27 18:04:01 +02:00
|
|
|
Director::setBaseURL(false);
|
2008-09-30 01:41:50 +02:00
|
|
|
$this->assertEquals(BASE_URL.'/', Director::baseURL());
|
|
|
|
$this->assertEquals(Director::protocolAndHost().BASE_URL.'/', Director::absoluteBaseURL(BASE_URL));
|
|
|
|
$this->assertEquals(Director::protocolAndHost().BASE_URL . '/subfolder/test', Director::absoluteURL('subfolder/test'));
|
2008-09-27 18:04:01 +02:00
|
|
|
}
|
2008-04-06 06:00:43 +02:00
|
|
|
}
|
|
|
|
?>
|