68 lines
1.6 KiB
PHP
68 lines
1.6 KiB
PHP
<?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.
|
|
*/
|
|
|
|
require_once TWIG_LIB_DIR.'/../test/Twig/Tests/Node/TestCase.php';
|
|
|
|
class Twig_Tests_Node_DebugTest extends Twig_Tests_Node_TestCase
|
|
{
|
|
/**
|
|
* @covers Twig_Node_Debug::__construct
|
|
*/
|
|
public function testConstructor()
|
|
{
|
|
$expr = new Twig_Node_Expression_Name('foo', 0);
|
|
$node = new Twig_Extensions_Node_Debug($expr, 0);
|
|
$this->assertEquals($expr, $node->getNode('expr'));
|
|
|
|
$node = new Twig_Extensions_Node_Debug(null, 0);
|
|
$this->assertEquals(null, $node->getNode('expr'));
|
|
}
|
|
|
|
/**
|
|
* @covers Twig_Node_Debug::compile
|
|
* @dataProvider getTests
|
|
*/
|
|
public function testCompile($node, $source, $environment = null)
|
|
{
|
|
parent::testCompile($node, $source, $environment);
|
|
}
|
|
|
|
public function getTests()
|
|
{
|
|
$tests = array();
|
|
|
|
$tests[] = array(new Twig_Extensions_Node_Debug(null, 0), <<<EOF
|
|
if (\$this->env->isDebug()) {
|
|
\$vars = array();
|
|
foreach (\$context as \$key => \$value) {
|
|
if (!\$value instanceof Twig_Template) {
|
|
\$vars[\$key] = \$value;
|
|
}
|
|
}
|
|
var_dump(\$vars);
|
|
}
|
|
EOF
|
|
);
|
|
|
|
$expr = new Twig_Node_Expression_Name('foo', 0);
|
|
$node = new Twig_Extensions_Node_Debug($expr, 0);
|
|
|
|
$tests[] = array($node, sprintf(<<<EOF
|
|
if (\$this->env->isDebug()) {
|
|
var_dump(%s);
|
|
}
|
|
EOF
|
|
, $this->getVariableGetter('foo')));
|
|
|
|
return $tests;
|
|
}
|
|
}
|