ConfigAfterInstallerTestBase.php

Same filename in this branch
  1. 8.9.x core/tests/Drupal/FunctionalTests/Installer/ConfigAfterInstallerTestBase.php
Same filename and directory in other branches
  1. 9 core/tests/Drupal/FunctionalTests/Installer/ConfigAfterInstallerTestBase.php
  2. 10 core/tests/Drupal/FunctionalTests/Installer/ConfigAfterInstallerTestBase.php
  3. 11.x core/tests/Drupal/FunctionalTests/Installer/ConfigAfterInstallerTestBase.php

Namespace

Drupal\system\Tests\Installer

File

core/modules/system/src/Tests/Installer/ConfigAfterInstallerTestBase.php

View source
<?php

namespace Drupal\system\Tests\Installer;

@trigger_error(__NAMESPACE__ . '\\ConfigAfterInstallerTestBase is deprecated in Drupal 8.6.0 and will be removed before Drupal 9.0.0. Instead, use \\Drupal\\FunctionalTests\\Installer\\ConfigAfterInstallerTestBase.', E_USER_DEPRECATED);
use Drupal\Core\Config\FileStorage;
use Drupal\Core\Config\InstallStorage;
use Drupal\Core\Config\StorageInterface;
use Drupal\KernelTests\AssertConfigTrait;
use Drupal\simpletest\InstallerTestBase;

/**
 * Provides a class for install profiles to check their installed config.
 *
 * @deprecated in drupal:8.6.0 and is removed from drupal:9.0.0.
 *   Use \Drupal\FunctionalTests\Installer\ConfigAfterInstallerTestBase.
 */
abstract class ConfigAfterInstallerTestBase extends InstallerTestBase {
    use AssertConfigTrait;
    
    /**
     * Ensures that all the installed config looks like the exported one.
     *
     * @param array $skipped_config
     *   An array of skipped config.
     */
    protected function assertInstalledConfig(array $skipped_config) {
        
        /** @var \Drupal\Core\Config\StorageInterface $active_config_storage */
        $active_config_storage = $this->container
            ->get('config.storage');
        
        /** @var \Drupal\Core\Config\ConfigManagerInterface $config_manager */
        $config_manager = $this->container
            ->get('config.manager');
        $default_install_path = 'core/profiles/' . $this->profile . '/' . InstallStorage::CONFIG_INSTALL_DIRECTORY;
        $profile_config_storage = new FileStorage($default_install_path, StorageInterface::DEFAULT_COLLECTION);
        foreach ($profile_config_storage->listAll() as $config_name) {
            $result = $config_manager->diff($profile_config_storage, $active_config_storage, $config_name);
            try {
                $this->assertConfigDiff($result, $config_name, $skipped_config);
            } catch (\Exception $e) {
                $this->fail($e->getMessage());
            }
        }
    }

}

Classes

Title Deprecated Summary
ConfigAfterInstallerTestBase

in drupal:8.6.0 and is removed from drupal:9.0.0. Use \Drupal\FunctionalTests\Installer\ConfigAfterInstallerTestBase.

Provides a class for install profiles to check their installed config.

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