Files
Twig/tests/Node/SetTest.php
T
Fabien Potencier 0c6bd47d6b Merge branch '3.x' into 4.x
* 3.x:
  Deprecate using Node directly, introduce EmptyNode and Nodes
  Add support for inline comments
  Update plural.rst: Fixing(?) broken links
  Fix CS
  Add support for accessing class constants with the dot operator
  Fix getting a property on an object casted to an array
  Replace strtr() by strtolower()
  Improve escape deprecation message
  Remove useless assign in compiled code
  Add fixture filename as key
  Be more precise about double-escaping
  Fix template name in error for an unknown dynamic extends called from an include
2024-09-27 07:59:52 +02:00

104 lines
3.1 KiB
PHP

<?php
namespace Twig\Tests\Node;
/*
* 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;
use Twig\Node\Expression\AssignNameExpression;
use Twig\Node\Expression\ConstantExpression;
use Twig\Node\Expression\NameExpression;
use Twig\Node\Nodes;
use Twig\Node\PrintNode;
use Twig\Node\SetNode;
use Twig\Node\TextNode;
use Twig\Test\NodeTestCase;
class SetTest extends NodeTestCase
{
public function testConstructor()
{
$names = new Nodes([new AssignNameExpression('foo', 1)], 1);
$values = new Nodes([new ConstantExpression('foo', 1)], 1);
$node = new SetNode(false, $names, $values, 1);
$this->assertEquals($names, $node->getNode('names'));
$this->assertEquals($values, $node->getNode('values'));
$this->assertFalse($node->getAttribute('capture'));
}
public static function provideTests(): iterable
{
$tests = [];
$names = new Nodes([new AssignNameExpression('foo', 1)], 1);
$values = new Nodes([new ConstantExpression('foo', 1)], 1);
$node = new SetNode(false, $names, $values, 1);
$tests[] = [$node, <<<EOF
// line 1
\$context["foo"] = "foo";
EOF
];
$names = new Nodes([new AssignNameExpression('foo', 1)], 1);
$values = new Nodes([new PrintNode(new ConstantExpression('foo', 1), 1)], 1);
$node = new SetNode(true, $names, $values, 1);
$tests[] = [$node, <<<EOF
// line 1
\$context["foo"] = ('' === \$tmp = implode('', iterator_to_array((function () use (&\$context, \$macros, \$blocks) {
yield "foo";
yield from [];
})(), false))) ? '' : new Markup(\$tmp, \$this->env->getCharset());
EOF
, new Environment(new ArrayLoader()),
];
$names = new Nodes([new AssignNameExpression('foo', 1)], 1);
$values = new TextNode('foo', 1);
$node = new SetNode(true, $names, $values, 1);
$tests[] = [$node, <<<EOF
// line 1
\$context["foo"] = new Markup("foo", \$this->env->getCharset());
EOF
];
$names = new Nodes([new AssignNameExpression('foo', 1)], 1);
$values = new TextNode('', 1);
$node = new SetNode(true, $names, $values, 1);
$tests[] = [$node, <<<EOF
// line 1
\$context["foo"] = "";
EOF
];
$names = new Nodes([new AssignNameExpression('foo', 1)], 1);
$values = new PrintNode(new ConstantExpression('foo', 1), 1);
$node = new SetNode(true, $names, $values, 1);
$tests[] = [$node, <<<EOF
// line 1
\$context["foo"] = new Markup("foo", \$this->env->getCharset());
EOF
];
$names = new Nodes([new AssignNameExpression('foo', 1), new AssignNameExpression('bar', 1)], 1);
$values = new Nodes([new ConstantExpression('foo', 1), new NameExpression('bar', 1)], 1);
$node = new SetNode(false, $names, $values, 1);
$tests[] = [$node, <<<'EOF'
// line 1
[$context["foo"], $context["bar"]] = ["foo", ($context["bar"] ?? null)];
EOF
];
return $tests;
}
}