You are here

MenuLegacyTest.php in Drupal 9

Same filename and directory in other branches
  1. 8 core/tests/Drupal/KernelTests/Core/Menu/MenuLegacyTest.php

File

core/tests/Drupal/KernelTests/Core/Menu/MenuLegacyTest.php
View source
<?php

namespace Drupal\KernelTests\Core\Menu;

use Drupal\KernelTests\KernelTestBase;

/**
 * Deprecation test cases for the menu layer.
 *
 * @group legacy
 */
class MenuLegacyTest extends KernelTestBase {

  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'menu_ui',
    'system',
    'user',
  ];

  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this
      ->installConfig('system');
  }

  /**
   * Tests deprecation of the menu_list_system_menus() function.
   */
  public function testListSystemMenus() : void {
    $this
      ->expectDeprecation('menu_list_system_menus() is deprecated in drupal:9.3.0 and is removed from drupal:10.0.0. Use \\Drupal\\system\\Entity\\Menu::loadMultiple() instead. See https://www.drupal.org/node/3027453');
    $this
      ->assertSame([
      'tools' => 'Tools',
      'admin' => 'Administration',
      'account' => 'User account menu',
      'main' => 'Main navigation',
      'footer' => 'Footer menu',
    ], menu_list_system_menus());
  }

  /**
   * Tests deprecation of the menu_ui_get_menus() function.
   */
  public function testMenuUiGetMenus() : void {
    $this
      ->expectDeprecation('menu_ui_get_menus() is deprecated in drupal:9.3.0 and is removed from drupal:10.0.0. Use \\Drupal\\system\\Entity\\Menu::loadMultiple() instead. See https://www.drupal.org/node/3027453');
    $this
      ->assertSame([
      'admin' => 'Administration',
      'footer' => 'Footer',
      'main' => 'Main navigation',
      'tools' => 'Tools',
      'account' => 'User account menu',
    ], menu_ui_get_menus());
  }

}

Classes

Namesort descending Description
MenuLegacyTest Deprecation test cases for the menu layer.