MigrateLanguageContentTaxonomyVocabularySettingsTest.php

Same filename in this branch
  1. 11.x core/modules/language/tests/src/Kernel/Migrate/d6/MigrateLanguageContentTaxonomyVocabularySettingsTest.php
  2. 11.x core/modules/forum/tests/src/Kernel/Migrate/d7/MigrateLanguageContentTaxonomyVocabularySettingsTest.php
Same filename and directory in other branches
  1. 9 core/modules/language/tests/src/Kernel/Migrate/d6/MigrateLanguageContentTaxonomyVocabularySettingsTest.php
  2. 9 core/modules/language/tests/src/Kernel/Migrate/d7/MigrateLanguageContentTaxonomyVocabularySettingsTest.php
  3. 8.9.x core/modules/language/tests/src/Kernel/Migrate/d6/MigrateLanguageContentTaxonomyVocabularySettingsTest.php
  4. 8.9.x core/modules/language/tests/src/Kernel/Migrate/d7/MigrateLanguageContentTaxonomyVocabularySettingsTest.php
  5. 10 core/modules/language/tests/src/Kernel/Migrate/d6/MigrateLanguageContentTaxonomyVocabularySettingsTest.php
  6. 10 core/modules/language/tests/src/Kernel/Migrate/d7/MigrateLanguageContentTaxonomyVocabularySettingsTest.php
  7. 10 core/modules/forum/tests/src/Kernel/Migrate/d7/MigrateLanguageContentTaxonomyVocabularySettingsTest.php

Namespace

Drupal\Tests\language\Kernel\Migrate\d7

File

core/modules/language/tests/src/Kernel/Migrate/d7/MigrateLanguageContentTaxonomyVocabularySettingsTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\language\Kernel\Migrate\d7;

use Drupal\language\Entity\ContentLanguageSettings;
use Drupal\Core\Language\LanguageInterface;
use Drupal\Tests\migrate_drupal\Kernel\d7\MigrateDrupal7TestBase;

/**
 * Tests migration of i18ntaxonomy vocabulary settings.
 *
 * @group migrate_drupal_7
 */
class MigrateLanguageContentTaxonomyVocabularySettingsTest extends MigrateDrupal7TestBase {
    
    /**
     * {@inheritdoc}
     */
    protected static $modules = [
        'language',
        'content_translation',
        'taxonomy',
        'text',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() : void {
        parent::setUp();
        $this->installEntitySchema('taxonomy_term');
        $this->executeMigrations([
            'language',
            'd7_taxonomy_vocabulary',
            'd7_language_content_taxonomy_vocabulary_settings',
        ]);
    }
    
    /**
     * Tests migration of 18ntaxonomy vocabulary settings.
     */
    public function testLanguageContentTaxonomy() : void {
        $target_entity = 'taxonomy_term';
        // No multilingual options for terms, i18n_mode = 0.
        $this->assertLanguageContentSettings($target_entity, 'tags', LanguageInterface::LANGCODE_NOT_SPECIFIED, FALSE, [
            'enabled' => FALSE,
        ]);
        $this->assertLanguageContentSettings($target_entity, 'sujet_de_discussion', LanguageInterface::LANGCODE_NOT_SPECIFIED, FALSE, [
            'enabled' => FALSE,
        ]);
        $this->assertLanguageContentSettings($target_entity, 'vocabulary_name_much_longer_th', LanguageInterface::LANGCODE_NOT_SPECIFIED, FALSE, [
            'enabled' => FALSE,
        ]);
        $this->assertLanguageContentSettings($target_entity, 'test_vocabulary', LanguageInterface::LANGCODE_NOT_SPECIFIED, FALSE, [
            'enabled' => FALSE,
        ]);
        // Localize, i18n_mode = 1.
        $this->assertLanguageContentSettings($target_entity, 'vocablocalized', LanguageInterface::LANGCODE_NOT_SPECIFIED, TRUE, [
            'enabled' => TRUE,
        ]);
        // Translate, i18n_mode = 4.
        $this->assertLanguageContentSettings($target_entity, 'vocabtranslate', LanguageInterface::LANGCODE_NOT_SPECIFIED, TRUE, [
            'enabled' => FALSE,
        ]);
        // Fixed language, i18n_mode = 2.
        $this->assertLanguageContentSettings($target_entity, 'vocabfixed', 'fr', FALSE, [
            'enabled' => FALSE,
        ]);
    }
    
    /**
     * Asserts a content language settings configuration.
     *
     * @param string $target_entity
     *   The expected target entity type.
     * @param string $bundle
     *   The expected bundle.
     * @param string $default_langcode
     *   The default language code.
     * @param bool $language_alterable
     *   The expected state of language alterable.
     * @param array $third_party_settings
     *   The content translation setting.
     *
     * @internal
     */
    public function assertLanguageContentSettings(string $target_entity, string $bundle, string $default_langcode, bool $language_alterable, array $third_party_settings) : void {
        $config = ContentLanguageSettings::load($target_entity . '.' . $bundle);
        $this->assertInstanceOf(ContentLanguageSettings::class, $config);
        $this->assertSame($target_entity, $config->getTargetEntityTypeId());
        $this->assertSame($bundle, $config->getTargetBundle());
        $this->assertSame($default_langcode, $config->getDefaultLangcode());
        $this->assertSame($language_alterable, $config->isLanguageAlterable());
        $this->assertSame($third_party_settings, $config->getThirdPartySettings('content_translation'));
    }

}

Classes

Title Deprecated Summary
MigrateLanguageContentTaxonomyVocabularySettingsTest Tests migration of i18ntaxonomy vocabulary settings.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.