View source
<?php
class Twig_Tests_Node_IfTest extends Twig_Test_NodeTestCase {
public function testConstructor() {
$t = new Twig_Node(array(
new Twig_Node_Expression_Constant(true, 1),
new Twig_Node_Print(new Twig_Node_Expression_Name('foo', 1), 1),
), array(), 1);
$else = null;
$node = new Twig_Node_If($t, $else, 1);
$this
->assertEquals($t, $node
->getNode('tests'));
$this
->assertNull($node
->getNode('else'));
$else = new Twig_Node_Print(new Twig_Node_Expression_Name('bar', 1), 1);
$node = new Twig_Node_If($t, $else, 1);
$this
->assertEquals($else, $node
->getNode('else'));
}
public function getTests() {
$tests = array();
$t = new Twig_Node(array(
new Twig_Node_Expression_Constant(true, 1),
new Twig_Node_Print(new Twig_Node_Expression_Name('foo', 1), 1),
), array(), 1);
$else = null;
$node = new Twig_Node_If($t, $else, 1);
$tests[] = array(
$node,
<<<EOF
// line 1
if (true) {
echo {<span class="php-variable">$this</span>
-><span class="php-function-or-constant function member-of-self">getVariableGetter</span>(<span class="php-string">'foo'</span>)};
}
EOF
,
);
$t = new Twig_Node(array(
new Twig_Node_Expression_Constant(true, 1),
new Twig_Node_Print(new Twig_Node_Expression_Name('foo', 1), 1),
new Twig_Node_Expression_Constant(false, 1),
new Twig_Node_Print(new Twig_Node_Expression_Name('bar', 1), 1),
), array(), 1);
$else = null;
$node = new Twig_Node_If($t, $else, 1);
$tests[] = array(
$node,
<<<EOF
// line 1
if (true) {
echo {<span class="php-variable">$this</span>
-><span class="php-function-or-constant function member-of-self">getVariableGetter</span>(<span class="php-string">'foo'</span>)};
} elseif (false) {
echo {<span class="php-variable">$this</span>
-><span class="php-function-or-constant function member-of-self">getVariableGetter</span>(<span class="php-string">'bar'</span>)};
}
EOF
,
);
$t = new Twig_Node(array(
new Twig_Node_Expression_Constant(true, 1),
new Twig_Node_Print(new Twig_Node_Expression_Name('foo', 1), 1),
), array(), 1);
$else = new Twig_Node_Print(new Twig_Node_Expression_Name('bar', 1), 1);
$node = new Twig_Node_If($t, $else, 1);
$tests[] = array(
$node,
<<<EOF
// line 1
if (true) {
echo {<span class="php-variable">$this</span>
-><span class="php-function-or-constant function member-of-self">getVariableGetter</span>(<span class="php-string">'foo'</span>)};
} else {
echo {<span class="php-variable">$this</span>
-><span class="php-function-or-constant function member-of-self">getVariableGetter</span>(<span class="php-string">'bar'</span>)};
}
EOF
,
);
return $tests;
}
}