ConfigDependencyManagerTest.php

Same filename in this branch
  1. 11.x core/tests/Drupal/Tests/Core/Config/ConfigDependencyManagerTest.php
Same filename and directory in other branches
  1. 9 core/tests/Drupal/Tests/Core/Config/ConfigDependencyManagerTest.php
  2. 9 core/tests/Drupal/Tests/Core/Config/Entity/ConfigDependencyManagerTest.php
  3. 8.9.x core/tests/Drupal/Tests/Core/Config/ConfigDependencyManagerTest.php
  4. 8.9.x core/tests/Drupal/Tests/Core/Config/Entity/ConfigDependencyManagerTest.php
  5. 10 core/tests/Drupal/Tests/Core/Config/ConfigDependencyManagerTest.php
  6. 10 core/tests/Drupal/Tests/Core/Config/Entity/ConfigDependencyManagerTest.php

Namespace

Drupal\Tests\Core\Config\Entity

File

core/tests/Drupal/Tests/Core/Config/Entity/ConfigDependencyManagerTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\Core\Config\Entity;

use Drupal\Tests\UnitTestCase;
use Drupal\Core\Config\Entity\ConfigDependencyManager;

/**
 * Tests the ConfigDependencyManager class.
 *
 * @group Config
 */
class ConfigDependencyManagerTest extends UnitTestCase {
    public function testNoConfiguration() : void {
        $dep_manger = new ConfigDependencyManager();
        $this->assertEmpty($dep_manger->getDependentEntities('config', 'config_test.dynamic.entity_id:745b0ce0-aece-42dd-a800-ade5b8455e84'));
    }
    public function testNoConfigEntities() : void {
        $dep_manger = new ConfigDependencyManager();
        $dep_manger->setData([
            'simple.config' => [
                'key' => 'value',
            ],
        ]);
        $this->assertEmpty($dep_manger->getDependentEntities('config', 'config_test.dynamic.entity_id:745b0ce0-aece-42dd-a800-ade5b8455e84'));
        // Configuration is always dependent on its provider.
        $dependencies = $dep_manger->getDependentEntities('module', 'simple');
        $this->assertArrayHasKey('simple.config', $dependencies);
        $this->assertCount(1, $dependencies);
    }

}

Classes

Title Deprecated Summary
ConfigDependencyManagerTest Tests the ConfigDependencyManager class.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.