View source
<?php
namespace Drupal\Tests\block\Kernel\Migrate\d7;
use Drupal\Tests\migrate_drupal\Kernel\d7\MigrateDrupal7TestBase;
class MigrateBlockContentTranslationTest extends MigrateDrupal7TestBase {
protected static $modules = [
'node',
'text',
'book',
'block',
'comment',
'filter',
'forum',
'views',
'block_content',
'config_translation',
'language',
'locale',
'path_alias',
'statistics',
'taxonomy',
];
protected function setUp() : void {
parent::setUp();
$this
->installEntitySchema('block_content');
$this
->installConfig([
'block',
]);
$this
->installConfig([
'block_content',
]);
$this
->executeMigrations([
'language',
'd7_filter_format',
'block_content_type',
'block_content_body_field',
'd7_custom_block',
'd7_user_role',
'd7_block',
'd7_block_translation',
]);
block_rebuild();
}
public function testBlockContentTranslation() {
$language_manager = $this->container
->get('language_manager');
$config = $language_manager
->getLanguageConfigOverride('fr', 'block.block.bartik_user_login');
$this
->assertSame('fr - User login title', $config
->get('settings.label'));
}
}