function ChainRequestPolicyTest::testAllowIfAnyRuleReturnedAllow
Asserts that check() returns ALLOW if any of the rules returns ALLOW.
@legacy-covers ::check
Attributes
#[DataProvider('providerAllowIfAnyRuleReturnedAllow')]
File
-
core/
tests/ Drupal/ Tests/ Core/ PageCache/ ChainRequestPolicyTest.php, line 115
Class
Namespace
Drupal\Tests\Core\PageCacheCode
public function testAllowIfAnyRuleReturnedAllow($return_values) : void {
foreach ($return_values as $return_value) {
$rule = $this->createMock('Drupal\\Core\\PageCache\\RequestPolicyInterface');
$rule->expects($this->once())
->method('check')
->with($this->request)
->willReturn($return_value);
$this->policy
->addPolicy($rule);
}
$actual_result = $this->policy
->check($this->request);
$this->assertSame(RequestPolicyInterface::ALLOW, $actual_result);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.