class ConfigFactoryOverrideBaseTest in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Core/Config/ConfigFactoryOverrideBaseTest.php \Drupal\Tests\Core\Config\ConfigFactoryOverrideBaseTest
@coversDefaultClass \Drupal\Core\Config\ConfigFactoryOverrideBase @group config
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses PhpunitCompatibilityTrait
- class \Drupal\Tests\Core\Config\ConfigFactoryOverrideBaseTest
Expanded class hierarchy of ConfigFactoryOverrideBaseTest
File
- core/
tests/ Drupal/ Tests/ Core/ Config/ ConfigFactoryOverrideBaseTest.php, line 15
Namespace
Drupal\Tests\Core\ConfigView source
class ConfigFactoryOverrideBaseTest extends UnitTestCase {
/**
* @dataProvider providerTestFilterNestedArray
*/
public function testFilterNestedArray(array $original_data, array $override_data_before, array $override_data_after, $changed) {
$config_factory = new TestConfigFactoryOverrideBase();
$result = $config_factory
->doFilterNestedArray($original_data, $override_data_before);
$this
->assertEquals($changed, $result);
$this
->assertEquals($override_data_after, $override_data_before);
}
public function providerTestFilterNestedArray() {
$data = [];
$data['empty'] = [
[],
[],
[],
FALSE,
];
$data['one-level-no-change'] = [
[
'key' => 'value',
],
[],
[],
FALSE,
];
$data['one-level-override-no-change'] = [
[
'key' => 'value',
],
[
'key' => 'value2',
],
[
'key' => 'value2',
],
FALSE,
];
$data['one-level-override-change'] = [
[
'key' => 'value',
],
[
'key2' => 'value2',
],
[],
TRUE,
];
$data['one-level-multiple-override-change'] = [
[
'key' => 'value',
'key2' => 'value2',
],
[
'key2' => 'value2',
'key3' => 'value3',
],
[
'key2' => 'value2',
],
TRUE,
];
$data['multiple-level-multiple-override-change'] = [
[
'key' => [
'key' => 'value',
],
'key2' => [
'key' => 'value',
],
],
[
'key' => [
'key2' => 'value2',
],
'key2' => [
'key' => 'value',
],
],
[
'key2' => [
'key' => 'value',
],
],
TRUE,
];
$data['original-scalar-array-override'] = [
[
'key' => 'value',
],
[
'key' => [
'value1',
'value2',
],
],
[],
TRUE,
];
return $data;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ConfigFactoryOverrideBaseTest:: |
public | function | ||
ConfigFactoryOverrideBaseTest:: |
public | function | @dataProvider providerTestFilterNestedArray | |
PhpunitCompatibilityTrait:: |
public | function | Returns a mock object for the specified class using the available method. | |
PhpunitCompatibilityTrait:: |
public | function | Compatibility layer for PHPUnit 6 to support PHPUnit 4 code. | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | 1 |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Mocks a block with a block plugin. | 1 |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed array. | |
UnitTestCase:: |
public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase:: |
protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase:: |
protected | function | Gets the random generator for the utility methods. | |
UnitTestCase:: |
public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase:: |
public | function | Generates a unique random string containing letters and numbers. | |
UnitTestCase:: |
protected | function | 340 |