mirror of
https://github.com/twigphp/Twig.git
synced 2026-08-19 23:32:34 +00:00
c829dafd75
* 1.x: Update to PhpUnitBridge and fix deprecations
82 lines
1.8 KiB
PHP
82 lines
1.8 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\TestCase;
|
|
use Twig\Environment;
|
|
use Twig\Extension\ExtensionInterface;
|
|
use Twig\Loader\LoaderInterface;
|
|
|
|
class CustomExtensionTest extends TestCase
|
|
{
|
|
/**
|
|
* @dataProvider provideInvalidExtensions
|
|
*/
|
|
public function testGetInvalidOperators(ExtensionInterface $extension, $expectedExceptionMessage)
|
|
{
|
|
$this->expectException('InvalidArgumentException');
|
|
$this->expectExceptionMessage($expectedExceptionMessage);
|
|
|
|
$env = new Environment($this->getMockBuilder(LoaderInterface::class)->getMock());
|
|
$env->addExtension($extension);
|
|
$env->getUnaryOperators();
|
|
}
|
|
|
|
public function provideInvalidExtensions()
|
|
{
|
|
return [
|
|
[new InvalidOperatorExtension(new \stdClass()), '"Twig\Tests\InvalidOperatorExtension::getOperators()" must return an array with operators, got "stdClass".'],
|
|
[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()
|
|
{
|
|
return [];
|
|
}
|
|
|
|
public function getNodeVisitors()
|
|
{
|
|
return [];
|
|
}
|
|
|
|
public function getFilters()
|
|
{
|
|
return [];
|
|
}
|
|
|
|
public function getTests()
|
|
{
|
|
return [];
|
|
}
|
|
|
|
public function getFunctions()
|
|
{
|
|
return [];
|
|
}
|
|
|
|
public function getOperators()
|
|
{
|
|
return $this->operators;
|
|
}
|
|
}
|