123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- <?php
-
-
-
- require_once dirname(__FILE__).'/TestCase.php';
-
- class Twig_Tests_Node_ModuleTest extends Twig_Tests_Node_TestCase
- {
-
-
- public function testConstructor()
- {
- $body = new Twig_Node_Text('foo', 0);
- $parent = new Twig_Node_Expression_Constant('layout.twig', 0);
- $blocks = new Twig_Node();
- $macros = new Twig_Node();
- $traits = new Twig_Node();
- $filename = 'foo.twig';
- $node = new Twig_Node_Module($body, $parent, $blocks, $macros, $traits, $filename);
-
- $this->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($filename, $node->getAttribute('filename'));
- }
-
-
-
- public function testCompile($node, $source, $environment = null)
- {
- parent::testCompile($node, $source, $environment);
- }
-
- public function getTests()
- {
- $twig = new Twig_Environment(new Twig_Loader_String());
-
- $tests = array();
-
- $body = new Twig_Node_Text('foo', 0);
- $extends = null;
- $blocks = new Twig_Node();
- $macros = new Twig_Node();
- $traits = new Twig_Node();
- $filename = 'foo.twig';
-
- $node = new Twig_Node_Module($body, $extends, $blocks, $macros, $traits, $filename);
- $tests[] = array($node, <<<EOF
- <?php
-
- /* foo.twig */
- class __TwigTemplate_be925a7b06dda0dfdbd18a1509f7eb34 extends Twig_Template
- {
- protected function doDisplay(array \$context, array \$blocks = array())
- {
- \$context = array_merge(\$this->env->getGlobals(), \$context);
-
- echo "foo";
- }
-
- public function getTemplateName()
- {
- return "foo.twig";
- }
-
- public function isTraitable()
- {
- return false;
- }
- }
- EOF
- , $twig);
-
- $import = new Twig_Node_Import(new Twig_Node_Expression_Constant('foo.twig', 0), new Twig_Node_Expression_AssignName('macro', 0), 0);
-
- $body = new Twig_Node(array($import));
- $extends = new Twig_Node_Expression_Constant('layout.twig', 0);
-
- $node = new Twig_Node_Module($body, $extends, $blocks, $macros, $traits, $filename);
- $tests[] = array($node, <<<EOF
- <?php
-
- /* foo.twig */
- class __TwigTemplate_be925a7b06dda0dfdbd18a1509f7eb34 extends Twig_Template
- {
- protected \$parent;
-
- public function getParent(array \$context)
- {
- \$parent = "layout.twig";
- if (\$parent instanceof Twig_Template) {
- \$name = \$parent->getTemplateName();
- \$this->parent[\$name] = \$parent;
- \$parent = \$name;
- } elseif (!isset(\$this->parent[\$parent])) {
- \$this->parent[\$parent] = \$this->env->loadTemplate(\$parent);
- }
-
- return \$this->parent[\$parent];
- }
-
- protected function doDisplay(array \$context, array \$blocks = array())
- {
- \$context = array_merge(\$this->env->getGlobals(), \$context);
-
- \$context['macro'] = \$this->env->loadTemplate("foo.twig");
- \$this->getParent(\$context)->display(\$context, array_merge(\$this->blocks, \$blocks));
- }
-
- public function getTemplateName()
- {
- return "foo.twig";
- }
-
- public function isTraitable()
- {
- return false;
- }
- }
- EOF
- , $twig);
-
- $body = new Twig_Node();
- $extends = new Twig_Node_Expression_Conditional(
- new Twig_Node_Expression_Constant(true, 0),
- new Twig_Node_Expression_Constant('foo', 0),
- new Twig_Node_Expression_Constant('foo', 0),
- 0
- );
-
- $node = new Twig_Node_Module($body, $extends, $blocks, $macros, $traits, $filename);
- $tests[] = array($node, <<<EOF
- <?php
-
- /* foo.twig */
- class __TwigTemplate_be925a7b06dda0dfdbd18a1509f7eb34 extends Twig_Template
- {
- protected \$parent;
-
- public function getParent(array \$context)
- {
- \$parent = ((true) ? ("foo") : ("foo"));
- if (\$parent instanceof Twig_Template) {
- \$name = \$parent->getTemplateName();
- \$this->parent[\$name] = \$parent;
- \$parent = \$name;
- } elseif (!isset(\$this->parent[\$parent])) {
- \$this->parent[\$parent] = \$this->env->loadTemplate(\$parent);
- }
-
- return \$this->parent[\$parent];
- }
-
- protected function doDisplay(array \$context, array \$blocks = array())
- {
- \$context = array_merge(\$this->env->getGlobals(), \$context);
-
- \$this->getParent(\$context)->display(\$context, array_merge(\$this->blocks, \$blocks));
- }
-
- public function getTemplateName()
- {
- return "foo.twig";
- }
-
- public function isTraitable()
- {
- return false;
- }
- }
- EOF
- , $twig);
-
- return $tests;
- }
- }
|