class MigrateSystemSiteTranslationTest
Same name in this branch
- 9 core/modules/config_translation/tests/src/Kernel/Migrate/d6/MigrateSystemSiteTranslationTest.php \Drupal\Tests\config_translation\Kernel\Migrate\d6\MigrateSystemSiteTranslationTest
Same name and namespace in other branches
- 11.x core/modules/config_translation/tests/src/Kernel/Migrate/d6/MigrateSystemSiteTranslationTest.php \Drupal\Tests\config_translation\Kernel\Migrate\d6\MigrateSystemSiteTranslationTest
- 11.x core/modules/config_translation/tests/src/Kernel/Migrate/d7/MigrateSystemSiteTranslationTest.php \Drupal\Tests\config_translation\Kernel\Migrate\d7\MigrateSystemSiteTranslationTest
- 10 core/modules/config_translation/tests/src/Kernel/Migrate/d6/MigrateSystemSiteTranslationTest.php \Drupal\Tests\config_translation\Kernel\Migrate\d6\MigrateSystemSiteTranslationTest
- 10 core/modules/config_translation/tests/src/Kernel/Migrate/d7/MigrateSystemSiteTranslationTest.php \Drupal\Tests\config_translation\Kernel\Migrate\d7\MigrateSystemSiteTranslationTest
- 8.9.x core/modules/config_translation/tests/src/Kernel/Migrate/d6/MigrateSystemSiteTranslationTest.php \Drupal\Tests\config_translation\Kernel\Migrate\d6\MigrateSystemSiteTranslationTest
- 8.9.x core/modules/config_translation/tests/src/Kernel/Migrate/d7/MigrateSystemSiteTranslationTest.php \Drupal\Tests\config_translation\Kernel\Migrate\d7\MigrateSystemSiteTranslationTest
Migrate multilingual site variables.
@group migrate_drupal_7
Hierarchy
- class \Drupal\KernelTests\KernelTestBase implements \Drupal\Core\DependencyInjection\ServiceProviderInterface uses \Drupal\KernelTests\AssertLegacyTrait, \Drupal\KernelTests\AssertContentTrait, \Drupal\Tests\RandomGeneratorTrait, \Drupal\Tests\ConfigTestTrait, \Drupal\Tests\ExtensionListTestTrait, \Drupal\Tests\TestRequirementsTrait, \Drupal\Tests\Traits\PhpUnitWarnings, \Drupal\Tests\PhpUnitCompatibilityTrait, \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait extends \PHPUnit\Framework\TestCase
- class \Drupal\Tests\migrate\Kernel\MigrateTestBase implements \Drupal\migrate\MigrateMessageInterface extends \Drupal\KernelTests\KernelTestBase
- class \Drupal\Tests\migrate_drupal\Kernel\MigrateDrupalTestBase extends \Drupal\Tests\migrate\Kernel\MigrateTestBase
- class \Drupal\Tests\migrate_drupal\Kernel\d7\MigrateDrupal7TestBase uses \Drupal\Tests\migrate_drupal\Traits\NodeMigrateTypeTestTrait extends \Drupal\Tests\migrate_drupal\Kernel\MigrateDrupalTestBase
- class \Drupal\Tests\config_translation\Kernel\Migrate\d7\MigrateSystemSiteTranslationTest extends \Drupal\Tests\migrate_drupal\Kernel\d7\MigrateDrupal7TestBase
- class \Drupal\Tests\migrate_drupal\Kernel\d7\MigrateDrupal7TestBase uses \Drupal\Tests\migrate_drupal\Traits\NodeMigrateTypeTestTrait extends \Drupal\Tests\migrate_drupal\Kernel\MigrateDrupalTestBase
- class \Drupal\Tests\migrate_drupal\Kernel\MigrateDrupalTestBase extends \Drupal\Tests\migrate\Kernel\MigrateTestBase
- class \Drupal\Tests\migrate\Kernel\MigrateTestBase implements \Drupal\migrate\MigrateMessageInterface extends \Drupal\KernelTests\KernelTestBase
Expanded class hierarchy of MigrateSystemSiteTranslationTest
File
-
core/
modules/ config_translation/ tests/ src/ Kernel/ Migrate/ d7/ MigrateSystemSiteTranslationTest.php, line 12
Namespace
Drupal\Tests\config_translation\Kernel\Migrate\d7View source
class MigrateSystemSiteTranslationTest extends MigrateDrupal7TestBase {
/**
* {@inheritdoc}
*/
protected static $modules = [
'language',
'config_translation',
];
/**
* {@inheritdoc}
*/
protected function setUp() : void {
parent::setUp();
$this->executeMigrations([
'language',
'system_site',
'd7_system_site_translation',
]);
}
/**
* Tests migration of system (site) variables to system.site.yml.
*/
public function testSystemSite() {
$language_manager = \Drupal::service('language_manager');
$config_translation = $language_manager->getLanguageConfigOverride('fr', 'system.site');
$this->assertSame('The Site Name', $config_translation->get('name'));
$this->assertSame('fr - The Slogan', $config_translation->get('slogan'));
$this->assertSame(NULL, $config_translation->get('page.403'));
$this->assertSame(NULL, $config_translation->get('page.404'));
$this->assertSame(NULL, $config_translation->get('page.front'));
$this->assertSame(NULL, $config_translation->get('admin_compact_mode'));
$config_translation = $language_manager->getLanguageConfigOverride('is', 'system.site');
$this->assertSame('is - The Site Name', $config_translation->get('name'));
$this->assertSame('is - The Slogan', $config_translation->get('slogan'));
$this->assertSame(NULL, $config_translation->get('page.403'));
$this->assertSame(NULL, $config_translation->get('page.404'));
$this->assertSame(NULL, $config_translation->get('page.front'));
$this->assertNULL($config_translation->get('admin_compact_mode'));
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.