function UpdateRegistryTest::testFilterOutInvokedUpdatesByExtension

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

@covers ::filterOutInvokedUpdatesByExtension

File

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

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 testFilterOutInvokedUpdatesByExtension() {
    $this->setupBasicExtensions();
    $key_value = $this->prophesize(KeyValueStoreInterface::class);
    $key_value->get('existing_updates', [])
        ->willReturn([
        'module_a_post_update_b',
        'module_a_post_update_a',
        'module_b_post_update_a',
        'theme_d_post_update_c',
    ])
        ->shouldBeCalledTimes(1);
    $key_value->set('existing_updates', [
        'module_b_post_update_a',
        'theme_d_post_update_c',
    ])
        ->willReturn(NULL)
        ->shouldBeCalledTimes(1);
    $key_value = $key_value->reveal();
    $update_registry = new UpdateRegistry('vfs://drupal', 'sites/default', [
        'module_a',
        'module_b',
        'theme_d',
    ], $key_value, FALSE);
    $update_registry->filterOutInvokedUpdatesByExtension('module_a');
}

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