function MenuUiTest::doMenuLinkFormDefaultsTest

Ensures that the proper default values are set when adding a menu link

1 call to MenuUiTest::doMenuLinkFormDefaultsTest()
MenuUiTest::doMenuTests in core/modules/menu_ui/tests/src/Functional/MenuUiTest.php
Tests menu functionality.

File

core/modules/menu_ui/tests/src/Functional/MenuUiTest.php, line 498

Class

MenuUiTest
Add a custom menu, add menu links to the custom menu and Tools menu, check their data, and delete them using the UI.

Namespace

Drupal\Tests\menu_ui\Functional

Code

protected function doMenuLinkFormDefaultsTest() {
  $this->drupalGet("admin/structure/menu/manage/tools/add");
  $this->assertSession()
    ->statusCodeEquals(200);
  $this->assertFieldByName('title[0][value]', '');
  $this->assertFieldByName('link[0][uri]', '');
  $this->assertNoFieldChecked('edit-expanded-value');
  $this->assertFieldChecked('edit-enabled-value');
  $this->assertFieldByName('description[0][value]', '');
  $this->assertFieldByName('weight[0][value]', 0);
}

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