assertEquals($body, $node->getNode('body')); $this->assertEquals($blocks, $node->getNode('blocks')); $this->assertEquals($macros, $node->getNode('macros')); $this->assertEquals($parent, $node->getNode('parent')); $this->assertEquals($source->getName(), $node->getTemplateName()); } public function getTests() { $twig = new Environment($this->createMock(LoaderInterface::class)); $tests = []; $body = new TextNode('foo', 1); $extends = null; $blocks = new Node(); $macros = new Node(); $traits = new Node(); $source = new Source('{{ foo }}', 'foo.twig'); $parentTemplate = $this->getEnvironment()->useYield() ? 'YieldingTemplate' : 'Template'; $displayStmt = $this->getEchoOrYield(); $node = new ModuleNode($body, $extends, $blocks, $macros, $traits, new Node([]), $source); $tests[] = [$node, <<source = \$this->getSourceContext(); \$this->parent = false; \$this->blocks = [ ]; } protected function doDisplay(array \$context, array \$blocks = []) { \$macros = \$this->macros; // line 1 $displayStmt "foo"; } /** * @codeCoverageIgnore */ public function getTemplateName() { return "foo.twig"; } /** * @codeCoverageIgnore */ public function getDebugInfo() { return array ( 38 => 1,); } public function getSourceContext() { return new Source("", "foo.twig", ""); } } EOF , $twig, true]; $import = new ImportNode(new ConstantExpression('foo.twig', 1), new AssignNameExpression('macro', 1), 2); $body = new Node([$import]); $extends = new ConstantExpression('layout.twig', 1); $parentTemplate = $this->getEnvironment()->useYield() ? 'YieldingTemplate' : 'Template'; $node = new ModuleNode($body, $extends, $blocks, $macros, $traits, new Node([]), $source); $tests[] = [$node, <<source = \$this->getSourceContext(); \$this->blocks = [ ]; } protected function doGetParent(array \$context) { // line 1 return "layout.twig"; } protected function doDisplay(array \$context, array \$blocks = []) { \$macros = \$this->macros; // line 2 \$macros["macro"] = \$this->macros["macro"] = \$this->loadTemplate("foo.twig", "foo.twig", 2)->unwrap(); // line 1 \$this->parent = \$this->loadTemplate("layout.twig", "foo.twig", 1); {$this->getDisplayOrYield('$this->parent')}(\$context, array_merge(\$this->blocks, \$blocks)); } /** * @codeCoverageIgnore */ public function getTemplateName() { return "foo.twig"; } /** * @codeCoverageIgnore */ public function isTraitable() { return false; } /** * @codeCoverageIgnore */ public function getDebugInfo() { return array ( 44 => 1, 42 => 2, 35 => 1,); } public function getSourceContext() { return new Source("", "foo.twig", ""); } } EOF , $twig, true]; $set = new SetNode(false, new Node([new AssignNameExpression('foo', 4)]), new Node([new ConstantExpression('foo', 4)]), 4); $body = new Node([$set]); $extends = new ConditionalExpression( new ConstantExpression(true, 2), new ConstantExpression('foo', 2), new ConstantExpression('foo', 2), 2 ); $parentTemplate = $this->getEnvironment()->useYield() ? 'YieldingTemplate' : 'Template'; $twig = new Environment($this->createMock(LoaderInterface::class), ['debug' => true]); $node = new ModuleNode($body, $extends, $blocks, $macros, $traits, new Node([]), $source); $tests[] = [$node, <<source = \$this->getSourceContext(); \$this->blocks = [ ]; } protected function doGetParent(array \$context) { // line 2 return \$this->loadTemplate(((true) ? ("foo") : ("foo")), "foo.twig", 2); } protected function doDisplay(array \$context, array \$blocks = []) { \$macros = \$this->macros; // line 4 \$context["foo"] = "foo"; // line 2 {$this->getDisplayOrYield('$this->getParent($context)')}(\$context, array_merge(\$this->blocks, \$blocks)); } /** * @codeCoverageIgnore */ public function getTemplateName() { return "foo.twig"; } /** * @codeCoverageIgnore */ public function isTraitable() { return false; } /** * @codeCoverageIgnore */ public function getDebugInfo() { return array ( 44 => 2, 42 => 4, 35 => 2,); } public function getSourceContext() { return new Source("{{ foo }}", "foo.twig", ""); } } EOF , $twig, true]; return $tests; } }