function UpdateRegistryTest::testGetPendingUpdateInformationWithRemovedUpdates

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

@covers ::getPendingUpdateInformation

File

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

Class

UpdateRegistryTest
Tests UpdateRegistry.

Namespace

Drupal\Tests\Core\Update

Code

public function testGetPendingUpdateInformationWithRemovedUpdates() : void {
    $this->setupBasicExtensions();
    $key_value = $this->prophesize(KeyValueStoreInterface::class);
    $key_value->get('existing_updates', [])
        ->willReturn([
        'module_a_post_update_a',
    ]);
    $key_value = $key_value->reveal();
    $theme_handler = $this->prophesize(ThemeHandlerInterface::class);
    $theme_handler->listInfo()
        ->willReturn([]);
    $theme_handler = $theme_handler->reveal();
    $update_registry = new UpdateRegistry('vfs://drupal', 'sites/default', [
        'module_c' => [
            'type' => 'module',
            'pathname' => 'core/modules/module_c/module_c.info.yml',
            'filename' => 'module_c.module',
        ],
    ], $key_value, $theme_handler, 'post_update');
    $this->expectException(RemovedPostUpdateNameException::class);
    $update_registry->getPendingUpdateInformation();
}

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