12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- namespace Doctrine\Tests\Common\Annotations;
- use Doctrine\Common\Annotations\AnnotationReader;
- use Doctrine\Common\Annotations\FileCacheReader;
- class FileCacheReaderTest extends AbstractReaderTest
- {
- private $cacheDir;
- protected function getReader()
- {
- $this->cacheDir = sys_get_temp_dir() . "/annotations_". uniqid();
- @mkdir($this->cacheDir);
- return new FileCacheReader(new AnnotationReader(), $this->cacheDir);
- }
- public function tearDown()
- {
- foreach (glob($this->cacheDir.'/*.php') AS $file) {
- unlink($file);
- }
- rmdir($this->cacheDir);
- }
- /**
- * @group DCOM-81
- */
- public function testAttemptToCreateAnnotationCacheDir()
- {
- $this->cacheDir = sys_get_temp_dir() . "/not_existed_dir_". uniqid();
- $this->assertFalse(is_dir($this->cacheDir));
- $cache = new FileCacheReader(new AnnotationReader(), $this->cacheDir);
- $this->assertTrue(is_dir($this->cacheDir));
- }
- }
|