You are here

public function UpdateRegistryTest::testGetUpdateFunctions in Drupal 10

@covers ::getUpdateFunctions

File

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

Class

UpdateRegistryTest
@coversDefaultClass \Drupal\Core\Update\UpdateRegistry @group Update

Namespace

Drupal\Tests\Core\Update

Code

public function testGetUpdateFunctions() {
  $this
    ->setupBasicExtensions();
  $key_value = $this
    ->prophesize(KeyValueStoreInterface::class)
    ->reveal();
  $update_registry = new UpdateRegistry('vfs://drupal', 'sites/default', [
    'module_a',
    'module_b',
    'theme_d',
  ], $key_value, FALSE);
  $this
    ->assertEquals([
    'module_a_post_update_a',
    'module_a_post_update_b',
  ], array_values($update_registry
    ->getUpdateFunctions('module_a')));
  $this
    ->assertEquals([
    'module_b_post_update_a',
  ], array_values($update_registry
    ->getUpdateFunctions('module_b')));
  $this
    ->assertEquals([
    'theme_d_post_update_b',
    'theme_d_post_update_c',
  ], array_values($update_registry
    ->getUpdateFunctions('theme_d')));
}