You are here

public function MigrateTaxonomyVocabularyTranslationTest::testTaxonomyVocabularyTranslation in Drupal 10

Same name in this branch
  1. 10 core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTaxonomyVocabularyTranslationTest.php \Drupal\Tests\taxonomy\Kernel\Migrate\d6\MigrateTaxonomyVocabularyTranslationTest::testTaxonomyVocabularyTranslation()
  2. 10 core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateTaxonomyVocabularyTranslationTest.php \Drupal\Tests\taxonomy\Kernel\Migrate\d7\MigrateTaxonomyVocabularyTranslationTest::testTaxonomyVocabularyTranslation()
Same name and namespace in other branches
  1. 8 core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTaxonomyVocabularyTranslationTest.php \Drupal\Tests\taxonomy\Kernel\Migrate\d6\MigrateTaxonomyVocabularyTranslationTest::testTaxonomyVocabularyTranslation()
  2. 9 core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTaxonomyVocabularyTranslationTest.php \Drupal\Tests\taxonomy\Kernel\Migrate\d6\MigrateTaxonomyVocabularyTranslationTest::testTaxonomyVocabularyTranslation()

Tests the Drupal 6 i18n taxonomy vocabularies to Drupal 8 migration.

File

core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTaxonomyVocabularyTranslationTest.php, line 38

Class

MigrateTaxonomyVocabularyTranslationTest
Migrate taxonomy vocabularies to taxonomy.vocabulary.*.yml.

Namespace

Drupal\Tests\taxonomy\Kernel\Migrate\d6

Code

public function testTaxonomyVocabularyTranslation() {
  $language_manager = \Drupal::service('language_manager');
  $config = $language_manager
    ->getLanguageConfigOverride('zu', 'taxonomy.vocabulary.vocabulary_1_i_0_');
  $this
    ->assertSame('zu - vocabulary 1 (i=0)', $config
    ->get('name'));
  $config = $language_manager
    ->getLanguageConfigOverride('fr', 'taxonomy.vocabulary.vocabulary_1_i_0_');
  $this
    ->assertSame('fr - vocabulary 1 (i=0)', $config
    ->get('name'));
  $config = $language_manager
    ->getLanguageConfigOverride('fr', 'taxonomy.vocabulary.vocabulary_2_i_1_');
  $this
    ->assertSame('fr - vocabulary 2 (i=1)', $config
    ->get('name'));
  $config = $language_manager
    ->getLanguageConfigOverride('fr', 'taxonomy.vocabulary.vocabulary_3_i_2_');
  $this
    ->assertSame('fr - vocabulary 3 (i=2)', $config
    ->get('name'));
  $config = $language_manager
    ->getLanguageConfigOverride('fr', 'taxonomy.vocabulary.vocabulary_name_much_longer_th');
  $this
    ->assertSame('Nom de vocabulaire beaucoup plus long que trente-deux caractères', $config
    ->get('name'));
  $config = $language_manager
    ->getLanguageConfigOverride('fr', 'taxonomy.vocabulary.tags');
  $this
    ->assertSame('fr - Tags', $config
    ->get('name'));
}