1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442
|
<?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 Twig\DeprecatedCallableInfo;
use Twig\Error\SyntaxError;
use Twig\Extension\AbstractExtension;
use Twig\Extension\DebugExtension;
use Twig\Extension\SandboxExtension;
use Twig\Extension\StringLoaderExtension;
use Twig\Node\Expression\ConstantExpression;
use Twig\Node\Node;
use Twig\Node\PrintNode;
use Twig\Runtime\EscaperRuntime;
use Twig\Sandbox\SecurityPolicy;
use Twig\Test\IntegrationTestCase;
use Twig\Token;
use Twig\TokenParser\AbstractTokenParser;
use Twig\TwigFilter;
use Twig\TwigFunction;
use Twig\TwigTest;
// This function is defined to check that escaping strategies
// like html works even if a function with the same name is defined.
function html()
{
return 'foo';
}
class IntegrationTest extends IntegrationTestCase
{
public function getExtensions()
{
$policy = new SecurityPolicy([], [], [], [], ['dump']);
return [
new DebugExtension(),
new SandboxExtension($policy, false),
new StringLoaderExtension(),
new TwigTestExtension(),
];
}
protected function getUndefinedFunctionCallbacks(): array
{
return [
static function (string $name) {
if ('throwing_undefined_function' === $name) {
throw new SyntaxError('This function is undefined in the tests.');
}
return false;
},
];
}
protected function getUndefinedTokenParserCallbacks(): array
{
return [
static function (string $name) {
if ('throwing_undefined_filter' === $name) {
throw new SyntaxError('This filter is undefined in the tests.');
}
return false;
},
];
}
protected static function getFixturesDirectory(): string
{
return __DIR__.'/Fixtures/';
}
}
function test_foo($value = 'foo')
{
return $value;
}
class TwigTestFoo implements \Iterator
{
public const BAR_NAME = 'bar';
public $position = 0;
public $array = [1, 2];
public static $foo = 'Foo';
public function bar($param1 = null, $param2 = null)
{
return 'bar'.($param1 ? '_'.$param1 : '').($param2 ? '-'.$param2 : '');
}
public function getFoo()
{
return 'foo';
}
public function getEmpty()
{
return '';
}
public function getNull()
{
return null;
}
public function getSelf()
{
return $this;
}
public function is()
{
return 'is';
}
public function in()
{
return 'in';
}
public function not()
{
return 'not';
}
public function strToLower($value)
{
return strtolower($value);
}
public function rewind(): void
{
$this->position = 0;
}
#[\ReturnTypeWillChange]
public function current()
{
return $this->array[$this->position];
}
#[\ReturnTypeWillChange]
public function key()
{
return 'a';
}
public function next(): void
{
++$this->position;
}
public function valid(): bool
{
return isset($this->array[$this->position]);
}
}
class TwigTestTokenParser_§ extends AbstractTokenParser
{
public function parse(Token $token): Node
{
$this->parser->getStream()->expect(Token::BLOCK_END_TYPE);
return new PrintNode(new ConstantExpression('§', -1), -1);
}
public function getTag(): string
{
return '§';
}
}
class TwigTestExtension extends AbstractExtension
{
public function getTokenParsers(): array
{
return [
new TwigTestTokenParser_§(),
];
}
public function getFilters(): array
{
return [
new TwigFilter('§', [$this, '§Filter']),
new TwigFilter('escape_and_nl2br', [$this, 'escape_and_nl2br'], ['needs_environment' => true, 'is_safe' => ['html']]),
new TwigFilter('nl2br', [$this, 'nl2br'], ['pre_escape' => 'html', 'is_safe' => ['html']]),
new TwigFilter('escape_something', [$this, 'escape_something'], ['is_safe' => ['something']]),
new TwigFilter('preserves_safety', [$this, 'preserves_safety'], ['preserves_safety' => ['html']]),
new TwigFilter('static_call_string', 'Twig\Tests\TwigTestExtension::staticCall'),
new TwigFilter('static_call_array', ['Twig\Tests\TwigTestExtension', 'staticCall']),
new TwigFilter('magic_call', [$this, 'magicCall']),
new TwigFilter('magic_call_closure', \Closure::fromCallable([$this, 'magicCall'])),
new TwigFilter('magic_call_string', 'Twig\Tests\TwigTestExtension::magicStaticCall'),
new TwigFilter('magic_call_array', ['Twig\Tests\TwigTestExtension', 'magicStaticCall']),
new TwigFilter('*_path', [$this, 'dynamic_path']),
new TwigFilter('*_foo_*_bar', [$this, 'dynamic_foo']),
new TwigFilter('not', [$this, 'notFilter']),
new TwigFilter('anon_foo', function ($name) { return '*'.$name.'*'; }),
];
}
public function getFunctions(): array
{
return [
new TwigFunction('§', [$this, '§Function']),
new TwigFunction('safe_br', [$this, 'br'], ['is_safe' => ['html']]),
new TwigFunction('unsafe_br', [$this, 'br']),
new TwigFunction('static_call_string', 'Twig\Tests\TwigTestExtension::staticCall'),
new TwigFunction('static_call_array', ['Twig\Tests\TwigTestExtension', 'staticCall']),
new TwigFunction('*_path', [$this, 'dynamic_path']),
new TwigFunction('*_foo_*_bar', [$this, 'dynamic_foo']),
new TwigFunction('anon_foo', function ($name) { return '*'.$name.'*'; }),
new TwigFunction('deprecated_function', function () { return 'foo'; }, ['deprecation_info' => new DeprecatedCallableInfo('foo/bar', '1.1', 'not_deprecated_function')]),
];
}
public function getTests(): array
{
return [
new TwigTest('multi word', [$this, 'is_multi_word']),
new TwigTest('test_*', [$this, 'dynamic_test']),
];
}
public function notFilter($value)
{
return 'not '.$value;
}
public function §Filter($value)
{
return "§{$value}§";
}
public function §Function($value)
{
return "§{$value}§";
}
/**
* nl2br which also escapes, for testing escaper filters.
*/
public function escape_and_nl2br($env, $value, $sep = '<br />')
{
return $this->nl2br($env->getRuntime(EscaperRuntime::class)->escape($value, 'html'), $sep);
}
/**
* nl2br only, for testing filters with pre_escape.
*/
public function nl2br($value, $sep = '<br />')
{
// not secure if $value contains html tags (not only entities)
// don't use
return str_replace("\n", "$sep\n", $value ?? '');
}
public function dynamic_path($element, $item)
{
return $element.'/'.$item;
}
public function dynamic_foo($foo, $bar, $item)
{
return $foo.'/'.$bar.'/'.$item;
}
public function dynamic_test($element, $item)
{
return $element === $item;
}
public function escape_something($value)
{
return strtoupper($value);
}
public function preserves_safety($value)
{
return strtoupper($value);
}
public static function staticCall($value)
{
return "*$value*";
}
public function br()
{
return '<br />';
}
public function is_multi_word($value)
{
return false !== strpos($value, ' ');
}
public function __call($method, $arguments)
{
if ('magicCall' !== $method) {
throw new \BadMethodCallException('Unexpected call to __call.');
}
return 'magic_'.$arguments[0];
}
public static function __callStatic($method, $arguments)
{
if ('magicStaticCall' !== $method) {
throw new \BadMethodCallException('Unexpected call to __callStatic.');
}
return 'static_magic_'.$arguments[0];
}
}
/**
* This class is used in tests for the "length" filter and "empty" test. It asserts that __call is not
* used to convert such objects to strings.
*/
class MagicCallStub
{
public function __call($name, $args)
{
throw new \Exception('__call shall not be called.');
}
}
class ToStringStub
{
/**
* @var string
*/
private $string;
public function __construct($string)
{
$this->string = $string;
}
public function __toString()
{
return $this->string;
}
}
/**
* This class is used in tests for the length filter and empty test to show
* that when \Countable is implemented, it is preferred over the __toString()
* method.
*/
class CountableStub implements \Countable
{
private $count;
public function __construct($count)
{
$this->count = $count;
}
public function count(): int
{
return $this->count;
}
public function __toString()
{
throw new \Exception('__toString shall not be called on \Countables.');
}
}
/**
* This class is used in tests for the length filter.
*/
class IteratorAggregateStub implements \IteratorAggregate
{
private $data;
public function __construct(array $data)
{
$this->data = $data;
}
public function getIterator(): \Traversable
{
return new \ArrayIterator($this->data);
}
}
class SimpleIteratorForTesting implements \Iterator
{
private $data = [1, 2, 3, 4, 5, 6, 7];
private $key = 0;
#[\ReturnTypeWillChange]
public function current()
{
return $this->key;
}
public function next(): void
{
++$this->key;
}
#[\ReturnTypeWillChange]
public function key()
{
return $this->key;
}
public function valid(): bool
{
return isset($this->data[$this->key]);
}
public function rewind(): void
{
$this->key = 0;
}
public function __toString()
{
// for testing, make sure string length returned is not the same as the `iterator_count`
return str_repeat('X', iterator_count($this) + 10);
}
}
|