mirror of
https://github.com/twigphp/Twig.git
synced 2026-08-17 09:30:49 +00:00
96 lines
2.1 KiB
PHP
96 lines
2.1 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;
|
|
|
|
/*
|
|
* 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 PHPUnit\Framework\Attributes\DataProvider;
|
|
use PHPUnit\Framework\Attributes\Group;
|
|
use PHPUnit\Framework\TestCase;
|
|
use Twig\Environment;
|
|
use Twig\Extension\ExtensionInterface;
|
|
use Twig\Loader\ArrayLoader;
|
|
|
|
class CustomExtensionTest extends TestCase
|
|
{
|
|
/**
|
|
* @group legacy
|
|
*
|
|
* @dataProvider provideInvalidExtensions
|
|
*/
|
|
#[DataProvider('provideInvalidExtensions'), Group('legacy')]
|
|
public function testGetInvalidOperators(ExtensionInterface $extension, $expectedExceptionMessage)
|
|
{
|
|
$env = new Environment(new ArrayLoader());
|
|
$env->addExtension($extension);
|
|
|
|
$this->expectException(\InvalidArgumentException::class);
|
|
$this->expectExceptionMessage($expectedExceptionMessage);
|
|
|
|
$env->getExpressionParsers();
|
|
}
|
|
|
|
public static function provideInvalidExtensions()
|
|
{
|
|
return [
|
|
[new InvalidOperatorExtension([1, 2, 3]), '"Twig\Tests\InvalidOperatorExtension::getOperators()" must return an array of 2 elements, got 3.'],
|
|
];
|
|
}
|
|
}
|
|
|
|
class InvalidOperatorExtension implements ExtensionInterface
|
|
{
|
|
private $operators;
|
|
|
|
public function __construct($operators)
|
|
{
|
|
$this->operators = $operators;
|
|
}
|
|
|
|
public function getTokenParsers(): array
|
|
{
|
|
return [];
|
|
}
|
|
|
|
public function getNodeVisitors(): array
|
|
{
|
|
return [];
|
|
}
|
|
|
|
public function getFilters(): array
|
|
{
|
|
return [];
|
|
}
|
|
|
|
public function getTests(): array
|
|
{
|
|
return [];
|
|
}
|
|
|
|
public function getFunctions(): array
|
|
{
|
|
return [];
|
|
}
|
|
|
|
public function getOperators(): array
|
|
{
|
|
return $this->operators;
|
|
}
|
|
}
|