function UpdateRegistryTest::testRegisterInvokedUpdatesWithExistingUpdates

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

@covers ::registerInvokedUpdates

File

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

Class

UpdateRegistryTest
@coversDefaultClass \Drupal\Core\Update\UpdateRegistry[[api-linebreak]] @group Update

Namespace

Drupal\Tests\Core\Update

Code

public function testRegisterInvokedUpdatesWithExistingUpdates() : void {
  $this->setupBasicExtensions();
  $key_value = $this->prophesize(KeyValueStoreInterface::class);
  $key_value->get('existing_updates', [])
    ->willReturn([
    'module_a_post_update_b',
  ])
    ->shouldBeCalledTimes(1);
  $key_value->set('existing_updates', [
    'module_a_post_update_b',
    'module_a_post_update_a',
  ])
    ->willReturn(NULL)
    ->shouldBeCalledTimes(1);
  $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_a' => [
      'type' => 'module',
      'pathname' => 'core/modules/module_a/module_a.info.yml',
      'filename' => 'module_a.module',
    ],
    'module_b' => [
      'type' => 'module',
      'pathname' => 'core/modules/module_b/module_b.info.yml',
      'filename' => 'module_b.module',
    ],
  ], $key_value, $theme_handler, 'post_update');
  $update_registry->registerInvokedUpdates([
    'module_a_post_update_a',
  ]);
}

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