class ConfigTest
Tests Drupal\migrate\Plugin\migrate\destination\Config.
Attributes
#[CoversClass(Config::class)]
#[Group('migrate')]
Hierarchy
- class \Drupal\Tests\UnitTestCase uses \Drupal\Tests\PhpUnitCompatibilityTrait, \Prophecy\PhpUnit\ProphecyTrait, \Drupal\TestTools\Extension\DeprecationBridge\ExpectDeprecationTrait, \Drupal\Tests\RandomGeneratorTrait extends \PHPUnit\Framework\TestCase
- class \Drupal\Tests\migrate\Unit\destination\ConfigTest extends \Drupal\Tests\UnitTestCase
Expanded class hierarchy of ConfigTest
File
-
core/
modules/ migrate/ tests/ src/ Unit/ destination/ ConfigTest.php, line 17
Namespace
Drupal\Tests\migrate\Unit\destinationView source
class ConfigTest extends UnitTestCase {
/**
* Tests the import method.
*/
public function testImport() : void {
$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->atLeastOnce())
->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, $this->createMock(TypedConfigManagerInterface::class));
$destination_id = $destination->import($row);
$this->assertEquals([
'd8_config',
], $destination_id);
}
/**
* Tests the import method.
*/
public function testLanguageImport() : void {
$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, $this->createMock(TypedConfigManagerInterface::class));
$destination_id = $destination->import($row);
$this->assertEquals([
'd8_config',
'mi',
], $destination_id);
}
}
Members
| Title Sort descending | Modifiers | Object type | Summary | Overrides |
|---|---|---|---|---|
| ConfigTest::testImport | public | function | Tests the import method. | |
| ConfigTest::testLanguageImport | public | function | Tests the import method. | |
| ExpectDeprecationTrait::expectDeprecation | public | function | Adds an expected deprecation. | |
| ExpectDeprecationTrait::setUpErrorHandler | public | function | Sets up the test error handler. | |
| ExpectDeprecationTrait::tearDownErrorHandler | public | function | Tears down the test error handler. | |
| RandomGeneratorTrait::getRandomGenerator | protected | function | Gets the random generator for the utility methods. | |
| RandomGeneratorTrait::randomMachineName | protected | function | Generates a unique random string containing letters and numbers. | |
| RandomGeneratorTrait::randomObject | public | function | Generates a random PHP object. | |
| RandomGeneratorTrait::randomString | public | function | Generates a pseudo-random string of ASCII characters of codes 32 to 126. | |
| UnitTestCase::$root | protected | property | The app root. | |
| 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::getContainerWithCacheTagsInvalidator | protected | function | Sets up a container with a cache tags invalidator. | |
| UnitTestCase::getStringTranslationStub | public | function | Returns a stub translation manager that just returns the passed string. | |
| UnitTestCase::setDebugDumpHandler | public static | function | Registers the dumper CLI handler when the DebugDump extension is enabled. | |
| UnitTestCase::setUp | protected | function | 366 | |
| UnitTestCase::setupMockIterator | protected | function | Set up a traversable class mock to return specific items when iterated. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.