mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-14 19:36:43 +00:00
fa1c9f0bf9
* 3.x: Remove obsolete code Deprecate Environment::mergeGlobals() Bump version Prepare the 3.13.0 release Fix wrong format of `Environment::VERSION_ID` constant Fix minor things Fix CS Fix isset in ForLoopNode Fix iterable return type Improve exception expectations reliability
81 lines
1.7 KiB
PHP
81 lines
1.7 KiB
PHP
<?php
|
|
|
|
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\TestCase;
|
|
use Twig\Environment;
|
|
use Twig\Extension\ExtensionInterface;
|
|
use Twig\Loader\ArrayLoader;
|
|
|
|
class CustomExtensionTest extends TestCase
|
|
{
|
|
#[DataProvider('provideInvalidExtensions')]
|
|
public function testGetInvalidOperators(ExtensionInterface $extension, $expectedExceptionMessage)
|
|
{
|
|
$env = new Environment(new ArrayLoader());
|
|
$env->addExtension($extension);
|
|
|
|
$this->expectException(\InvalidArgumentException::class);
|
|
$this->expectExceptionMessage($expectedExceptionMessage);
|
|
|
|
$env->getUnaryOperators();
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|