function StorageComparerTest::testCreateChangelistUpdate

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

@covers ::createChangelist

File

core/tests/Drupal/Tests/Core/Config/StorageComparerTest.php, line 222

Class

StorageComparerTest
@coversDefaultClass <a href="/api/drupal/core%21lib%21Drupal%21Core%21Config%21StorageComparer.php/class/StorageComparer/10" title="Defines a config storage comparer." class="local">\Drupal\Core\Config\StorageComparer</a> @group Config

Namespace

Drupal\Tests\Core\Config

Code

public function testCreateChangelistUpdate() {
    $target_data = $source_data = $this->getConfigData();
    $source_data['system.site']['title'] = 'Drupal New!';
    $source_data['field.field.node.article.body']['new_config_key'] = 'new data';
    $source_data['field.storage.node.body']['new_config_key'] = 'new data';
    $this->sourceStorage
        ->expects($this->once())
        ->method('listAll')
        ->willReturn(array_keys($source_data));
    $this->targetStorage
        ->expects($this->once())
        ->method('listAll')
        ->willReturn(array_keys($target_data));
    $this->sourceStorage
        ->expects($this->once())
        ->method('readMultiple')
        ->willReturn($source_data);
    $this->targetStorage
        ->expects($this->once())
        ->method('readMultiple')
        ->willReturn($target_data);
    $this->sourceStorage
        ->expects($this->once())
        ->method('getAllCollectionNames')
        ->willReturn([]);
    $this->targetStorage
        ->expects($this->once())
        ->method('getAllCollectionNames')
        ->willReturn([]);
    $this->storageComparer
        ->createChangelist();
    $expected = [
        'field.storage.node.body',
        'field.field.node.article.body',
        'system.site',
    ];
    $this->assertEquals($expected, $this->storageComparer
        ->getChangelist('update'));
    $this->assertEmpty($this->storageComparer
        ->getChangelist('create'));
    $this->assertEmpty($this->storageComparer
        ->getChangelist('delete'));
}

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