You are here

ConfigOverrideTest.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/modules/config/src/Tests/ConfigOverrideTest.php

File

core/modules/config/src/Tests/ConfigOverrideTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\config\Tests\ConfigOverrideTest.
 */
namespace Drupal\config\Tests;

use Drupal\simpletest\KernelTestBase;

/**
 * Tests configuration overrides via $config in settings.php.
 *
 * @group config
 */
class ConfigOverrideTest extends KernelTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  public static $modules = array(
    'system',
    'config_test',
  );
  protected function setUp() {
    parent::setUp();
    $this
      ->copyConfig($this->container
      ->get('config.storage'), $this->container
      ->get('config.storage.sync'));
  }

  /**
   * Tests configuration override.
   */
  function testConfOverride() {
    $expected_original_data = array(
      'foo' => 'bar',
      'baz' => NULL,
      '404' => 'herp',
    );

    // Set globals before installing to prove that the installed file does not
    // contain these values.
    $overrides['config_test.system']['foo'] = 'overridden';
    $overrides['config_test.system']['baz'] = 'injected';
    $overrides['config_test.system']['404'] = 'derp';
    $GLOBALS['config'] = $overrides;
    $this
      ->installConfig(array(
      'config_test',
    ));

    // Verify that the original configuration data exists. Have to read storage
    // directly otherwise overrides will apply.
    $active = $this->container
      ->get('config.storage');
    $data = $active
      ->read('config_test.system');
    $this
      ->assertIdentical($data['foo'], $expected_original_data['foo']);
    $this
      ->assertFalse(isset($data['baz']));
    $this
      ->assertIdentical($data['404'], $expected_original_data['404']);

    // Get the configuration object with overrides.
    $config = \Drupal::configFactory()
      ->get('config_test.system');

    // Verify that it contains the overridden data from $config.
    $this
      ->assertIdentical($config
      ->get('foo'), $overrides['config_test.system']['foo']);
    $this
      ->assertIdentical($config
      ->get('baz'), $overrides['config_test.system']['baz']);
    $this
      ->assertIdentical($config
      ->get('404'), $overrides['config_test.system']['404']);

    // Get the configuration object which does not have overrides.
    $config = \Drupal::configFactory()
      ->getEditable('config_test.system');

    // Verify that it does not contains the overridden data from $config.
    $this
      ->assertIdentical($config
      ->get('foo'), $expected_original_data['foo']);
    $this
      ->assertIdentical($config
      ->get('baz'), NULL);
    $this
      ->assertIdentical($config
      ->get('404'), $expected_original_data['404']);

    // Set the value for 'baz' (on the original data).
    $expected_original_data['baz'] = 'original baz';
    $config
      ->set('baz', $expected_original_data['baz']);

    // Set the value for '404' (on the original data).
    $expected_original_data['404'] = 'original 404';
    $config
      ->set('404', $expected_original_data['404']);

    // Save the configuration object (having overrides applied).
    $config
      ->save();

    // Reload it and verify that it still contains overridden data from $config.
    $config = \Drupal::config('config_test.system');
    $this
      ->assertIdentical($config
      ->get('foo'), $overrides['config_test.system']['foo']);
    $this
      ->assertIdentical($config
      ->get('baz'), $overrides['config_test.system']['baz']);
    $this
      ->assertIdentical($config
      ->get('404'), $overrides['config_test.system']['404']);

    // Verify that raw config data has changed.
    $this
      ->assertIdentical($config
      ->getOriginal('foo', FALSE), $expected_original_data['foo']);
    $this
      ->assertIdentical($config
      ->getOriginal('baz', FALSE), $expected_original_data['baz']);
    $this
      ->assertIdentical($config
      ->getOriginal('404', FALSE), $expected_original_data['404']);

    // Write file to sync.
    $sync = $this->container
      ->get('config.storage.sync');
    $expected_new_data = array(
      'foo' => 'barbar',
      '404' => 'herpderp',
    );
    $sync
      ->write('config_test.system', $expected_new_data);

    // Import changed data from sync to active.
    $this
      ->configImporter()
      ->import();
    $data = $active
      ->read('config_test.system');

    // Verify that the new configuration data exists. Have to read storage
    // directly otherwise overrides will apply.
    $this
      ->assertIdentical($data['foo'], $expected_new_data['foo']);
    $this
      ->assertFalse(isset($data['baz']));
    $this
      ->assertIdentical($data['404'], $expected_new_data['404']);

    // Verify that the overrides are still working.
    $config = \Drupal::config('config_test.system');
    $this
      ->assertIdentical($config
      ->get('foo'), $overrides['config_test.system']['foo']);
    $this
      ->assertIdentical($config
      ->get('baz'), $overrides['config_test.system']['baz']);
    $this
      ->assertIdentical($config
      ->get('404'), $overrides['config_test.system']['404']);

    // Test overrides of completely new configuration objects. In normal runtime
    // this should only happen for configuration entities as we should not be
    // creating simple configuration objects on the fly.
    $GLOBALS['config']['config_test.new']['key'] = 'override';
    $config = \Drupal::config('config_test.new');
    $this
      ->assertTrue($config
      ->isNew(), 'The configuration object config_test.new is new');
    $this
      ->assertIdentical($config
      ->get('key'), 'override');
    $config_raw = \Drupal::configFactory()
      ->getEditable('config_test.new');
    $this
      ->assertIdentical($config_raw
      ->get('key'), NULL);
    $config_raw
      ->set('key', 'raw')
      ->set('new_key', 'new_value')
      ->save();

    // Ensure override is preserved but all other data has been updated
    // accordingly.
    $config = \Drupal::config('config_test.new');
    $this
      ->assertFalse($config
      ->isNew(), 'The configuration object config_test.new is not new');
    $this
      ->assertIdentical($config
      ->get('key'), 'override');
    $this
      ->assertIdentical($config
      ->get('new_key'), 'new_value');
    $raw_data = $config
      ->getRawData();
    $this
      ->assertIdentical($raw_data['key'], 'raw');
  }

}

Classes

Namesort descending Description
ConfigOverrideTest Tests configuration overrides via $config in settings.php.