You are here

MigrateSystemMaintenanceTranslationTest.php in Drupal 9

File

core/modules/config_translation/tests/src/Kernel/Migrate/d7/MigrateSystemMaintenanceTranslationTest.php
View source
<?php

namespace Drupal\Tests\config_translation\Kernel\Migrate\d7;

use Drupal\Tests\migrate_drupal\Kernel\d7\MigrateDrupal7TestBase;

/**
 * Tests migrations of i18n maintenance variable.
 *
 * @group migrate_drupal_7
 */
class MigrateSystemMaintenanceTranslationTest extends MigrateDrupal7TestBase {
  protected static $modules = [
    'language',
    'config_translation',
  ];

  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this
      ->executeMigrations([
      'language',
      'system_maintenance',
      'd7_system_maintenance_translation',
    ]);
  }

  /**
   * Tests migrations of i18n maintenance variable.
   */
  public function testSystemMaintenance() {
    $config = \Drupal::service('language_manager')
      ->getLanguageConfigOverride('is', 'system.maintenance');
    $this
      ->assertSame('is - This is a custom maintenance mode message.', $config
      ->get('message'));
  }

}

Classes

Namesort descending Description
MigrateSystemMaintenanceTranslationTest Tests migrations of i18n maintenance variable.