function MachineNameControllerTest::testMachineNameControllerWithInvalidReplacePattern
Same name in other branches
- 9 core/modules/system/tests/src/Unit/Transliteration/MachineNameControllerTest.php \Drupal\Tests\system\Unit\Transliteration\MachineNameControllerTest::testMachineNameControllerWithInvalidReplacePattern()
- 8.9.x core/modules/system/tests/src/Unit/Transliteration/MachineNameControllerTest.php \Drupal\Tests\system\Unit\Transliteration\MachineNameControllerTest::testMachineNameControllerWithInvalidReplacePattern()
Tests the pattern validation.
File
-
core/
modules/ system/ tests/ src/ Unit/ Transliteration/ MachineNameControllerTest.php, line 111
Class
- MachineNameControllerTest
- Tests that the machine name controller can transliterate strings as expected.
Namespace
Drupal\Tests\system\Unit\TransliterationCode
public function testMachineNameControllerWithInvalidReplacePattern() : void {
$request = Request::create('', 'GET', [
'text' => 'Bob',
'langcode' => 'en',
'replace' => 'Alice',
'replace_pattern' => 'Bob',
'replace_token' => 'invalid',
]);
$this->expectException(AccessDeniedHttpException::class);
$this->expectExceptionMessage("Invalid '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.