function UrlBubbleableMetadataBubblingTest::testUrlBubbleableMetadataBubbling

Same name and namespace in other branches
  1. 9 core/modules/system/tests/src/Functional/Render/UrlBubbleableMetadataBubblingTest.php \Drupal\Tests\system\Functional\Render\UrlBubbleableMetadataBubblingTest::testUrlBubbleableMetadataBubbling()
  2. 8.9.x core/modules/system/tests/src/Functional/Render/UrlBubbleableMetadataBubblingTest.php \Drupal\Tests\system\Functional\Render\UrlBubbleableMetadataBubblingTest::testUrlBubbleableMetadataBubbling()
  3. 10 core/modules/system/tests/src/Functional/Render/UrlBubbleableMetadataBubblingTest.php \Drupal\Tests\system\Functional\Render\UrlBubbleableMetadataBubblingTest::testUrlBubbleableMetadataBubbling()

Tests that URL bubbleable metadata is correctly bubbled.

File

core/modules/system/tests/src/Functional/Render/UrlBubbleableMetadataBubblingTest.php, line 42

Class

UrlBubbleableMetadataBubblingTest
Tests that URL bubbleable metadata is correctly bubbled.

Namespace

Drupal\Tests\system\Functional\Render

Code

public function testUrlBubbleableMetadataBubbling() : void {
    // Test that regular URLs bubble up bubbleable metadata when converted to
    // string.
    $url = Url::fromRoute('cache_test.url_bubbling');
    $this->drupalGet($url);
    $this->assertCacheContext('url.site');
    $this->assertSession()
        ->responseContains($url->setAbsolute()
        ->toString());
}

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