mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-16 20:36:33 +00:00
0b6e824ea8
* 3.x: Add void return type hint even in tests Run php-cs-fixer sequentially so the void_return src-only customiser is applied Fix CHANGELOG [Intl] Add format_list filter using PHP 8.5's IntlListFormatter # Conflicts: # .github/workflows/ci.yml # CHANGELOG # extra/cssinliner-extra/Tests/LegacyFunctionsTest.php # extra/html-extra/Tests/CvaTest.php # extra/html-extra/Tests/HtmlAttrMergeTest.php # extra/html-extra/Tests/HtmlAttrTest.php # extra/html-extra/Tests/LegacyFunctionsTest.php # extra/inky-extra/Tests/LegacyFunctionsTest.php # extra/markdown-extra/Tests/FunctionalTest.php # extra/markdown-extra/Tests/LegacyFunctionsTest.php # extra/twig-extra-bundle/DependencyInjection/Compiler/MissingExtensionSuggestorPass.php # extra/twig-extra-bundle/DependencyInjection/TwigExtraExtension.php # extra/twig-extra-bundle/TwigExtraBundle.php # src/Extension/CoreExtension.php # src/Extension/EscaperExtension.php # src/Node/CheckSecurityCallNode.php # src/Node/Expression/FunctionExpression.php # src/Node/ModuleNode.php # src/Node/Node.php # src/Node/TypesNode.php # src/Resources/core.php # src/Resources/debug.php # src/Test/IntegrationTestCase.php # tests/CustomExtensionTest.php # tests/EnvironmentTest.php # tests/ExpressionParserTest.php # tests/Extension/CoreTest.php # tests/Extension/EscaperTest.php # tests/Extension/LegacyDebugFunctionsTest.php # tests/Extension/LegacyStringLoaderFunctionsTest.php # tests/Extension/SandboxStateChangeTest.php # tests/Extension/SandboxTest.php # tests/LexerTest.php # tests/Node/Expression/CallTest.php # tests/Node/Expression/ConditionalTest.php # tests/Node/NodeTest.php # tests/Resources/LegacyCoreTest.php # tests/TemplateTest.php # tests/Util/CallableArgumentsExtractorTest.php
69 lines
2.3 KiB
PHP
69 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\Node\Expression;
|
|
|
|
use PHPUnit\Framework\Attributes\DataProvider;
|
|
use PHPUnit\Framework\TestCase;
|
|
use Twig\Environment;
|
|
use Twig\Loader\ArrayLoader;
|
|
use Twig\Node\Expression\ArrayExpression;
|
|
use Twig\Node\Expression\MacroReferenceExpression;
|
|
use Twig\Node\Expression\Variable\ContextVariable;
|
|
use Twig\Node\Expression\Variable\TemplateVariable;
|
|
|
|
class MacroReferenceTest extends TestCase
|
|
{
|
|
#[DataProvider('provideInvalidMacroNames')]
|
|
public function testConstructorRejectsNonIdentifierName(string $name): void
|
|
{
|
|
$this->expectException(\LogicException::class);
|
|
$this->expectExceptionMessage(\sprintf('Macro name "%s" is not a valid PHP identifier.', $name));
|
|
|
|
new MacroReferenceExpression(new TemplateVariable('foo', 1), $name, new ArrayExpression([], 1), 1);
|
|
}
|
|
|
|
public static function provideInvalidMacroNames(): iterable
|
|
{
|
|
yield 'empty' => [''];
|
|
yield 'starts with digit' => ['1foo'];
|
|
yield 'contains space' => ['foo bar'];
|
|
yield 'contains semicolon' => ['foo;bar'];
|
|
yield 'PHP injection payload' => ['macro_foo + 1; trigger_error("BAD") //'];
|
|
yield 'contains NUL byte' => ["foo\x00bar"];
|
|
}
|
|
|
|
public function testConstructorAcceptsAnExpressionAsName(): void
|
|
{
|
|
$node = new MacroReferenceExpression(new TemplateVariable('foo', 1), new ContextVariable('name', 1), new ArrayExpression([], 1), 1);
|
|
|
|
$this->assertTrue($node->hasNode('name'));
|
|
$this->assertNull($node->getAttribute('name'));
|
|
}
|
|
|
|
public function testDynamicNamePrefixesMacroAtRuntime(): void
|
|
{
|
|
$env = new Environment(new ArrayLoader());
|
|
$compiler = new \Twig\Compiler($env);
|
|
|
|
$node = new MacroReferenceExpression(
|
|
new TemplateVariable('mac', 1),
|
|
new ContextVariable('name', 1),
|
|
new ArrayExpression([], 1),
|
|
1,
|
|
);
|
|
$compiler->compile($node);
|
|
|
|
$this->assertStringContainsString("getTemplateForMacro(\$_v0 = 'macro_'.", $compiler->getSource());
|
|
$this->assertStringContainsString('->{$_v0}(...', $compiler->getSource());
|
|
}
|
|
}
|