public function UpdateRegistryTest::testGetPendingUpdateInformation in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/tests/Drupal/Tests/Core/Update/UpdateRegistryTest.php \Drupal\Tests\Core\Update\UpdateRegistryTest::testGetPendingUpdateInformation()
@covers ::getPendingUpdateInformation
File
- core/
tests/ Drupal/ Tests/ Core/ Update/ UpdateRegistryTest.php, line 171 - Contains \Drupal\Tests\Core\Update\UpdateRegistryTest.
Class
- UpdateRegistryTest
- @coversDefaultClass \Drupal\Core\Update\UpdateRegistry @group Update
Namespace
Drupal\Tests\Core\UpdateCode
public function testGetPendingUpdateInformation() {
$this
->setupBasicModules();
$key_value = $this
->prophesize(KeyValueStoreInterface::class);
$key_value
->get('existing_updates', [])
->willReturn([]);
$key_value = $key_value
->reveal();
$update_registry = new UpdateRegistry('vfs://drupal', 'sites/default', [
'module_a',
'module_b',
], $key_value, FALSE);
$expected = [];
$expected['module_a']['pending']['a'] = 'Module A update A.';
$expected['module_a']['pending']['b'] = 'Module A update B.';
$expected['module_a']['start'] = 'a';
$expected['module_b']['pending']['a'] = 'Module B update A.';
$expected['module_b']['start'] = 'a';
$this
->assertEquals($expected, $update_registry
->getPendingUpdateInformation());
}