function AllowToolbarPathTest::testAllowToolbarPath

Same name and namespace in other branches
  1. 9 core/modules/toolbar/tests/src/Unit/PageCache/AllowToolbarPathTest.php \Drupal\Tests\toolbar\Unit\PageCache\AllowToolbarPathTest::testAllowToolbarPath()
  2. 8.9.x core/modules/toolbar/tests/src/Unit/PageCache/AllowToolbarPathTest.php \Drupal\Tests\toolbar\Unit\PageCache\AllowToolbarPathTest::testAllowToolbarPath()
  3. 10 core/modules/toolbar/tests/src/Unit/PageCache/AllowToolbarPathTest.php \Drupal\Tests\toolbar\Unit\PageCache\AllowToolbarPathTest::testAllowToolbarPath()

Asserts that caching is allowed if the request goes to toolbar subtree.

@dataProvider providerTestAllowToolbarPath @covers ::check

File

core/modules/toolbar/tests/src/Unit/PageCache/AllowToolbarPathTest.php, line 40

Class

AllowToolbarPathTest
@coversDefaultClass <a href="/api/drupal/core%21modules%21toolbar%21src%21PageCache%21AllowToolbarPath.php/class/AllowToolbarPath/11.x" title="Cache policy for the toolbar page cache service." class="local">\Drupal\toolbar\PageCache\AllowToolbarPath</a> @group toolbar

Namespace

Drupal\Tests\toolbar\Unit\PageCache

Code

public function testAllowToolbarPath($expected_result, $path) : void {
    $request = Request::create($path);
    $result = $this->policy
        ->check($request);
    $this->assertSame($expected_result, $result);
}

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