protected function UrlAlterFunctionalTest::assertUrlInboundAlter in Drupal 10
Same name and namespace in other branches
- 8 core/modules/path_alias/tests/src/Functional/UrlAlterFunctionalTest.php \Drupal\Tests\path_alias\Functional\UrlAlterFunctionalTest::assertUrlInboundAlter()
- 9 core/modules/path_alias/tests/src/Functional/UrlAlterFunctionalTest.php \Drupal\Tests\path_alias\Functional\UrlAlterFunctionalTest::assertUrlInboundAlter()
Assert that an inbound path is altered to an expected value.
@internal
Parameters
string $original: The original path before it has been altered by inbound URL processing.
string $final: A string with the expected result.
File
- core/
modules/ path_alias/ tests/ src/ Functional/ UrlAlterFunctionalTest.php, line 119
Class
- UrlAlterFunctionalTest
- Tests altering the inbound path and the outbound path.
Namespace
Drupal\Tests\path_alias\FunctionalCode
protected function assertUrlInboundAlter(string $original, string $final) : void {
// Test inbound altering.
$result = $this->container
->get('path_alias.manager')
->getPathByAlias($original);
$this
->assertSame($final, $result, new FormattableMarkup('Altered inbound URL %original, expected %final, and got %result.', [
'%original' => $original,
'%final' => $final,
'%result' => $result,
]));
}