function TermLocalizedTranslationTest::providerSource

Same name in this branch
  1. 10 core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/TermLocalizedTranslationTest.php \Drupal\Tests\taxonomy\Kernel\Plugin\migrate\source\d6\TermLocalizedTranslationTest::providerSource()
Same name in other branches
  1. 9 core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/TermLocalizedTranslationTest.php \Drupal\Tests\taxonomy\Kernel\Plugin\migrate\source\d6\TermLocalizedTranslationTest::providerSource()
  2. 9 core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d7/TermLocalizedTranslationTest.php \Drupal\Tests\taxonomy\Kernel\Plugin\migrate\source\d7\TermLocalizedTranslationTest::providerSource()
  3. 8.9.x core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/TermLocalizedTranslationTest.php \Drupal\Tests\taxonomy\Kernel\Plugin\migrate\source\d6\TermLocalizedTranslationTest::providerSource()
  4. 8.9.x core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d7/TermLocalizedTranslationTest.php \Drupal\Tests\taxonomy\Kernel\Plugin\migrate\source\d7\TermLocalizedTranslationTest::providerSource()
  5. 11.x core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/TermLocalizedTranslationTest.php \Drupal\Tests\taxonomy\Kernel\Plugin\migrate\source\d6\TermLocalizedTranslationTest::providerSource()
  6. 11.x core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d7/TermLocalizedTranslationTest.php \Drupal\Tests\taxonomy\Kernel\Plugin\migrate\source\d7\TermLocalizedTranslationTest::providerSource()

Overrides TermTest::providerSource

File

core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d7/TermLocalizedTranslationTest.php, line 25

Class

TermLocalizedTranslationTest
Tests D7 i18n term localized source plugin.

Namespace

Drupal\Tests\taxonomy\Kernel\Plugin\migrate\source\d7

Code

public static function providerSource() {
    $tests = parent::providerSource();
    for ($i = 1; $i < 4; $i++) {
        unset($tests[$i]);
    }
    foreach ($tests[0]['source_data']['taxonomy_term_data'] as $key => $value) {
        $tests[0]['source_data']['taxonomy_term_data'][$key]['language'] = 'und';
        $tests[0]['source_data']['taxonomy_term_data'][$key]['i18n_tsid'] = 0;
    }
    // The source data.
    $tests[0]['source_data']['i18n_string'] = [
        [
            'lid' => 6,
            'objectid' => 1,
            'type' => 'term',
            'property' => 'name',
            'objectindex' => '1',
            'format' => 0,
        ],
        [
            'lid' => 7,
            'objectid' => 1,
            'type' => 'term',
            'property' => 'description',
            'objectindex' => '1',
            'format' => 0,
        ],
        [
            'lid' => 8,
            'objectid' => 3,
            'type' => 'term',
            'property' => 'name',
            'objectindex' => '3',
            'format' => 0,
        ],
        [
            'lid' => 9,
            'objectid' => 4,
            'type' => 'term',
            'property' => 'description',
            'objectindex' => '4',
            'format' => 0,
        ],
    ];
    $tests[0]['source_data']['locales_target'] = [
        [
            'lid' => 6,
            'language' => 'fr',
            'translation' => 'fr - name value 1',
            'plid' => 0,
            'plural' => 0,
            'i18n_status' => 0,
        ],
        [
            'lid' => 7,
            'language' => 'fr',
            'translation' => 'fr - description value 1',
            'plid' => 0,
            'plural' => 0,
            'i18n_status' => 0,
        ],
        [
            'lid' => 8,
            'language' => 'zu',
            'translation' => 'zu - name value 3',
            'plid' => 0,
            'plural' => 0,
            'i18n_status' => 0,
        ],
    ];
    // The expected results.
    $tests[0]['expected_data'] = [
        [
            'tid' => 1,
            'vid' => 5,
            'name' => 'name value 1 (name_field)',
            'description' => 'description value 1 (description_field)',
            'weight' => 0,
            'language' => 'fr',
            'i18n_tsid' => '0',
            'machine_name' => 'tags',
            'tdlanguage' => 'und',
            'lid' => '6',
            'property' => 'name',
            'ltlanguage' => 'fr',
            'translation' => 'fr - name value 1',
            'name_translated' => 'fr - name value 1',
            'description_translated' => 'fr - description value 1',
        ],
        [
            'tid' => 1,
            'vid' => 5,
            'name' => 'name value 1 (name_field)',
            'description' => 'description value 1 (description_field)',
            'weight' => 0,
            'language' => 'fr',
            'i18n_tsid' => '0',
            'machine_name' => 'tags',
            'tdlanguage' => 'und',
            'lid' => '7',
            'property' => 'description',
            'ltlanguage' => 'fr',
            'translation' => 'fr - description value 1',
            'name_translated' => 'fr - name value 1',
            'description_translated' => 'fr - description value 1',
        ],
    ];
    $tests[0]['expected_count'] = NULL;
    // Get translations for the tags bundle.
    $tests[0]['configuration']['bundle'] = [
        'tags',
    ];
    // The source data.
    $tests[1] = $tests[0];
    array_push($tests[1]['source_data']['i18n_string'], [
        'lid' => 10,
        'objectid' => 5,
        'type' => 'term',
        'property' => 'name',
        'objectindex' => '5',
        'format' => 0,
    ], [
        'lid' => 11,
        'objectid' => 5,
        'type' => 'term',
        'property' => 'description',
        'objectindex' => '5',
        'format' => 0,
    ]);
    array_push($tests[1]['source_data']['locales_target'], [
        'lid' => 10,
        'language' => 'fr',
        'translation' => 'fr - name value 5',
        'plid' => 0,
        'plural' => 0,
        'i18n_status' => 0,
    ], [
        'lid' => 11,
        'language' => 'fr',
        'translation' => 'fr - description value 5',
        'plid' => 0,
        'plural' => 0,
        'i18n_status' => 0,
    ]);
    // The expected results.
    array_push($tests[1]['expected_data'], [
        'tid' => 3,
        'vid' => 6,
        'name' => 'name value 3',
        'description' => 'description value 3',
        'weight' => 0,
        'language' => 'zu',
        'i18n_tsid' => '0',
        'machine_name' => 'categories',
        'tdlanguage' => 'und',
        'lid' => '8',
        'property' => 'name',
        'ltlanguage' => 'zu',
        'translation' => 'zu - name value 3',
    ], [
        'tid' => 5,
        'vid' => 6,
        'name' => 'name value 5',
        'description' => 'description value 5',
        'weight' => 1,
        'language' => 'fr',
        'i18n_tsid' => '0',
        'machine_name' => 'categories',
        'tdlanguage' => 'und',
        'lid' => '10',
        'property' => 'name',
        'ltlanguage' => 'fr',
        'translation' => 'fr - name value 5',
        'name_translated' => 'fr - name value 5',
        'description_translated' => 'fr - description value 5',
    ], [
        'tid' => 5,
        'vid' => 6,
        'name' => 'name value 5',
        'description' => 'description value 5',
        'weight' => 1,
        'language' => 'fr',
        'i18n_tsid' => '0',
        'machine_name' => 'categories',
        'tdlanguage' => 'und',
        'lid' => '11',
        'property' => 'description',
        'ltlanguage' => 'fr',
        'translation' => 'fr - description value 5',
        'name_translated' => 'fr - name value 5',
        'description_translated' => 'fr - description value 5',
    ]);
    $tests[1]['expected_count'] = NULL;
    // Empty configuration will return terms for all vocabularies.
    $tests[1]['configuration'] = [];
    return $tests;
}

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