You are here

protected function UrlAlterFunctionalTest::assertUrlOutboundAlter in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/path_alias/tests/src/Functional/UrlAlterFunctionalTest.php \Drupal\Tests\path_alias\Functional\UrlAlterFunctionalTest::assertUrlOutboundAlter()
  2. 10 core/modules/path_alias/tests/src/Functional/UrlAlterFunctionalTest.php \Drupal\Tests\path_alias\Functional\UrlAlterFunctionalTest::assertUrlOutboundAlter()

Assert that an outbound path is altered to an expected value.

Parameters

$original: A string with the original path that is run through generateFrommPath().

$final: A string with the expected result after generateFrommPath().

1 call to UrlAlterFunctionalTest::assertUrlOutboundAlter()
UrlAlterFunctionalTest::testUrlAlter in core/modules/path_alias/tests/src/Functional/UrlAlterFunctionalTest.php
Tests that URL altering works and that it occurs in the correct order.

File

core/modules/path_alias/tests/src/Functional/UrlAlterFunctionalTest.php, line 101

Class

UrlAlterFunctionalTest
Tests altering the inbound path and the outbound path.

Namespace

Drupal\Tests\path_alias\Functional

Code

protected function assertUrlOutboundAlter($original, $final) {

  // Test outbound altering.
  $result = $this->container
    ->get('path_processor_manager')
    ->processOutbound($original);
  $this
    ->assertSame($final, $result, new FormattableMarkup('Altered outbound URL %original, expected %final, and got %result.', [
    '%original' => $original,
    '%final' => $final,
    '%result' => $result,
  ]));
}