2008-04-06 06:00:43 +02:00
|
|
|
<?php
|
2008-06-15 15:33:53 +02:00
|
|
|
/**
|
|
|
|
* @package sapphire
|
|
|
|
* @subpackage tests
|
|
|
|
*/
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
?>
|