class ModuleAdminLinksHelperTest

Same name and namespace in other branches
  1. 11.x core/modules/system/tests/src/Kernel/ModuleAdminLinksHelperTest.php \Drupal\Tests\system\Kernel\ModuleAdminLinksHelperTest

Tests the ModuleAdminLinksHelper.

@coversDefaultClass \Drupal\system\ModuleAdminLinksHelper
@group system

Hierarchy

Expanded class hierarchy of ModuleAdminLinksHelperTest

File

core/modules/system/tests/src/Kernel/ModuleAdminLinksHelperTest.php, line 16

Namespace

Drupal\Tests\system\Kernel
View source
class ModuleAdminLinksHelperTest extends KernelTestBase {
  use UserCreationTrait;
  
  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'link',
    'menu_link_content',
    'menu_test',
    'router_test',
    'system',
    'user',
  ];
  
  /**
   * {@inheritdoc}
   */
  public function setUp() : void {
    parent::setUp();
    $this->setUpCurrentUser([], [
      'access administration pages',
    ]);
    $this->installEntitySchema('menu_link_content');
  }
  
  /**
   * @covers ::getModuleAdminLinks
   */
  public function testGetModuleAdminLinks() : void {
    // Rebuild the menu links.
    $this->container
      ->get('plugin.manager.menu.link')
      ->rebuild();
    $adminLinksHelper = $this->container
      ->get('system.module_admin_links_helper');
    // Test a module that has admin links.
    $links = $adminLinksHelper->getModuleAdminLinks('menu_test');
    $this->assertCount(1, $links);
    $this->assertEquals('menu_test.menu_name_test', $links[0]['url']->getRouteName());
    // Test a module that has no admin links.
    $links = $adminLinksHelper->getModuleAdminLinks('link');
    $this->assertCount(0, $links);
  }

}

Members

Title Sort descending Modifiers Object type Summary
ModuleAdminLinksHelperTest::$modules protected static property Modules to install.
ModuleAdminLinksHelperTest::setUp public function
ModuleAdminLinksHelperTest::testGetModuleAdminLinks public function @covers ::getModuleAdminLinks[[api-linebreak]]

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