class ConfigTest

Same name in this branch
  1. 9 core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/d8/ConfigTest.php \Drupal\Tests\migrate_drupal\Kernel\Plugin\migrate\source\d8\ConfigTest
  2. 9 core/modules/config/tests/config_test/src/Entity/ConfigTest.php \Drupal\config_test\Entity\ConfigTest
  3. 9 core/modules/system/tests/src/Functional/File/ConfigTest.php \Drupal\Tests\system\Functional\File\ConfigTest
  4. 9 core/tests/Drupal/Tests/Composer/Plugin/ProjectMessage/ConfigTest.php \Drupal\Tests\Composer\Plugin\ProjectMessage\ConfigTest
  5. 9 core/tests/Drupal/Tests/Composer/Plugin/VendorHardening/ConfigTest.php \Drupal\Tests\Composer\Plugin\VendorHardening\ConfigTest
  6. 9 core/tests/Drupal/Tests/Core/Config/ConfigTest.php \Drupal\Tests\Core\Config\ConfigTest
Same name and namespace in other branches
  1. 8.9.x core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/d8/ConfigTest.php \Drupal\Tests\migrate_drupal\Kernel\Plugin\migrate\source\d8\ConfigTest
  2. 8.9.x core/modules/config/tests/config_test/src/Entity/ConfigTest.php \Drupal\config_test\Entity\ConfigTest
  3. 8.9.x core/modules/migrate/tests/src/Unit/destination/ConfigTest.php \Drupal\Tests\migrate\Unit\destination\ConfigTest
  4. 8.9.x core/modules/system/tests/src/Functional/File/ConfigTest.php \Drupal\Tests\system\Functional\File\ConfigTest
  5. 8.9.x core/tests/Drupal/Tests/Composer/Plugin/ProjectMessage/ConfigTest.php \Drupal\Tests\Composer\Plugin\ProjectMessage\ConfigTest
  6. 8.9.x core/tests/Drupal/Tests/Composer/Plugin/VendorHardening/ConfigTest.php \Drupal\Tests\Composer\Plugin\VendorHardening\ConfigTest
  7. 8.9.x core/tests/Drupal/Tests/Core/Config/ConfigTest.php \Drupal\Tests\Core\Config\ConfigTest
  8. 10 core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/d8/ConfigTest.php \Drupal\Tests\migrate_drupal\Kernel\Plugin\migrate\source\d8\ConfigTest
  9. 10 core/modules/config/tests/config_test/src/Entity/ConfigTest.php \Drupal\config_test\Entity\ConfigTest
  10. 10 core/modules/migrate/tests/src/Unit/destination/ConfigTest.php \Drupal\Tests\migrate\Unit\destination\ConfigTest
  11. 10 core/modules/system/tests/src/Functional/File/ConfigTest.php \Drupal\Tests\system\Functional\File\ConfigTest
  12. 10 core/tests/Drupal/Tests/Composer/Plugin/ProjectMessage/ConfigTest.php \Drupal\Tests\Composer\Plugin\ProjectMessage\ConfigTest
  13. 10 core/tests/Drupal/Tests/Composer/Plugin/VendorHardening/ConfigTest.php \Drupal\Tests\Composer\Plugin\VendorHardening\ConfigTest
  14. 10 core/tests/Drupal/Tests/Core/Config/ConfigTest.php \Drupal\Tests\Core\Config\ConfigTest
  15. 11.x core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/d8/ConfigTest.php \Drupal\Tests\migrate_drupal\Kernel\Plugin\migrate\source\d8\ConfigTest
  16. 11.x core/modules/config/tests/config_test/src/Entity/ConfigTest.php \Drupal\config_test\Entity\ConfigTest
  17. 11.x core/modules/migrate/tests/src/Unit/destination/ConfigTest.php \Drupal\Tests\migrate\Unit\destination\ConfigTest
  18. 11.x core/modules/system/tests/src/Functional/File/ConfigTest.php \Drupal\Tests\system\Functional\File\ConfigTest
  19. 11.x core/tests/Drupal/Tests/Composer/Plugin/ProjectMessage/ConfigTest.php \Drupal\Tests\Composer\Plugin\ProjectMessage\ConfigTest
  20. 11.x core/tests/Drupal/Tests/Composer/Plugin/VendorHardening/ConfigTest.php \Drupal\Tests\Composer\Plugin\VendorHardening\ConfigTest
  21. 11.x core/tests/Drupal/Tests/Core/Config/ConfigTest.php \Drupal\Tests\Core\Config\ConfigTest

@coversDefaultClass \Drupal\migrate\Plugin\migrate\destination\Config @group migrate

Hierarchy

