-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathBlockTokenParserTest.php
More file actions
70 lines (60 loc) · 2.03 KB
/
BlockTokenParserTest.php
File metadata and controls
70 lines (60 loc) · 2.03 KB
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
<?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\TokenParser;
use PHPUnit\Framework\TestCase;
use Twig\Environment;
use Twig\Loader\ArrayLoader;
use Twig\Parser;
use Twig\Source;
class BlockTokenParserTest extends TestCase
{
/** @dataProvider getBlockTests */
public function testBlockParsing(string $template, string $blockName, ?string $expectedDocs)
{
$env = new Environment(new ArrayLoader(), ['cache' => false, 'autoescape' => false]);
$stream = $env->tokenize(new Source($template, ''));
$parser = new Parser($env);
$blockNode = $parser->parse($stream)->getNode('blocks')->getNode($blockName)->getNode('0');
if (null === $expectedDocs) {
self::assertFalse($blockNode->hasAttribute('docs'));
} else {
self::assertEquals($expectedDocs, $blockNode->getAttribute('docs'));
}
}
public static function getBlockTests(): array
{
return [
// block without docs
[
'template' => '{% block content %}foo{% endblock %}',
'blockName' => 'content',
'expectedDocs' => null,
],
// block with docs
[
'template' => '{% block content docs="The main content block" %}foo{% endblock %}',
'blockName' => 'content',
'expectedDocs' => 'The main content block',
],
// shorthand block without docs
[
'template' => '{% block title "Hello" %}',
'blockName' => 'title',
'expectedDocs' => null,
],
// shorthand block with docs
[
'template' => '{% block title docs="The page title" "Hello" %}',
'blockName' => 'title',
'expectedDocs' => 'The page title',
],
];
}
}