mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-20 14:36:57 +00:00
0c6bd47d6b
* 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
127 lines
5.6 KiB
PHP
127 lines
5.6 KiB
PHP
<?php
|
|
|
|
namespace Twig\Tests\Node\Expression;
|
|
|
|
/*
|
|
* 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\EmptyNode;
|
|
use Twig\Node\Expression\ConstantExpression;
|
|
use Twig\Node\Expression\FunctionExpression;
|
|
use Twig\Node\Nodes;
|
|
use Twig\Test\NodeTestCase;
|
|
use Twig\TwigFunction;
|
|
|
|
class FunctionTest extends NodeTestCase
|
|
{
|
|
public function testConstructor()
|
|
{
|
|
$name = 'function';
|
|
$args = new EmptyNode();
|
|
$node = new FunctionExpression(new TwigFunction($name), $args, 1);
|
|
|
|
$this->assertEquals($name, $node->getAttribute('name'));
|
|
$this->assertEquals($args, $node->getNode('arguments'));
|
|
}
|
|
|
|
public static function provideTests(): iterable
|
|
{
|
|
$environment = static::createEnvironment();
|
|
|
|
$tests = [];
|
|
|
|
$node = self::createFunction($environment, 'foo');
|
|
$tests[] = [$node, 'Twig\Tests\Node\Expression\twig_tests_function_dummy()', $environment];
|
|
|
|
$node = self::createFunction($environment, 'foo_closure');
|
|
$tests[] = [$node, twig_tests_function_dummy::class.'()', $environment];
|
|
|
|
$node = self::createFunction($environment, 'foo', [new ConstantExpression('bar', 1), new ConstantExpression('foobar', 1)]);
|
|
$tests[] = [$node, 'Twig\Tests\Node\Expression\twig_tests_function_dummy("bar", "foobar")', $environment];
|
|
|
|
$node = self::createFunction($environment, 'bar');
|
|
$tests[] = [$node, 'Twig\Tests\Node\Expression\twig_tests_function_dummy($this->env)', $environment];
|
|
|
|
$node = self::createFunction($environment, 'bar', [new ConstantExpression('bar', 1)]);
|
|
$tests[] = [$node, 'Twig\Tests\Node\Expression\twig_tests_function_dummy($this->env, "bar")', $environment];
|
|
|
|
$node = self::createFunction($environment, 'foofoo');
|
|
$tests[] = [$node, 'Twig\Tests\Node\Expression\twig_tests_function_dummy($context)', $environment];
|
|
|
|
$node = self::createFunction($environment, 'foofoo', [new ConstantExpression('bar', 1)]);
|
|
$tests[] = [$node, 'Twig\Tests\Node\Expression\twig_tests_function_dummy($context, "bar")', $environment];
|
|
|
|
$node = self::createFunction($environment, 'foobar');
|
|
$tests[] = [$node, 'Twig\Tests\Node\Expression\twig_tests_function_dummy($this->env, $context)', $environment];
|
|
|
|
$node = self::createFunction($environment, 'foobar', [new ConstantExpression('bar', 1)]);
|
|
$tests[] = [$node, 'Twig\Tests\Node\Expression\twig_tests_function_dummy($this->env, $context, "bar")', $environment];
|
|
|
|
// named arguments
|
|
$node = self::createFunction($environment, 'date', [
|
|
'timezone' => new ConstantExpression('America/Chicago', 1),
|
|
'date' => new ConstantExpression(0, 1),
|
|
]);
|
|
$tests[] = [$node, '$this->extensions[\'Twig\Extension\CoreExtension\']->convertDate(0, "America/Chicago")'];
|
|
|
|
// arbitrary named arguments
|
|
$node = self::createFunction($environment, 'barbar');
|
|
$tests[] = [$node, 'Twig\Tests\Node\Expression\twig_tests_function_barbar()', $environment];
|
|
|
|
$node = self::createFunction($environment, 'barbar', ['foo' => new ConstantExpression('bar', 1)]);
|
|
$tests[] = [$node, 'Twig\Tests\Node\Expression\twig_tests_function_barbar(null, null, ["foo" => "bar"])', $environment];
|
|
|
|
$node = self::createFunction($environment, 'barbar', ['arg2' => new ConstantExpression('bar', 1)]);
|
|
$tests[] = [$node, 'Twig\Tests\Node\Expression\twig_tests_function_barbar(null, "bar")', $environment];
|
|
|
|
$node = self::createFunction($environment, 'barbar', [
|
|
new ConstantExpression('1', 1),
|
|
new ConstantExpression('2', 1),
|
|
new ConstantExpression('3', 1),
|
|
'foo' => new ConstantExpression('bar', 1),
|
|
]);
|
|
$tests[] = [$node, 'Twig\Tests\Node\Expression\twig_tests_function_barbar("1", "2", ["3", "foo" => "bar"])', $environment];
|
|
|
|
// function as an anonymous function
|
|
$node = self::createFunction($environment, 'anonymous', [new ConstantExpression('foo', 1)]);
|
|
$tests[] = [$node, '$this->env->getFunction(\'anonymous\')->getCallable()("foo")'];
|
|
|
|
return $tests;
|
|
}
|
|
|
|
private static function createFunction(Environment $env, $name, array $arguments = []): FunctionExpression
|
|
{
|
|
return new FunctionExpression($env->getFunction($name), new Nodes($arguments), 1);
|
|
}
|
|
|
|
protected static function createEnvironment(): Environment
|
|
{
|
|
$env = new Environment(new ArrayLoader());
|
|
$env->addFunction(new TwigFunction('anonymous', function () {}));
|
|
$env->addFunction(new TwigFunction('foo', 'Twig\Tests\Node\Expression\twig_tests_function_dummy', []));
|
|
$env->addFunction(new TwigFunction('foo_closure', \Closure::fromCallable(twig_tests_function_dummy::class), []));
|
|
$env->addFunction(new TwigFunction('bar', 'Twig\Tests\Node\Expression\twig_tests_function_dummy', ['needs_environment' => true]));
|
|
$env->addFunction(new TwigFunction('foofoo', 'Twig\Tests\Node\Expression\twig_tests_function_dummy', ['needs_context' => true]));
|
|
$env->addFunction(new TwigFunction('foobar', 'Twig\Tests\Node\Expression\twig_tests_function_dummy', ['needs_environment' => true, 'needs_context' => true]));
|
|
$env->addFunction(new TwigFunction('barbar', twig_tests_function_barbar(...), ['is_variadic' => true]));
|
|
|
|
return $env;
|
|
}
|
|
}
|
|
|
|
function twig_tests_function_dummy()
|
|
{
|
|
}
|
|
|
|
function twig_tests_function_barbar($arg1 = null, $arg2 = null, array $args = [])
|
|
{
|
|
}
|