You are here

public function TwigSandboxTest::testEntityDangerousMethods in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/tests/Drupal/Tests/Core/Template/TwigSandboxTest.php \Drupal\Tests\Core\Template\TwigSandboxTest::testEntityDangerousMethods()

Tests that dangerous methods cannot be called in entity objects.

@dataProvider getTwigEntityDangerousMethods @expectedException \Twig_Sandbox_SecurityError

File

core/tests/Drupal/Tests/Core/Template/TwigSandboxTest.php, line 49
Contains \Drupal\Tests\Core\Template\TwigSandboxTest.

Class

TwigSandboxTest
Tests the twig sandbox policy.

Namespace

Drupal\Tests\Core\Template

Code

public function testEntityDangerousMethods($template) {
  $entity = $this
    ->getMock('Drupal\\Core\\Entity\\EntityInterface');
  $this->twig
    ->render($template, [
    'entity' => $entity,
  ]);
}