TaxonomyTermDeriverTest.php

Same filename and directory in other branches
  1. 9 core/modules/taxonomy/tests/src/Kernel/Migrate/TaxonomyTermDeriverTest.php
  2. 10 core/modules/taxonomy/tests/src/Kernel/Migrate/TaxonomyTermDeriverTest.php
  3. 11.x core/modules/taxonomy/tests/src/Kernel/Migrate/TaxonomyTermDeriverTest.php

Namespace

Drupal\Tests\taxonomy\Kernel\Migrate

File

core/modules/taxonomy/tests/src/Kernel/Migrate/TaxonomyTermDeriverTest.php

View source
<?php

namespace Drupal\Tests\taxonomy\Kernel\Migrate;

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

/**
 * Tests d7 taxonomy term deriver.
 *
 * @group migrate_drupal_7
 */
class TaxonomyTermDeriverTest extends MigrateDrupal7TestBase {
    public static $modules = [
        'taxonomy',
        'text',
    ];
    
    /**
     * Tests fields exist in  process pipeline for term migrations.
     */
    public function testBuilder() {
        // Test a field on the vocabfixed term.
        $process = $this->getMigration('d7_taxonomy_term:vocabfixed')
            ->getProcess();
        $this->assertIdentical('field_training', $process['field_training'][0]['source']);
        // Test a field on the vocablocalized term.
        $process = $this->getMigration('d7_taxonomy_term:vocablocalized')
            ->getProcess();
        $this->assertIdentical('field_sector', $process['field_sector'][0]['source']);
        // Test a field on the vocabtranslate term.
        $process = $this->getMigration('d7_taxonomy_term:vocabtranslate')
            ->getProcess();
        $this->assertIdentical('field_chancellor', $process['field_chancellor'][0]['source']);
        // Test a field on the test_vocabulary term.
        $process = $this->getMigration('d7_taxonomy_term:test_vocabulary')
            ->getProcess();
        $this->assertIdentical('field_integer', $process['field_integer'][0]['source']);
        $this->assertIdentical('field_term_reference', $process['field_term_reference'][0]['source']);
    }

}

Classes

Title Deprecated Summary
TaxonomyTermDeriverTest Tests d7 taxonomy term deriver.

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