function TwigSandboxTest::testEntityDangerousMethods

Same name in other branches
  1. 8.9.x core/tests/Drupal/Tests/Core/Template/TwigSandboxTest.php \Drupal\Tests\Core\Template\TwigSandboxTest::testEntityDangerousMethods()
  2. 10 core/tests/Drupal/Tests/Core/Template/TwigSandboxTest.php \Drupal\Tests\Core\Template\TwigSandboxTest::testEntityDangerousMethods()
  3. 11.x 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

File

core/tests/Drupal/Tests/Core/Template/TwigSandboxTest.php, line 52

Class

TwigSandboxTest
Tests the twig sandbox policy.

Namespace

Drupal\Tests\Core\Template

Code

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

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.