function UpdateRegistryTest::testGetPendingUpdateFunctionsWithLoadedModulesButNotEnabled

Same name and namespace in other branches
  1. 8.9.x core/tests/Drupal/Tests/Core/Update/UpdateRegistryTest.php \Drupal\Tests\Core\Update\UpdateRegistryTest::testGetPendingUpdateFunctionsWithLoadedModulesButNotEnabled()
  2. 10 core/tests/Drupal/Tests/Core/Update/UpdateRegistryTest.php \Drupal\Tests\Core\Update\UpdateRegistryTest::testGetPendingUpdateFunctionsWithLoadedModulesButNotEnabled()
  3. 11.x core/tests/Drupal/Tests/Core/Update/UpdateRegistryTest.php \Drupal\Tests\Core\Update\UpdateRegistryTest::testGetPendingUpdateFunctionsWithLoadedModulesButNotEnabled()

@covers ::getPendingUpdateFunctions

File

core/tests/Drupal/Tests/Core/Update/UpdateRegistryTest.php, line 207

Class

UpdateRegistryTest
@coversDefaultClass <a href="/api/drupal/core%21lib%21Drupal%21Core%21Update%21UpdateRegistry.php/class/UpdateRegistry/9" title="Provides all and missing update implementations." class="local">\Drupal\Core\Update\UpdateRegistry</a> @group Update

Namespace

Drupal\Tests\Core\Update

Code

public function testGetPendingUpdateFunctionsWithLoadedModulesButNotEnabled() {
    $this->setupBasicExtensions();
    $key_value = $this->prophesize(KeyValueStoreInterface::class);
    $key_value->get('existing_updates', [])
        ->willReturn([]);
    $key_value = $key_value->reveal();
    // Preload modules to ensure that ::getAvailableUpdateFunctions filters out
    // not enabled modules.
    include_once 'vfs://drupal/sites/default/modules/module_a/module_a.post_update.php';
    include_once 'vfs://drupal/sites/default/modules/module_b/module_b.post_update.php';
    $update_registry = new UpdateRegistry('vfs://drupal', 'sites/default', [
        'module_a',
    ], $key_value, FALSE);
    $this->assertEquals([
        'module_a_post_update_a',
        'module_a_post_update_b',
    ], $update_registry->getPendingUpdateFunctions());
}

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