ModuleExtensionListTest.php

Same filename and directory in other branches
  1. 9 core/tests/Drupal/KernelTests/Core/Extension/ModuleExtensionListTest.php
  2. 8.9.x core/tests/Drupal/KernelTests/Core/Extension/ModuleExtensionListTest.php
  3. 10 core/tests/Drupal/KernelTests/Core/Extension/ModuleExtensionListTest.php

Namespace

Drupal\KernelTests\Core\Extension

File

core/tests/Drupal/KernelTests/Core/Extension/ModuleExtensionListTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\KernelTests\Core\Extension;

use Drupal\KernelTests\KernelTestBase;

/**
 * @coversDefaultClass \Drupal\Core\Extension\ModuleExtensionList
 * @group Extension
 */
class ModuleExtensionListTest extends KernelTestBase {
  
  /**
   * @covers ::getList
   */
  public function testGetList() : void {
    \Drupal::configFactory()->getEditable('core.extension')
      ->set('module.testing', 1000)
      ->set('profile', 'testing')
      ->save();
    // The installation profile is provided by a container parameter.
    // Saving the configuration doesn't automatically trigger invalidation
    $this->container
      ->get('kernel')
      ->rebuildContainer();
    /** @var \Drupal\Core\Extension\ModuleExtensionList $module_extension_list */
    $module_extension_list = \Drupal::service('extension.list.module');
    $extensions = $module_extension_list->getList();
    $this->assertArrayHasKey('testing', $extensions);
    $this->assertEquals(1000, $extensions['testing']->weight);
  }

}

Classes

Title Deprecated Summary
ModuleExtensionListTest @coversDefaultClass \Drupal\Core\Extension\ModuleExtensionList[[api-linebreak]] @group Extension

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