mirror of
https://github.com/twigphp/Twig.git
synced 2026-08-19 09:44:09 +00:00
67 lines
1.7 KiB
PHP
67 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace Twig\Tests;
|
|
|
|
/*
|
|
* This file is part of Twig.
|
|
*
|
|
* (c) Fabien Potencier
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
use Twig\Environment;
|
|
use Twig\Loader\ArrayLoader;
|
|
|
|
class FileCachingTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
private $env;
|
|
private $tmpDir;
|
|
|
|
protected function setUp(): void
|
|
{
|
|
$this->tmpDir = sys_get_temp_dir().'/TwigTests';
|
|
if (!file_exists($this->tmpDir)) {
|
|
@mkdir($this->tmpDir, 0777, true);
|
|
}
|
|
|
|
if (!is_writable($this->tmpDir)) {
|
|
$this->markTestSkipped(sprintf('Unable to run the tests as "%s" is not writable.', $this->tmpDir));
|
|
}
|
|
|
|
$this->env = new Environment(new ArrayLoader(['index' => 'index', 'index2' => 'index2']), ['cache' => $this->tmpDir]);
|
|
}
|
|
|
|
protected function tearDown(): void
|
|
{
|
|
FilesystemHelper::removeDir($this->tmpDir);
|
|
}
|
|
|
|
/**
|
|
* @group legacy
|
|
*/
|
|
public function testWritingCacheFiles()
|
|
{
|
|
$name = 'index';
|
|
$this->env->load($name);
|
|
$cacheFileName = $this->env->getCacheFilename($name);
|
|
|
|
$this->assertFileExists($cacheFileName, 'Cache file does not exist.');
|
|
}
|
|
|
|
/**
|
|
* @group legacy
|
|
*/
|
|
public function testClearingCacheFiles()
|
|
{
|
|
$name = 'index2';
|
|
$this->env->load($name);
|
|
$cacheFileName = $this->env->getCacheFilename($name);
|
|
|
|
$this->assertFileExists($cacheFileName, 'Cache file does not exist.');
|
|
$this->env->clearCacheFiles();
|
|
$this->assertFileDoesNotExist($cacheFileName, 'Cache file was not cleared.');
|
|
}
|
|
}
|