1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
declare(strict_types=1); |
4
|
|
|
|
5
|
|
|
namespace GacelaTest\Feature\Framework\FileCache; |
6
|
|
|
|
7
|
|
|
use Gacela\Framework\Bootstrap\GacelaConfig; |
8
|
|
|
use Gacela\Framework\ClassResolver\Cache\ClassNamePhpCache; |
9
|
|
|
use Gacela\Framework\ClassResolver\Cache\CustomServicesPhpCache; |
10
|
|
|
use Gacela\Framework\Gacela; |
11
|
|
|
use GacelaTest\Feature\Util\DirectoryUtil; |
12
|
|
|
use PHPUnit\Framework\TestCase; |
13
|
|
|
|
14
|
|
|
final class FileCacheFeatureTest extends TestCase |
15
|
|
|
{ |
16
|
|
|
public static function tearDownAfterClass(): void |
17
|
|
|
{ |
18
|
|
|
Gacela::bootstrap(__DIR__, static function (GacelaConfig $config): void { |
19
|
|
|
$config->resetInMemoryCache(); |
20
|
|
|
$config->setFileCache(false); |
21
|
|
|
}); |
22
|
|
|
|
23
|
|
|
DirectoryUtil::removeDir(__DIR__ . '/custom'); |
24
|
|
|
} |
25
|
|
|
|
26
|
|
|
protected function setUp(): void |
27
|
|
|
{ |
28
|
|
|
DirectoryUtil::removeDir(__DIR__ . '/custom'); |
29
|
|
|
} |
30
|
|
|
|
31
|
|
|
public function test_custom_cache_dir(): void |
32
|
|
|
{ |
33
|
|
|
Gacela::bootstrap(__DIR__, static function (GacelaConfig $config): void { |
34
|
|
|
$config->resetInMemoryCache(); |
35
|
|
|
$config->enableFileCache('/custom/cache-dir'); |
36
|
|
|
}); |
37
|
|
|
|
38
|
|
|
$facade = new Module\Facade(); |
39
|
|
|
self::assertSame('name', $facade->getName()); |
40
|
|
|
|
41
|
|
|
self::assertFileExists(__DIR__ . '/custom/cache-dir/' . ClassNamePhpCache::FILENAME); |
42
|
|
|
self::assertFileExists(__DIR__ . '/custom/cache-dir/' . CustomServicesPhpCache::FILENAME); |
43
|
|
|
} |
44
|
|
|
|
45
|
|
|
public function test_custom_env_gacela_cache_dir(): void |
46
|
|
|
{ |
47
|
|
|
putenv('GACELA_CACHE_DIR=' . __DIR__ . '/custom/cache-dir'); |
48
|
|
|
|
49
|
|
|
Gacela::bootstrap(__DIR__, static function (GacelaConfig $config): void { |
50
|
|
|
$config->resetInMemoryCache(); |
51
|
|
|
$config->enableFileCache('/custom/this-will-be-overwritten'); |
52
|
|
|
}); |
53
|
|
|
|
54
|
|
|
$facade = new Module\Facade(); |
55
|
|
|
self::assertSame('name', $facade->getName()); |
56
|
|
|
|
57
|
|
|
self::assertFileExists(__DIR__ . '/custom/cache-dir/' . ClassNamePhpCache::FILENAME); |
58
|
|
|
self::assertFileExists(__DIR__ . '/custom/cache-dir/' . CustomServicesPhpCache::FILENAME); |
59
|
|
|
|
60
|
|
|
self::assertFileDoesNotExist(__DIR__ . '/custom/this-will-be-overwritten/' . ClassNamePhpCache::FILENAME); |
61
|
|
|
self::assertFileDoesNotExist(__DIR__ . '/custom/this-will-be-overwritten/' . CustomServicesPhpCache::FILENAME); |
62
|
|
|
} |
63
|
|
|
|
64
|
|
|
public function test_custom_cache_dir_but_cache_disable(): void |
65
|
|
|
{ |
66
|
|
|
Gacela::bootstrap(__DIR__, static function (GacelaConfig $config): void { |
67
|
|
|
$config->resetInMemoryCache(); |
68
|
|
|
$config->setFileCache(false, '/custom/cache-dir'); |
69
|
|
|
}); |
70
|
|
|
|
71
|
|
|
$facade = new Module\Facade(); |
72
|
|
|
self::assertSame('name', $facade->getName()); |
73
|
|
|
|
74
|
|
|
self::assertFileDoesNotExist(__DIR__ . '/custom/cache-dir/' . ClassNamePhpCache::FILENAME); |
75
|
|
|
self::assertFileDoesNotExist(__DIR__ . '/custom/cache-dir/' . CustomServicesPhpCache::FILENAME); |
76
|
|
|
} |
77
|
|
|
} |
78
|
|
|
|