function MachineNameControllerTest::testMachineNameControllerWithMissingToken

Same name and namespace in other branches
  1. 8.9.x core/modules/system/tests/src/Unit/Transliteration/MachineNameControllerTest.php \Drupal\Tests\system\Unit\Transliteration\MachineNameControllerTest::testMachineNameControllerWithMissingToken()
  2. 10 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 120

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);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.