4 * This file is part of Twig.
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
12 class Twig_Tests_Node_SandboxTest
extends Twig_Test_NodeTestCase
15 * @covers Twig_Node_Sandbox::__construct
17 public function testConstructor()
19 $body = new Twig_Node_Text('foo', 1);
20 $node = new Twig_Node_Sandbox($body, 1);
22 $this->assertEquals($body, $node->getNode('body'));
26 * @covers Twig_Node_Sandbox::compile
27 * @dataProvider getTests
29 public function testCompile($node, $source, $environment = null)
31 parent
::testCompile($node, $source, $environment);
34 public function getTests()
38 $body = new Twig_Node_Text('foo', 1);
39 $node = new Twig_Node_Sandbox($body, 1);
41 $tests[] = array($node, <<<EOF
43 \$sandbox = \$this->env->getExtension('sandbox');
44 if (!\$alreadySandboxed = \$sandbox->isSandboxed()) {
45 \$sandbox->enableSandbox();
48 if (!\$alreadySandboxed) {
49 \$sandbox->disableSandbox();