mirror of
https://github.com/twigphp/Twig.git
synced 2026-08-17 14:32:57 +00:00
58 lines
1.4 KiB
PHP
58 lines
1.4 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\Util;
|
|
|
|
/*
|
|
* 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\DeprecatedCallableInfo;
|
|
use Twig\Environment;
|
|
use Twig\Loader\ArrayLoader;
|
|
use Twig\TwigFunction;
|
|
use Twig\Util\DeprecationCollector;
|
|
|
|
class DeprecationCollectorTest extends TestCase
|
|
{
|
|
public function testCollect()
|
|
{
|
|
$twig = new Environment(new ArrayLoader());
|
|
$twig->addFunction(new TwigFunction('deprec', [$this, 'deprec'], ['deprecation_info' => new DeprecatedCallableInfo('foo/bar', '1.1')]));
|
|
|
|
$collector = new DeprecationCollector($twig);
|
|
$deprecations = $collector->collect(new Iterator());
|
|
|
|
$this->assertEquals(['Since foo/bar 1.1: Twig Function "deprec" is deprecated in deprec.twig at line 1.'], $deprecations);
|
|
}
|
|
|
|
public function deprec()
|
|
{
|
|
}
|
|
}
|
|
|
|
class Iterator implements \IteratorAggregate
|
|
{
|
|
public function getIterator(): \Traversable
|
|
{
|
|
return new \ArrayIterator([
|
|
'ok.twig' => '{{ foo }}',
|
|
'deprec.twig' => '{{ deprec("foo") }}',
|
|
]);
|
|
}
|
|
}
|