function FileStorageFactoryTest::testGetSync

Same name and namespace in other branches
  1. 9 core/tests/Drupal/KernelTests/Core/Config/FileStorageFactoryTest.php \Drupal\KernelTests\Core\Config\FileStorageFactoryTest::testGetSync()
  2. 8.9.x core/tests/Drupal/KernelTests/Core/Config/FileStorageFactoryTest.php \Drupal\KernelTests\Core\Config\FileStorageFactoryTest::testGetSync()
  3. 10 core/tests/Drupal/KernelTests/Core/Config/FileStorageFactoryTest.php \Drupal\KernelTests\Core\Config\FileStorageFactoryTest::testGetSync()

@covers ::getSync

File

core/tests/Drupal/KernelTests/Core/Config/FileStorageFactoryTest.php, line 22

Class

FileStorageFactoryTest
@coversDefaultClass <a href="/api/drupal/core%21lib%21Drupal%21Core%21Config%21FileStorageFactory.php/class/FileStorageFactory/11.x" title="Provides a factory for creating config file storage objects." class="local">\Drupal\Core\Config\FileStorageFactory</a> @group config

Namespace

Drupal\KernelTests\Core\Config

Code

public function testGetSync() : void {
    // Write some random data to the sync storage.
    $name = $this->randomMachineName();
    $data = (array) $this->getRandomGenerator()
        ->object();
    $storage = new FileStorage(Settings::get('config_sync_directory'));
    $storage->write($name, $data);
    // Get the sync storage and read from it.
    $sync = FileStorageFactory::getSync();
    $this->assertEquals($data, $sync->read($name));
    // Unset the sync directory setting.
    $settings = Settings::getInstance() ? Settings::getAll() : [];
    unset($settings['config_sync_directory']);
    new Settings($settings);
    // On an empty settings there is an exception thrown.
    $this->expectException(ConfigDirectoryNotDefinedException::class);
    $this->expectExceptionMessage('The config sync directory is not defined in $settings["config_sync_directory"]');
    FileStorageFactory::getSync();
}

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