Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
web
/
vhosts
/
www.humitest.fr
/
htdocs
/
vendor
/
twig
/
twig
/
test
/
Twig
/
Tests
/
Loader
/
/srv/data/web/vhosts/www.humitest.fr/htdocs/vendor/twig/twig/test/Twig/Tests/Loader/ArrayTest.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. */ use Twig\Loader\ArrayLoader; class Twig_Tests_Loader_ArrayTest extends \PHPUnit\Framework\TestCase { /** * @expectedException \Twig\Error\LoaderError */ public function testGetSourceContextWhenTemplateDoesNotExist() { $loader = new ArrayLoader([]); $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')); } /** * @expectedException \Twig\Error\LoaderError */ public function testGetCacheKeyWhenTemplateDoesNotExist() { $loader = new ArrayLoader([]); $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())); } /** * @expectedException \Twig\Error\LoaderError */ public function testIsFreshWhenTemplateDoesNotExist() { $loader = new ArrayLoader([]); $loader->isFresh('foo', time()); } }