SandboxedPrintTest.php 1.1KB

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