function PermissionCheckerTest::testHasPermission
Same name in other branches
- 11.x core/tests/Drupal/Tests/Core/Session/PermissionCheckerTest.php \Drupal\Tests\Core\Session\PermissionCheckerTest::testHasPermission()
Tests the hasPermission method under normal circumstances.
File
-
core/
tests/ Drupal/ Tests/ Core/ Session/ PermissionCheckerTest.php, line 55
Class
- PermissionCheckerTest
- @coversDefaultClass \Drupal\Core\Session\PermissionChecker @group Session
Namespace
Drupal\Tests\Core\SessionCode
public function testHasPermission() : void {
$calculated_permissions = new CalculatedPermissions((new RefinableCalculatedPermissions())->addItem(new CalculatedPermissionsItem([
'foo',
])));
$this->processor
->processAccessPolicies($this->account)
->willReturn($calculated_permissions);
$this->assertTrue($this->checker
->hasPermission('foo', $this->account));
$this->assertFalse($this->checker
->hasPermission('bar', $this->account));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.