public function SitemapMenuTest::testMenus in Sitemap 8
Same name and namespace in other branches
- 8.2 src/Tests/SitemapMenuTest.php \Drupal\sitemap\Tests\SitemapMenuTest::testMenus()
- 2.0.x src/Tests/SitemapMenuTest.php \Drupal\sitemap\Tests\SitemapMenuTest::testMenus()
Tests menus.
File
- src/
Tests/ SitemapMenuTest.php, line 15
Class
- SitemapMenuTest
- Test the display of menus based on sitemap settings.
Namespace
Drupal\sitemap\TestsCode
public function testMenus() {
// Assert that main menu is not included in the sitemap by default.
$this
->drupalGet('/sitemap');
$elements = $this
->cssSelect(".sitemap-box h2:contains('Main navigation')");
$this
->assertEqual(count($elements), 0, 'Main menu is not included.');
// Configure module to show main menu, with enabled menu items only.
$edit = [
'show_menus[main]' => 'main',
'show_menus_hidden' => FALSE,
];
$this
->drupalPostForm('admin/config/search/sitemap', $edit, t('Save configuration'));
// Create dummy node with enabled menu item.
$node_1_title = $this
->randomString();
$edit = [
'title[0][value]' => $node_1_title,
'menu[enabled]' => TRUE,
'menu[title]' => $node_1_title,
// In order to make main navigation menu displayed, there must be at least
// one child menu item of that menu.
'menu[menu_parent]' => 'main:',
];
$this
->drupalPostForm('node/add/article', $edit, t('Save'));
// Create dummy node with disabled menu item.
$node_2_title = $this
->randomString();
$edit = [
'title[0][value]' => $node_2_title,
'menu[enabled]' => TRUE,
'menu[title]' => $node_2_title,
'menu[menu_parent]' => 'main:',
];
$this
->drupalPostForm('node/add/article', $edit, t('Save'));
// Disable menu item.
$menu_links = \Drupal::entityTypeManager()
->getStorage('menu_link_content')
->loadByProperties([
'title' => $node_2_title,
]);
$menu_link = reset($menu_links);
$mlid = $menu_link
->id();
$edit = [
'enabled[value]' => FALSE,
];
$this
->drupalPostForm("admin/structure/menu/item/{$mlid}/edit", $edit, t('Save'));
// Add admin link that an anonymous user doesn't have access to.
$admin_link_title = $this
->randomString();
$edit = [
'title[0][value]' => $admin_link_title,
'link[0][uri]' => '/admin/config/search/sitemap',
'menu_parent' => 'main:',
];
$this
->drupalPostForm("admin/structure/menu/manage/main/add", $edit, t('Save'));
// Assert that main menu is included in the sitemap.
$this
->drupalGet('/sitemap');
$elements = $this
->cssSelect(".sitemap-box h2:contains('Main navigation')");
$this
->assertEqual(count($elements), 1, 'Main menu is included.');
// Assert that node 1 and the admin link are listed in the sitemap, but not
// node 2.
$this
->assertLink($node_1_title);
$this
->assertLink($admin_link_title);
$this
->assertNoLink($node_2_title);
// Configure module to show all menu items.
$edit = [
'show_menus_hidden' => TRUE,
];
$this
->drupalPostForm('admin/config/search/sitemap', $edit, t('Save configuration'));
// Assert that both node 1 and node 2 are listed in the sitemap.
$this
->drupalGet('/sitemap');
$this
->assertLink($node_1_title);
$this
->assertLink($node_2_title);
// Check anon user doesn't see an inaccessible link for the admin link.
$this
->drupalLogin($this->anonUser);
$this
->drupalGet('/sitemap');
$this
->assertNoLink(t('Inaccessible'));
}