You are here

class ConfigImporterExporterTest in Configuration development 8

@coversDefaultClass \Drupal\config_devel\ConfigImporterExporter @group config_devel

Hierarchy

Expanded class hierarchy of ConfigImporterExporterTest

File

tests/src/Unit/ConfigImporterExporterTest.php, line 14

Namespace

Drupal\Tests\config_devel\Unit
View source
class ConfigImporterExporterTest extends ConfigDevelTestBase {

  /**
   * Test ConfigImporterExporter::writeBackConfig().
   */
  public function testWriteBackConfig() {
    $config_data = array(
      'id' => $this
        ->randomMachineName(),
      'langcode' => 'en',
      'uuid' => '836769f4-6791-402d-9046-cc06e20be87f',
    );
    $config = $this
      ->getMockBuilder('\\Drupal\\Core\\Config\\Config')
      ->disableOriginalConstructor()
      ->getMock();
    $config
      ->expects($this
      ->any())
      ->method('getName')
      ->will($this
      ->returnValue($this
      ->randomMachineName()));
    $config
      ->expects($this
      ->any())
      ->method('get')
      ->will($this
      ->returnValue($config_data));
    $file_names = array(
      vfsStream::url('public://' . $this
        ->randomMachineName() . '.yml'),
      vfsStream::url('public://' . $this
        ->randomMachineName() . '.yml'),
    );
    $configDevelSubscriber = new ConfigImporterExporter($this->configFactory, $this
      ->prophesize(\Drupal\Core\Config\StorageInterface::class)
      ->reveal(), $this->configManager, $this->eventDispatcher, $this
      ->prophesize(\Drupal\Core\ProxyClass\Lock\PersistentDatabaseLockBackend::class)
      ->reveal(), $this
      ->prophesize(\Drupal\Core\Config\TypedConfigManagerInterface::class)
      ->reveal(), $this
      ->prophesize(\Drupal\Core\Extension\ModuleHandlerInterface::class)
      ->reveal(), $this
      ->prophesize(\Drupal\Core\ProxyClass\Extension\ModuleInstaller::class)
      ->reveal(), $this
      ->prophesize(\Drupal\Core\Extension\ThemeHandlerInterface::class)
      ->reveal(), $this
      ->prophesize(\Drupal\Core\StringTranslation\TranslationManager::class)
      ->reveal(), $this
      ->prophesize(\Drupal\Core\Extension\ModuleExtensionList::class)
      ->reveal());
    $configDevelSubscriber
      ->writeBackConfig($config, $file_names);
    $data = $config_data;
    unset($data['uuid']);
    unset($data['_core']);
    foreach ($file_names as $file_name) {
      $this
        ->assertEquals($data, Yaml::decode(file_get_contents($file_name)));
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ConfigDevelTestBase::$configFactory protected property
ConfigDevelTestBase::$configManager protected property
ConfigDevelTestBase::$eventDispatcher protected property
ConfigDevelTestBase::setUp public function Overrides UnitTestCase::setUp
ConfigImporterExporterTest::testWriteBackConfig public function Test ConfigImporterExporter::writeBackConfig().
PhpunitCompatibilityTrait::getMock Deprecated public function Returns a mock object for the specified class using the available method.
PhpunitCompatibilityTrait::setExpectedException Deprecated public function Compatibility layer for PHPUnit 6 to support PHPUnit 4 code.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::assertArrayEquals protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getBlockMockWithMachineName Deprecated protected function Mocks a block with a block plugin. 1
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.