Expanded class hierarchy of ConfigTest

File

core/modules/migrate/tests/src/Unit/destination/ConfigTest.php, line 13

Namespace

Drupal\Tests\migrate\Unit\destination
View source
class ConfigTest extends UnitTestCase {
    
    /**
     * Tests the import method.
     */
    public function testImport() {
        $source = [
            'test' => 'x',
        ];
        $migration = $this->getMockBuilder('Drupal\\migrate\\Plugin\\Migration')
            ->disableOriginalConstructor()
            ->getMock();
        $config = $this->getMockBuilder('Drupal\\Core\\Config\\Config')
            ->disableOriginalConstructor()
            ->getMock();
        foreach ($source as $key => $val) {
            $config->expects($this->once())
                ->method('set')
                ->with($this->equalTo($key), $this->equalTo($val))
                ->willReturn($config);
        }
        $config->expects($this->once())
            ->method('save');
        $config->expects($this->once())
            ->method('getName')
            ->willReturn('d8_config');
        $config_factory = $this->createMock('Drupal\\Core\\Config\\ConfigFactoryInterface');
        $config_factory->expects($this->once())
            ->method('getEditable')
            ->with('d8_config')
            ->willReturn($config);
        $row = $this->getMockBuilder('Drupal\\migrate\\Row')
            ->disableOriginalConstructor()
            ->getMock();
        $row->expects($this->any())
            ->method('getRawDestination')
            ->willReturn($source);
        $language_manager = $this->getMockBuilder('Drupal\\language\\ConfigurableLanguageManagerInterface')
            ->disableOriginalConstructor()
            ->getMock();
        $language_manager->expects($this->never())
            ->method('getLanguageConfigOverride')
            ->with('fr', 'd8_config')
            ->willReturn($config);
        $destination = new Config([
            'config_name' => 'd8_config',
        ], 'd8_config', [
            'pluginId' => 'd8_config',
        ], $migration, $config_factory, $language_manager);
        $destination_id = $destination->import($row);
        $this->assertEquals([
            'd8_config',
        ], $destination_id);
    }
    
    /**
     * Tests the import method.
     */
    public function testLanguageImport() {
        $source = [
            'langcode' => 'mi',
        ];
        $migration = $this->getMockBuilder(MigrationInterface::class)
            ->disableOriginalConstructor()
            ->getMock();
        $config = $this->getMockBuilder('Drupal\\Core\\Config\\Config')
            ->disableOriginalConstructor()
            ->getMock();
        foreach ($source as $key => $val) {
            $config->expects($this->once())
                ->method('set')
                ->with($this->equalTo($key), $this->equalTo($val))
                ->willReturn($config);
        }
        $config->expects($this->once())
            ->method('save');
        $config->expects($this->any())
            ->method('getName')
            ->willReturn('d8_config');
        $config_factory = $this->createMock('Drupal\\Core\\Config\\ConfigFactoryInterface');
        $config_factory->expects($this->once())
            ->method('getEditable')
            ->with('d8_config')
            ->willReturn($config);
        $row = $this->getMockBuilder('Drupal\\migrate\\Row')
            ->disableOriginalConstructor()
            ->getMock();
        $row->expects($this->any())
            ->method('getRawDestination')
            ->willReturn($source);
        $row->expects($this->any())
            ->method('getDestinationProperty')
            ->willReturn($source['langcode']);
        $language_manager = $this->getMockBuilder('Drupal\\language\\ConfigurableLanguageManagerInterface')
            ->disableOriginalConstructor()
            ->getMock();
        $language_manager->expects($this->any())
            ->method('getLanguageConfigOverride')
            ->with('mi', 'd8_config')
            ->willReturn($config);
        $destination = new Config([
            'config_name' => 'd8_config',
            'translations' => 'true',
        ], 'd8_config', [
            'pluginId' => 'd8_config',
        ], $migration, $config_factory, $language_manager);
        $destination_id = $destination->import($row);
        $this->assertEquals([
            'd8_config',
            'mi',
        ], $destination_id);
    }

}

Members

Title Sort descending Deprecated Modifiers Object type Summary Overrides
ConfigTest::testImport public function Tests the import method.
ConfigTest::testLanguageImport public function Tests the import method.
PhpUnitWarnings::$deprecationWarnings private static property Deprecation warnings from PHPUnit to raise with @trigger_error().
PhpUnitWarnings::addWarning public function Converts PHPUnit deprecation warnings to E_USER_DEPRECATED.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::assertArrayEquals Deprecated protected function Asserts if two arrays are equal by sorting them first.
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.
UnitTestCase::setUp protected function 338
UnitTestCase::setUpBeforeClass public static function

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