class ConfigOverrideTest

Tests configuration overrides via $conf in settings.php.

Hierarchy

Expanded class hierarchy of ConfigOverrideTest

File

drupal/core/modules/config/lib/Drupal/config/Tests/ConfigOverrideTest.php, line 15
Definition of Drupal\config\Tests\ConfigOverrideTest.

Namespace

Drupal\config\Tests
View source
class ConfigOverrideTest extends DrupalUnitTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  public static $modules = array(
    'config_test',
  );
  public static function getInfo() {
    return array(
      'name' => 'Configuration overrides',
      'description' => 'Tests configuration overrides via $conf in settings.php.',
      'group' => 'Configuration',
    );
  }
  function setUp() {
    parent::setUp();
    config_install_default_config('module', 'config_test');
  }

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

    // Verify that the original configuration data exists.
    $config = config('config_test.system');
    $this
      ->assertIdentical($config
      ->get('foo'), $expected_original_data['foo']);
    $this
      ->assertIdentical($config
      ->get('baz'), $expected_original_data['baz']);
    $this
      ->assertIdentical($config
      ->get('404'), $expected_original_data['404']);

    // Apply the overridden data.
    $conf['config_test.system']['foo'] = 'overridden';
    $conf['config_test.system']['baz'] = 'injected';
    $conf['config_test.system']['404'] = 'derp';

    // Verify that the in-memory configuration object still contains the
    // original data.
    $this
      ->assertIdentical($config
      ->get('foo'), $expected_original_data['foo']);
    $this
      ->assertIdentical($config
      ->get('baz'), $expected_original_data['baz']);
    $this
      ->assertIdentical($config
      ->get('404'), $expected_original_data['404']);

    // Reload the configuration object.
    $config = config('config_test.system');

    // Verify that it contains the overridden data from $conf.
    $this
      ->assertIdentical($config
      ->get('foo'), $conf['config_test.system']['foo']);
    $this
      ->assertIdentical($config
      ->get('baz'), $conf['config_test.system']['baz']);
    $this
      ->assertIdentical($config
      ->get('404'), $conf['config_test.system']['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']);

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

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

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

    // Remove the $conf overrides.
    unset($conf['config_test.system']);

    // Reload it and verify that it still contains the original data.
    $config = config('config_test.system');
    $this
      ->assertIdentical($config
      ->get('foo'), $expected_original_data['foo']);
    $this
      ->assertIdentical($config
      ->get('baz'), $expected_original_data['baz']);
    $this
      ->assertIdentical($config
      ->get('404'), $expected_original_data['404']);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ConfigOverrideTest::$modules public static property Modules to enable. Overrides DrupalUnitTestBase::$modules
ConfigOverrideTest::getInfo public static function
ConfigOverrideTest::setUp function Sets up Drupal unit test environment. Overrides DrupalUnitTestBase::setUp
ConfigOverrideTest::testConfOverride function Tests configuration override.
DrupalUnitTestBase::$moduleFiles private property
DrupalUnitTestBase::$moduleList private property Fixed module list being used by this test.
DrupalUnitTestBase::$themeData private property
DrupalUnitTestBase::$themeFiles private property
DrupalUnitTestBase::containerBuild public function Sets up the base service container for this test.
DrupalUnitTestBase::enableModules protected function Enables modules for this test.
DrupalUnitTestBase::installSchema protected function Installs a specific table from a module schema definition.
TestBase::$assertions protected property Assertions thrown in that test case.
TestBase::$databasePrefix protected property The database prefix of this test run.
TestBase::$originalFileDirectory protected property The original file directory, before it was changed for testing purposes.
TestBase::$originalPrefix protected property The original database prefix when running inside Simpletest.
TestBase::$results public property Current results of this test case.
TestBase::$setup protected property Flag to indicate whether the test has been set up.
TestBase::$setupDatabasePrefix protected property
TestBase::$setupEnvironment protected property
TestBase::$skipClasses protected property This class is skipped when looking for the source of an assertion.
TestBase::$testId protected property The test run ID.
TestBase::$timeLimit protected property Time limit for the test.
TestBase::$verbose protected property TRUE if verbose debugging is enabled.
TestBase::$verboseClassName protected property Safe class name for use in verbose output filenames.
TestBase::$verboseDirectory protected property Directory where verbose output files are put.
TestBase::$verboseDirectoryUrl protected property URL to the verbose output file directory.
TestBase::$verboseId protected property Incrementing identifier for verbose output filenames.
TestBase::assert protected function Internal helper: stores the assert.
TestBase::assertEqual protected function Check to see if two values are equal.
TestBase::assertFalse protected function Check to see if a value is false (an empty string, 0, NULL, or FALSE).
TestBase::assertIdentical protected function Check to see if two values are identical.
TestBase::assertIdenticalObject protected function Checks to see if two objects are identical.
TestBase::assertNotEqual protected function Check to see if two values are not equal.
TestBase::assertNotIdentical protected function Check to see if two values are not identical.
TestBase::assertNotNull protected function Check to see if a value is not NULL.
TestBase::assertNull protected function Check to see if a value is NULL.
TestBase::assertTrue protected function Check to see if a value is not false (not an empty string, 0, NULL, or FALSE).
TestBase::changeDatabasePrefix protected function Changes the database connection to the prefixed one.
TestBase::checkRequirements protected function Checks the matching requirements for Test. 3
TestBase::deleteAssert public static function Delete an assertion record by message ID.
TestBase::error protected function Fire an error assertion. 1
TestBase::errorHandler public function Handle errors during test runs.
TestBase::exceptionHandler protected function Handle exceptions.
TestBase::fail protected function Fire an assertion that is always negative.
TestBase::filePreDeleteCallback public static function Ensures test files are deletable within file_unmanaged_delete_recursive().
TestBase::generatePermutations public static function Converts a list of possible parameters into a stack of permutations.
TestBase::getAssertionCall protected function Cycles through backtrace until the first non-assertion method is found.
TestBase::getDatabaseConnection public static function Returns the database connection to the site running Simpletest.
TestBase::insertAssert public static function Store an assertion from outside the testing context.
TestBase::pass protected function Fire an assertion that is always positive.
TestBase::prepareDatabasePrefix protected function Generates a database prefix for running tests.
TestBase::prepareEnvironment protected function Prepares the current environment for running the test.
TestBase::randomName public static function Generates a random string containing letters and numbers.
TestBase::randomObject public static function Generates a random PHP object.
TestBase::randomString public static function Generates a random string of ASCII characters of codes 32 to 126.
TestBase::rebuildContainer protected function Rebuild drupal_container().
TestBase::run public function Run all tests in this class.
TestBase::tearDown protected function Deletes created files, database tables, and reverts all environment changes. 10
TestBase::verbose protected function Logs verbose message in a text file.
UnitTestBase::$configDirectories protected property
UnitTestBase::__construct function Constructor for UnitTestBase. Overrides TestBase::__construct 6