You are here

public function MenuUiTest::toggleMenuLink in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/menu_ui/tests/src/Functional/MenuUiTest.php \Drupal\Tests\menu_ui\Functional\MenuUiTest::toggleMenuLink()

Alternately disables and enables a menu link.

Parameters

\Drupal\menu_link_content\Entity\MenuLinkContent $item: Menu link.

1 call to MenuUiTest::toggleMenuLink()
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 855

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

public function toggleMenuLink(MenuLinkContent $item) {
  $this
    ->disableMenuLink($item);

  // Verify menu link is absent.
  $this
    ->drupalGet('');
  $this
    ->assertSession()
    ->pageTextNotContains($item
    ->getTitle());
  $this
    ->enableMenuLink($item);

  // Verify menu link is displayed.
  $this
    ->drupalGet('');
  $this
    ->assertSession()
    ->pageTextContains($item
    ->getTitle());
}