You are here

public function MenuLinkContentFormTest::testMenuLinkContentFormValidation in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/menu_link_content/tests/src/Functional/MenuLinkContentFormTest.php \Drupal\Tests\menu_link_content\Functional\MenuLinkContentFormTest::testMenuLinkContentFormValidation()

Tests validation for the MenuLinkContentForm class.

File

core/modules/menu_link_content/tests/src/Functional/MenuLinkContentFormTest.php, line 101

Class

MenuLinkContentFormTest
Tests the menu link content UI.

Namespace

Drupal\Tests\menu_link_content\Functional

Code

public function testMenuLinkContentFormValidation() {
  $this
    ->drupalGet('admin/structure/menu/manage/admin/add');
  $this
    ->submitForm([
    'title[0][value]' => t('Test page'),
    'link[0][uri]' => '<test>',
  ], 'Save');
  $this
    ->assertSession()
    ->pageTextContains('Manually entered paths should start with one of the following characters: / ? #');
}