function CommandLineOrUnsafeMethodTest::testIsCli

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/PageCache/CommandLineOrUnsafeMethodTest.php \Drupal\Tests\Core\PageCache\CommandLineOrUnsafeMethodTest::testIsCli()
  2. 8.9.x core/tests/Drupal/Tests/Core/PageCache/CommandLineOrUnsafeMethodTest.php \Drupal\Tests\Core\PageCache\CommandLineOrUnsafeMethodTest::testIsCli()
  3. 11.x core/tests/Drupal/Tests/Core/PageCache/CommandLineOrUnsafeMethodTest.php \Drupal\Tests\Core\PageCache\CommandLineOrUnsafeMethodTest::testIsCli()

Asserts that check() returns DENY if running from the command line.

@covers ::check

File

core/tests/Drupal/Tests/Core/PageCache/CommandLineOrUnsafeMethodTest.php, line 77

Class

CommandLineOrUnsafeMethodTest
@coversDefaultClass \Drupal\Core\PageCache\RequestPolicy\CommandLineOrUnsafeMethod[[api-linebreak]] @group PageCache

Namespace

Drupal\Tests\Core\PageCache

Code

public function testIsCli() : void {
  $this->policy
    ->expects($this->once())
    ->method('isCli')
    ->willReturn(TRUE);
  $request = Request::create('/', 'GET');
  $actual_result = $this->policy
    ->check($request);
  $this->assertSame(RequestPolicyInterface::DENY, $actual_result);
}

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