public function RouterTest::testControllerPlaceholdersDefaultValues in Drupal 9
Same name and namespace in other branches
- 8 core/modules/system/tests/src/Functional/Routing/RouterTest.php \Drupal\Tests\system\Functional\Routing\RouterTest::testControllerPlaceholdersDefaultValues()
Confirms that default placeholders in paths work correctly.
File
- core/
modules/ system/ tests/ src/ Functional/ Routing/ RouterTest.php, line 173
Class
- RouterTest
- Functional class for the full integrated routing system.
Namespace
Drupal\Tests\system\Functional\RoutingCode
public function testControllerPlaceholdersDefaultValues() {
$this
->drupalGet('router_test/test4');
$this
->assertSession()
->statusCodeEquals(200);
$this
->assertSession()
->pageTextContains('narf');
// Confirm that the page wrapping is being added, so we're not getting a
// raw body returned.
$this
->assertSession()
->responseContains('</html>');
// In some instances, the subrequest handling may get confused and render
// a page inception style. This test verifies that is not happening.
$this
->assertSession()
->responseNotMatches('#</body>.*</body>#s');
}