You are here

public function InstallerTranslationMultipleLanguageNonInteractiveTest::testTranslationsLoaded in Drupal 10

Tests that translations ended up at the expected places.

File

core/tests/Drupal/FunctionalTests/Installer/InstallerTranslationMultipleLanguageNonInteractiveTest.php, line 78

Class

InstallerTranslationMultipleLanguageNonInteractiveTest
Tests translation files for multiple languages get imported during install.

Namespace

Drupal\FunctionalTests\Installer

Code

public function testTranslationsLoaded() {
  $this
    ->drupalLogin($this
    ->createUser([], NULL, TRUE));

  // Ensure the title is correct.
  $this
    ->assertEquals('SITE_NAME_en', \Drupal::config('system.site')
    ->get('name'));

  // Verify German and Spanish were configured.
  $this
    ->drupalGet('admin/config/regional/language');
  $this
    ->assertSession()
    ->pageTextContains('German');
  $this
    ->assertSession()
    ->pageTextContains('Spanish');

  // If the installer was English or we used a profile that keeps English, we
  // expect that configured also. Otherwise English should not be configured
  // on the site.
  $this
    ->assertSession()
    ->pageTextContains('English');

  // Verify the strings from the translation files were imported.
  $this
    ->verifyImportedStringsTranslated();

  /** @var \Drupal\language\ConfigurableLanguageManager $language_manager */
  $language_manager = \Drupal::languageManager();

  // If the site was installed in a foreign language (only tested with German
  // in subclasses), then the active configuration should be updated and no
  // override should exist in German. Otherwise the German translation should
  // end up in overrides the same way as Spanish (which is not used as a site
  // installation language). English should be available based on profile
  // information and should be possible to add if not yet added, making
  // English overrides available.
  $config = \Drupal::config('user.settings');
  $override_de = $language_manager
    ->getLanguageConfigOverride('de', 'user.settings');
  $override_en = $language_manager
    ->getLanguageConfigOverride('en', 'user.settings');
  $override_es = $language_manager
    ->getLanguageConfigOverride('es', 'user.settings');

  // Active configuration should be English.
  $this
    ->assertEquals('Anonymous', $config
    ->get('anonymous'));
  $this
    ->assertEquals('en', $config
    ->get('langcode'));

  // There should not be an English override.
  $this
    ->assertTrue($override_en
    ->isNew());

  // German should be an override.
  $this
    ->assertEquals('Anonymous de', $override_de
    ->get('anonymous'));

  // Spanish is always an override (never used as installation language).
  $this
    ->assertEquals('Anonymous es', $override_es
    ->get('anonymous'));

  // Test translation from locale_test module.
  $this
    ->assertEquals('Montag', t('Monday', [], [
    'langcode' => 'de',
  ]));
}