function PathValidatorTest::testGetUrlIfValidWithFrontPageAndQueryAndFragments
Same name in other branches
- 8.9.x core/tests/Drupal/Tests/Core/Path/PathValidatorTest.php \Drupal\Tests\Core\Path\PathValidatorTest::testGetUrlIfValidWithFrontPageAndQueryAndFragments()
- 10 core/tests/Drupal/Tests/Core/Path/PathValidatorTest.php \Drupal\Tests\Core\Path\PathValidatorTest::testGetUrlIfValidWithFrontPageAndQueryAndFragments()
- 11.x core/tests/Drupal/Tests/Core/Path/PathValidatorTest.php \Drupal\Tests\Core\Path\PathValidatorTest::testGetUrlIfValidWithFrontPageAndQueryAndFragments()
Tests the getUrlIfValid() method with a front page + query + fragments.
@covers ::getUrlIfValid
File
-
core/
tests/ Drupal/ Tests/ Core/ Path/ PathValidatorTest.php, line 411
Class
- PathValidatorTest
- @coversDefaultClass \Drupal\Core\Path\PathValidator @group Routing
Namespace
Drupal\Tests\Core\PathCode
public function testGetUrlIfValidWithFrontPageAndQueryAndFragments() {
$url = $this->pathValidator
->getUrlIfValid('<front>?hei=sen#berg');
$this->assertEquals('<front>', $url->getRouteName());
$this->assertEquals([
'hei' => 'sen',
], $url->getOptions()['query']);
$this->assertEquals('berg', $url->getOptions()['fragment']);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.