mirror of
https://github.com/twigphp/Twig.git
synced 2026-08-18 01:51:13 +00:00
96 lines
2.3 KiB
PHP
96 lines
2.3 KiB
PHP
<?php
|
|
|
|
/*
|
|
* 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.
|
|
*/
|
|
|
|
namespace Twig\Tests\Loader;
|
|
|
|
/*
|
|
* 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 PHPUnit\Framework\TestCase;
|
|
use Twig\Error\LoaderError;
|
|
use Twig\Loader\ArrayLoader;
|
|
|
|
class ArrayTest extends TestCase
|
|
{
|
|
public function testGetSourceContextWhenTemplateDoesNotExist()
|
|
{
|
|
$loader = new ArrayLoader();
|
|
|
|
$this->expectException(LoaderError::class);
|
|
$loader->getSourceContext('foo');
|
|
}
|
|
|
|
public function testGetCacheKey()
|
|
{
|
|
$loader = new ArrayLoader(['foo' => 'bar']);
|
|
|
|
$this->assertEquals('foo:bar', $loader->getCacheKey('foo'));
|
|
}
|
|
|
|
public function testGetCacheKeyWhenTemplateHasDuplicateContent()
|
|
{
|
|
$loader = new ArrayLoader([
|
|
'foo' => 'bar',
|
|
'baz' => 'bar',
|
|
]);
|
|
|
|
$this->assertEquals('foo:bar', $loader->getCacheKey('foo'));
|
|
$this->assertEquals('baz:bar', $loader->getCacheKey('baz'));
|
|
}
|
|
|
|
public function testGetCacheKeyIsProtectedFromEdgeCollisions()
|
|
{
|
|
$loader = new ArrayLoader([
|
|
'foo__' => 'bar',
|
|
'foo' => '__bar',
|
|
]);
|
|
|
|
$this->assertEquals('foo__:bar', $loader->getCacheKey('foo__'));
|
|
$this->assertEquals('foo:__bar', $loader->getCacheKey('foo'));
|
|
}
|
|
|
|
public function testGetCacheKeyWhenTemplateDoesNotExist()
|
|
{
|
|
$loader = new ArrayLoader();
|
|
|
|
$this->expectException(LoaderError::class);
|
|
$loader->getCacheKey('foo');
|
|
}
|
|
|
|
public function testSetTemplate()
|
|
{
|
|
$loader = new ArrayLoader();
|
|
$loader->setTemplate('foo', 'bar');
|
|
|
|
$this->assertEquals('bar', $loader->getSourceContext('foo')->getCode());
|
|
}
|
|
|
|
public function testIsFresh()
|
|
{
|
|
$loader = new ArrayLoader(['foo' => 'bar']);
|
|
$this->assertTrue($loader->isFresh('foo', time()));
|
|
}
|
|
|
|
public function testIsFreshWhenTemplateDoesNotExist()
|
|
{
|
|
$loader = new ArrayLoader();
|
|
|
|
$this->expectException(LoaderError::class);
|
|
$loader->isFresh('foo', time());
|
|
}
|
|
}
|