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
/
symfony
/
twig-bridge
/
Tests
/
Node
/
/srv/data/web/vhosts/www.humitest.fr/htdocs/vendor/symfony/twig-bridge/Tests/Node/TransNodeTest.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Bridge\Twig\Tests\Node; use PHPUnit\Framework\TestCase; use Symfony\Bridge\Twig\Node\TransNode; use Twig\Compiler; use Twig\Environment; use Twig\Node\Expression\NameExpression; use Twig\Node\TextNode; /** * @author Asmir Mustafic <goetas@gmail.com> */ class TransNodeTest extends TestCase { public function testCompileStrict() { $body = new TextNode('trans %var%', 0); $vars = new NameExpression('foo', 0); $node = new TransNode($body, null, null, $vars); $env = new Environment($this->getMockBuilder('Twig\Loader\LoaderInterface')->getMock(), ['strict_variables' => true]); $compiler = new Compiler($env); $this->assertEquals( sprintf( 'echo $this->env->getExtension(\'Symfony\Bridge\Twig\Extension\TranslationExtension\')->trans("trans %%var%%", array_merge(["%%var%%" => %s], %s), "messages");', $this->getVariableGetterWithoutStrictCheck('var'), $this->getVariableGetterWithStrictCheck('foo') ), trim($compiler->compile($node)->getSource()) ); } protected function getVariableGetterWithoutStrictCheck($name) { return sprintf('($context["%s"] ?? null)', $name); } protected function getVariableGetterWithStrictCheck($name) { if (Environment::MAJOR_VERSION >= 2) { return sprintf('(isset($context["%1$s"]) || array_key_exists("%1$s", $context) ? $context["%1$s"] : (function () { throw new %2$s(\'Variable "%1$s" does not exist.\', 0, $this->source); })())', $name, Environment::VERSION_ID >= 20700 ? 'RuntimeError' : 'Twig_Error_Runtime'); } return sprintf('($context["%s"] ?? $this->getContext($context, "%1$s"))', $name); } }