You are here

public function ConfigEntityNormalizeTest::testNormalize in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/KernelTests/Core/Config/ConfigEntityNormalizeTest.php \Drupal\KernelTests\Core\Config\ConfigEntityNormalizeTest::testNormalize()
  2. 10 core/tests/Drupal/KernelTests/Core/Config/ConfigEntityNormalizeTest.php \Drupal\KernelTests\Core\Config\ConfigEntityNormalizeTest::testNormalize()

File

core/tests/Drupal/KernelTests/Core/Config/ConfigEntityNormalizeTest.php, line 26

Class

ConfigEntityNormalizeTest
Tests the listing of configuration entities.

Namespace

Drupal\KernelTests\Core\Config

Code

public function testNormalize() {
  $config_entity = \Drupal::entityTypeManager()
    ->getStorage('config_test')
    ->create([
    'id' => 'system',
    'label' => 'foobar',
    'weight' => 1,
  ]);
  $config_entity
    ->save();

  // Modify stored config entity, this is comparable with a schema change.
  $config = $this
    ->config('config_test.dynamic.system');
  $data = [
    'label' => 'foobar',
    'additional_key' => TRUE,
  ] + $config
    ->getRawData();
  $config
    ->setData($data)
    ->save();
  $this
    ->assertNotIdentical($config_entity
    ->toArray(), $config
    ->getRawData(), 'Stored config entity is not is equivalent to config schema.');
  $config_entity = \Drupal::entityTypeManager()
    ->getStorage('config_test')
    ->load('system');
  $config_entity
    ->save();
  $config = $this
    ->config('config_test.dynamic.system');
  $this
    ->assertIdentical($config_entity
    ->toArray(), $config
    ->getRawData(), 'Stored config entity is equivalent to config schema.');
}