function ClassLoaderTest::testClassLoadingDisabledModules

Same name and namespace in other branches
  1. 9 core/modules/system/tests/src/Functional/Module/ClassLoaderTest.php \Drupal\Tests\system\Functional\Module\ClassLoaderTest::testClassLoadingDisabledModules()
  2. 8.9.x core/modules/system/tests/src/Functional/Module/ClassLoaderTest.php \Drupal\Tests\system\Functional\Module\ClassLoaderTest::testClassLoadingDisabledModules()
  3. 10 core/modules/system/tests/src/Functional/Module/ClassLoaderTest.php \Drupal\Tests\system\Functional\Module\ClassLoaderTest::testClassLoadingDisabledModules()

Tests that module-provided classes can't be loaded from disabled modules.

See also

\Drupal\module_autoload_test\SomeClass

File

core/modules/system/tests/src/Functional/Module/ClassLoaderTest.php, line 73

Class

ClassLoaderTest
Tests class loading for modules.

Namespace

Drupal\Tests\system\Functional\Module

Code

public function testClassLoadingDisabledModules() : void {
    // Enable the module_test and module_autoload_test modules.
    \Drupal::service('module_installer')->install([
        'module_test',
        'module_autoload_test',
    ], FALSE);
    $this->resetAll();
    // Ensure that module_autoload_test is disabled.
    $this->container
        ->get('module_installer')
        ->uninstall([
        'module_autoload_test',
    ], FALSE);
    $this->resetAll();
    // Check twice to test an unprimed and primed system_list() cache.
    for ($i = 0; $i < 2; $i++) {
        $this->drupalGet('module-test/class-loading');
        $this->assertSession()
            ->statusCodeEquals(200);
        $this->assertSession()
            ->pageTextNotContains($this->expected);
    }
}

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