You are here

public function SchemaCheckTraitTest::testTrait in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/config/src/Tests/SchemaCheckTraitTest.php \Drupal\config\Tests\SchemaCheckTraitTest::testTrait()

Tests \Drupal\Core\Config\Schema\SchemaCheckTrait.

File

core/modules/config/src/Tests/SchemaCheckTraitTest.php, line 49
Contains \Drupal\config\Tests\SchemaCheckTraitTest.

Class

SchemaCheckTraitTest
Tests the functionality of SchemaCheckTrait.

Namespace

Drupal\config\Tests

Code

public function testTrait() {

  // Test a non existing schema.
  $ret = $this
    ->checkConfigSchema($this->typedConfig, 'config_schema_test.noschema', $this
    ->config('config_schema_test.noschema')
    ->get());
  $this
    ->assertIdentical($ret, FALSE);

  // Test an existing schema with valid data.
  $config_data = $this
    ->config('config_test.types')
    ->get();
  $ret = $this
    ->checkConfigSchema($this->typedConfig, 'config_test.types', $config_data);
  $this
    ->assertIdentical($ret, TRUE);

  // Add a new key, a new array and overwrite boolean with array to test the
  // error messages.
  $config_data = array(
    'new_key' => 'new_value',
    'new_array' => array(),
  ) + $config_data;
  $config_data['boolean'] = array();
  $ret = $this
    ->checkConfigSchema($this->typedConfig, 'config_test.types', $config_data);
  $expected = array(
    'config_test.types:new_key' => 'missing schema',
    'config_test.types:new_array' => 'missing schema',
    'config_test.types:boolean' => 'non-scalar value but not defined as an array (such as mapping or sequence)',
  );
  $this
    ->assertEqual($ret, $expected);
}