]>
Commit | Line | Data |
---|---|---|
4f5b44bd NL |
1 | <?php |
2 | ||
3 | /* | |
4 | * This file is part of Twig. | |
5 | * | |
6 | * (c) Fabien Potencier | |
7 | * | |
8 | * For the full copyright and license information, please view the LICENSE | |
9 | * file that was distributed with this source code. | |
10 | */ | |
11 | ||
12 | class Twig_Tests_Node_SandboxedPrintTest extends Twig_Test_NodeTestCase | |
13 | { | |
14 | /** | |
15 | * @covers Twig_Node_SandboxedPrint::__construct | |
16 | */ | |
17 | public function testConstructor() | |
18 | { | |
19 | $node = new Twig_Node_SandboxedPrint($expr = new Twig_Node_Expression_Constant('foo', 1), 1); | |
20 | ||
21 | $this->assertEquals($expr, $node->getNode('expr')); | |
22 | } | |
23 | ||
24 | /** | |
25 | * @covers Twig_Node_SandboxedPrint::compile | |
26 | * @dataProvider getTests | |
27 | */ | |
28 | public function testCompile($node, $source, $environment = null) | |
29 | { | |
30 | parent::testCompile($node, $source, $environment); | |
31 | } | |
32 | ||
33 | public function getTests() | |
34 | { | |
35 | $tests = array(); | |
36 | ||
37 | $tests[] = array(new Twig_Node_SandboxedPrint(new Twig_Node_Expression_Constant('foo', 1), 1), <<<EOF | |
38 | // line 1 | |
39 | echo \$this->env->getExtension('sandbox')->ensureToStringAllowed("foo"); | |
40 | EOF | |
41 | ); | |
42 | ||
43 | return $tests; | |
44 | } | |
45 | } |