You are here

public function MachineNameControllerTest::testMachineNameControllerWithMissingToken in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/system/tests/src/Unit/Transliteration/MachineNameControllerTest.php \Drupal\Tests\system\Unit\Transliteration\MachineNameControllerTest::testMachineNameControllerWithMissingToken()
  2. 9 core/modules/system/tests/src/Unit/Transliteration/MachineNameControllerTest.php \Drupal\Tests\system\Unit\Transliteration\MachineNameControllerTest::testMachineNameControllerWithMissingToken()

Tests the pattern validation with a missing token.

File

core/modules/system/tests/src/Unit/Transliteration/MachineNameControllerTest.php, line 117

Class

MachineNameControllerTest
Tests that the machine name controller can transliterate strings as expected.

Namespace

Drupal\Tests\system\Unit\Transliteration

Code

public function testMachineNameControllerWithMissingToken() {
  $request = Request::create('', 'GET', [
    'text' => 'Bob',
    'langcode' => 'en',
    'replace' => 'Alice',
    'replace_pattern' => 'Bob',
  ]);
  $this
    ->expectException(AccessDeniedHttpException::class);
  $this
    ->expectExceptionMessage("Missing 'replace_token' query parameter.");
  $this->machineNameController
    ->transliterate($request);
}