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 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491
|
<?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\Attribute\YieldReady;
use Twig\Compiler;
use Twig\Environment;
use Twig\Error\Error;
use Twig\Error\LoaderError;
use Twig\Error\RuntimeError;
use Twig\Error\SyntaxError;
use Twig\Loader\ArrayLoader;
use Twig\Loader\FilesystemLoader;
use Twig\Loader\LoaderInterface;
use Twig\Node\Node;
use Twig\Source;
use Twig\Token;
use Twig\TokenParser\AbstractTokenParser;
class ErrorTest extends TestCase
{
public function testErrorWithObjectFilename()
{
$error = new Error('foo');
$error->setSourceContext(new Source('', new \SplFileInfo(__FILE__)));
$this->assertStringContainsString('tests'.\DIRECTORY_SEPARATOR.'ErrorTest.php', $error->getMessage());
}
public function testTwigExceptionGuessWithMissingVarAndArrayLoader()
{
$loader = new ArrayLoader([
'base.html' => '{% block content %}{% endblock %}',
'index.html' => <<<EOHTML
{% extends 'base.html' %}
{% block content %}
{{ foo.bar }}
{% endblock %}
{% block foo %}
{{ foo.bar }}
{% endblock %}
EOHTML,
]);
$twig = new Environment($loader, ['strict_variables' => true, 'debug' => true, 'cache' => false]);
$template = $twig->load('index.html');
try {
$template->render([]);
$this->fail();
} catch (RuntimeError $e) {
$this->assertEquals('Variable "foo" does not exist in "index.html" at line 3.', $e->getMessage());
$this->assertEquals(3, $e->getTemplateLine());
$this->assertEquals('index.html', $e->getSourceContext()->getName());
}
}
public function testTwigExceptionGuessWithExceptionAndArrayLoader()
{
$loader = new ArrayLoader([
'base.html' => '{% block content %}{% endblock %}',
'index.html' => <<<EOHTML
{% extends 'base.html' %}
{% block content %}
{{ foo.bar }}
{% endblock %}
{% block foo %}
{{ foo.bar }}
{% endblock %}
EOHTML,
]);
$twig = new Environment($loader, ['strict_variables' => true, 'debug' => true, 'cache' => false]);
$template = $twig->load('index.html');
try {
$template->render(['foo' => new ErrorTest_Foo()]);
$this->fail();
} catch (RuntimeError $e) {
$this->assertEquals('An exception has been thrown during the rendering of a template ("Runtime error...") in "index.html" at line 3.', $e->getMessage());
$this->assertEquals(3, $e->getTemplateLine());
$this->assertEquals('index.html', $e->getSourceContext()->getName());
}
}
public function testTwigExceptionGuessWithMissingVarAndFilesystemLoader()
{
$loader = new FilesystemLoader(__DIR__.'/Fixtures/errors');
$twig = new Environment($loader, ['strict_variables' => true, 'debug' => true, 'cache' => false]);
$template = $twig->load('index.html');
try {
$template->render([]);
$this->fail();
} catch (RuntimeError $e) {
$this->assertEquals('Variable "foo" does not exist in "index.html" at line 3.', $e->getMessage());
$this->assertEquals(3, $e->getTemplateLine());
$this->assertEquals('index.html', $e->getSourceContext()->getName());
$this->assertEquals(3, $e->getLine());
$this->assertEquals(strtr(__DIR__.'/Fixtures/errors/index.html', '/', \DIRECTORY_SEPARATOR), $e->getFile());
}
}
public function testTwigExceptionGuessWithExceptionAndFilesystemLoader()
{
$loader = new FilesystemLoader(__DIR__.'/Fixtures/errors');
$twig = new Environment($loader, ['strict_variables' => true, 'debug' => true, 'cache' => false]);
$template = $twig->load('index.html');
try {
$template->render(['foo' => new ErrorTest_Foo()]);
$this->fail();
} catch (RuntimeError $e) {
$this->assertEquals('An exception has been thrown during the rendering of a template ("Runtime error...") in "index.html" at line 3.', $e->getMessage());
$this->assertEquals(3, $e->getTemplateLine());
$this->assertEquals('index.html', $e->getSourceContext()->getName());
$this->assertEquals(3, $e->getLine());
$this->assertEquals(strtr(__DIR__.'/Fixtures/errors/index.html', '/', \DIRECTORY_SEPARATOR), $e->getFile());
}
}
#[DataProvider('getErroredTemplates')]
public function testTwigExceptionAddsFileAndLine($templates, $name, $line)
{
$loader = new ArrayLoader($templates);
$twig = new Environment($loader, ['strict_variables' => true, 'debug' => true, 'cache' => false]);
$template = $twig->load('index');
try {
$template->render([]);
$this->fail();
} catch (RuntimeError $e) {
$this->assertEquals(\sprintf('Variable "foo" does not exist in "%s" at line %d.', $name, $line), $e->getMessage());
$this->assertEquals($line, $e->getTemplateLine());
$this->assertEquals($name, $e->getSourceContext()->getName());
}
try {
$template->render(['foo' => new ErrorTest_Foo()]);
$this->fail();
} catch (RuntimeError $e) {
$this->assertEquals(\sprintf('An exception has been thrown during the rendering of a template ("Runtime error...") in "%s" at line %d.', $name, $line), $e->getMessage());
$this->assertEquals($line, $e->getTemplateLine());
$this->assertEquals($name, $e->getSourceContext()->getName());
}
}
public function testTwigArrayFilterThrowsRuntimeExceptions()
{
$loader = new ArrayLoader([
'filter-null.html' => <<<EOHTML
{# Argument 1 passed to IteratorIterator::__construct() must implement interface Traversable, null given: #}
{% for n in variable|filter(x => x > 3) %}
This list contains {{n}}.
{% endfor %}
EOHTML,
]);
$twig = new Environment($loader, ['debug' => true, 'cache' => false]);
$template = $twig->load('filter-null.html');
$out = $template->render(['variable' => [1, 2, 3, 4]]);
$this->assertEquals('This list contains 4.', trim($out));
try {
$template->render(['variable' => null]);
$this->fail();
} catch (RuntimeError $e) {
$this->assertEquals(2, $e->getTemplateLine());
$this->assertEquals('filter-null.html', $e->getSourceContext()->getName());
}
}
public function testTwigArrayMapThrowsRuntimeExceptions()
{
$loader = new ArrayLoader([
'map-null.html' => <<<EOHTML
{# We expect a runtime error if `variable` is not traversable #}
{% for n in variable|map(x => x * 3) %}
{{- n -}}
{% endfor %}
EOHTML,
]);
$twig = new Environment($loader, ['debug' => true, 'cache' => false]);
$template = $twig->load('map-null.html');
$out = $template->render(['variable' => [1, 2, 3, 4]]);
$this->assertEquals('36912', trim($out));
try {
$template->render(['variable' => null]);
$this->fail();
} catch (RuntimeError $e) {
$this->assertEquals(2, $e->getTemplateLine());
$this->assertEquals('map-null.html', $e->getSourceContext()->getName());
}
}
public function testTwigArrayReduceThrowsRuntimeExceptions()
{
$loader = new ArrayLoader([
'reduce-null.html' => <<<EOHTML
{# We expect a runtime error if `variable` is not traversable #}
{{ variable|reduce((carry, x) => carry + x) }}
EOHTML,
]);
$twig = new Environment($loader, ['debug' => true, 'cache' => false]);
$template = $twig->load('reduce-null.html');
$out = $template->render(['variable' => [1, 2, 3, 4]]);
$this->assertEquals('10', trim($out));
try {
$template->render(['variable' => null]);
$this->fail();
} catch (RuntimeError $e) {
$this->assertEquals(2, $e->getTemplateLine());
$this->assertEquals('reduce-null.html', $e->getSourceContext()->getName());
}
}
public function testTwigExceptionUpdateFileAndLineTogether()
{
$twig = new Environment(new ArrayLoader([
'index' => "\n\n\n\n{{ foo() }}",
]), ['debug' => true, 'cache' => false]);
try {
$twig->load('index')->render([]);
} catch (SyntaxError $e) {
$this->assertSame('Unknown "foo" function in "index" at line 5.', $e->getMessage());
$this->assertSame(5, $e->getTemplateLine());
// as we are using an ArrayLoader, we don't have a file, so the line should not be the template line,
// but the line of the error in the Parser.php file
$this->assertStringContainsString('Parser.php', $e->getFile());
$this->assertNotSame(5, $e->getLine());
}
}
/**
* @dataProvider getErrorWithoutLineAndContextData
*/
public function testErrorWithoutLineAndContext(LoaderInterface $loader, bool $debug, bool $addDebugInfo, bool $exceptionWithLineAndContext, int $errorLine)
{
$twig = new Environment($loader, ['debug' => $debug, 'cache' => false]);
$twig->removeCache('no_line_and_context_exception.twig');
$twig->removeCache('no_line_and_context_exception_include_line_5.twig');
$twig->removeCache('no_line_and_context_exception_include_line_1.twig');
$twig->addTokenParser(new class($addDebugInfo, $exceptionWithLineAndContext) extends AbstractTokenParser {
public function __construct(private bool $addDebugInfo, private bool $exceptionWithLineAndContext)
{
}
public function parse(Token $token)
{
$stream = $this->parser->getStream();
$lineno = $stream->getCurrent()->getLine();
$stream->expect(Token::BLOCK_END_TYPE);
return new #[YieldReady]class($lineno, $this->addDebugInfo, $this->exceptionWithLineAndContext) extends Node
{
public function __construct(int $lineno, private bool $addDebugInfo, private bool $exceptionWithLineAndContext)
{
parent::__construct([], [], $lineno);
}
public function compile(Compiler $compiler): void
{
if ($this->addDebugInfo) {
$compiler->addDebugInfo($this);
}
if ($this->exceptionWithLineAndContext) {
$compiler
->write('throw new \Twig\Error\RuntimeError("Runtime error.", ')
->repr($this->lineno)->raw(", \$this->getSourceContext()")
->raw(");\n")
;
} else {
$compiler->write('throw new \Twig\Error\RuntimeError("Runtime error.");');
}
}
};
}
public function getTag()
{
return 'foo';
}
});
try {
$twig->render('no_line_and_context_exception.twig', ['line' => $errorLine]);
$this->fail();
} catch (RuntimeError $e) {
if (1 === $errorLine && !$addDebugInfo && !$exceptionWithLineAndContext) {
// When the template only has the custom node that throws the error, we cannot find the line of the error
// as we have no debug info and no line and context in the exception
$this->assertSame(\sprintf('Runtime error in "no_line_and_context_exception_include_line_%d.twig".', $errorLine), $e->getMessage());
$this->assertSame(0, $e->getTemplateLine());
} else {
// When the template has some space before the custom node, the associated TextNode outputs some debug info at line 1
// that's why the line is 1 when we have no debug info and no line and context in the exception
$line = $addDebugInfo || $exceptionWithLineAndContext ? $errorLine : 1;
$this->assertSame(\sprintf('Runtime error in "no_line_and_context_exception_include_line_%d.twig" at line %d.', $errorLine, $line), $e->getMessage());
$this->assertSame($line, $e->getTemplateLine());
}
$line = $addDebugInfo || $exceptionWithLineAndContext ? $errorLine : 1;
if ($loader instanceof FilesystemLoader) {
$this->assertStringContainsString(\sprintf('errors/no_line_and_context_exception_include_line_%d.twig', $errorLine), $e->getFile());
$line = $addDebugInfo || $exceptionWithLineAndContext ? $errorLine : (1 === $errorLine ? -1 : 1);
$this->assertSame($line, $e->getLine());
} else {
$this->assertStringContainsString('Environment.php', $e->getFile());
$this->assertNotSame($line, $e->getLine());
}
}
}
public static function getErrorWithoutLineAndContextData(): iterable
{
$fileLoaders = [
new ArrayLoader([
'no_line_and_context_exception.twig' => "\n\n{{ include('no_line_and_context_exception_include_line_' ~ line ~ '.twig') }}",
'no_line_and_context_exception_include_line_5.twig' => "\n\n\n\n{% foo %}",
'no_line_and_context_exception_include_line_1.twig' => '{% foo %}',
]),
new FilesystemLoader(__DIR__.'/Fixtures/errors'),
];
foreach ($fileLoaders as $loader) {
foreach ([false, true] as $exceptionWithLineAndContext) {
foreach ([false, true] as $addDebugInfo) {
foreach ([false, true] as $debug) {
foreach ([5, 1] as $line) {
$name = ($loader instanceof FilesystemLoader ? 'filesystem' : 'array')
.($debug ? '_with_debug' : '_without_debug')
.($addDebugInfo ? '_with_debug_info' : '_without_debug_info')
.($exceptionWithLineAndContext ? '_with_context' : '_without_context')
.('_line_'.$line)
;
yield $name => [$loader, $debug, $addDebugInfo, $exceptionWithLineAndContext, $line];
}
}
}
}
}
}
public static function getErroredTemplates()
{
return [
// error occurs in a template
[
[
'index' => "\n\n{{ foo.bar }}\n\n\n{{ 'foo' }}",
],
'index', 3,
],
// error occurs in an included template
[
[
'index' => "{% include 'partial' %}",
'partial' => '{{ foo.bar }}',
],
'partial', 1,
],
// error occurs in a parent block when called via parent()
[
[
'index' => "{% extends 'base' %}
{% block content %}
{{ parent() }}
{% endblock %}",
'base' => '{% block content %}{{ foo.bar }}{% endblock %}',
],
'base', 1,
],
// error occurs in a block from the child
[
[
'index' => "{% extends 'base' %}
{% block content %}
{{ foo.bar }}
{% endblock %}
{% block foo %}
{{ foo.bar }}
{% endblock %}",
'base' => '{% block content %}{% endblock %}',
],
'index', 3,
],
// error occurs in an embed tag
[
[
'index' => "
{% embed 'base' %}
{% endembed %}",
'base' => '{% block foo %}{{ foo.bar }}{% endblock %}',
],
'base', 1,
],
// error occurs in an overridden block from an embed tag
[
[
'index' => "
{% embed 'base' %}
{% block foo %}
{{ foo.bar }}
{% endblock %}
{% endembed %}",
'base' => '{% block foo %}{% endblock %}',
],
'index', 4,
],
];
}
public function testErrorFromArrayLoader()
{
$templates = [
'index.twig' => '{% include "include.twig" %}',
'include.twig' => $include = <<<EOF
{% extends 'invalid.twig' %}
EOF,
];
$twig = new Environment(new ArrayLoader($templates), ['debug' => true, 'cache' => false]);
try {
$twig->render('index.twig');
$this->fail('Expected LoaderError to be thrown');
} catch (LoaderError $e) {
$this->assertSame('Template "invalid.twig" is not defined.', $e->getRawMessage());
$this->assertSame(4, $e->getTemplateLine());
$this->assertSame('include.twig', $e->getSourceContext()->getName());
$this->assertSame($include, $e->getSourceContext()->getCode());
}
}
public function testErrorFromFilesystemLoader()
{
$twig = new Environment(new FilesystemLoader([$dir = __DIR__.'/Fixtures/errors/extends']), ['debug' => true, 'cache' => false]);
$include = file_get_contents($dir.'/include.twig');
try {
$twig->render('index.twig');
$this->fail('Expected LoaderError to be thrown');
} catch (LoaderError $e) {
$this->assertStringContainsString('Unable to find template "invalid.twig"', $e->getRawMessage());
$this->assertSame(4, $e->getTemplateLine());
$this->assertSame('include.twig', $e->getSourceContext()->getName());
$this->assertSame($include, $e->getSourceContext()->getCode());
}
}
}
class ErrorTest_Foo
{
public function bar()
{
throw new \Exception('Runtime error...');
}
}
|