VariableTranslationTest.php

Same filename in this branch
  1. 8.9.x core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/d6/VariableTranslationTest.php
  2. 8.9.x core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/d7/VariableTranslationTest.php
Same filename and directory in other branches
  1. 9 core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/d6/VariableTranslationTest.php
  2. 9 core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/d7/VariableTranslationTest.php
  3. 10 core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/d6/VariableTranslationTest.php
  4. 10 core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/d7/VariableTranslationTest.php
  5. 11.x core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/d6/VariableTranslationTest.php
  6. 11.x core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/d7/VariableTranslationTest.php

Namespace

Drupal\Tests\migrate_drupal\Unit\source\d6

File

core/modules/migrate_drupal/tests/src/Unit/source/d6/VariableTranslationTest.php

View source
<?php

namespace Drupal\Tests\migrate_drupal\Unit\source\d6;

use Drupal\Tests\migrate\Unit\MigrateSqlSourceTestCase;

/**
 * Tests the variable source plugin.
 *
 * @group migrate_drupal
 * @group legacy
 */
class VariableTranslationTest extends MigrateSqlSourceTestCase {
    // The plugin system is not working during unit testing so the source plugin
    // class needs to be manually specified.
    const PLUGIN_CLASS = 'Drupal\\migrate_drupal\\Plugin\\migrate\\source\\d6\\VariableTranslation';
    
    /**
     * Define bare minimum migration configuration.
     */
    protected $migrationConfiguration = [
        'id' => 'test',
        'highWaterProperty' => [
            'field' => 'test',
        ],
        'source' => [
            'plugin' => 'variable_translation',
            'variables' => [
                'site_slogan',
                'site_name',
            ],
        ],
    ];
    
    /**
     * Expected results from the source.
     */
    protected $expectedResults = [
        [
            'language' => 'fr',
            'site_slogan' => 'Migrate est génial',
            'site_name' => 'nom de site',
        ],
        [
            'language' => 'mi',
            'site_slogan' => 'Ko whakamataku heke',
            'site_name' => 'ingoa_pae',
        ],
    ];
    
    /**
     * Database contents for tests.
     */
    protected $databaseContents = [
        'i18n_variable' => [
            [
                'name' => 'site_slogan',
                'language' => 'fr',
                'value' => 's:19:"Migrate est génial";',
            ],
            [
                'name' => 'site_name',
                'language' => 'fr',
                'value' => 's:11:"nom de site";',
            ],
            [
                'name' => 'site_slogan',
                'language' => 'mi',
                'value' => 's:19:"Ko whakamataku heke";',
            ],
            [
                'name' => 'site_name',
                'language' => 'mi',
                'value' => 's:9:"ingoa_pae";',
            ],
        ],
    ];

}

Classes

Title Deprecated Summary
VariableTranslationTest Tests the variable source plugin.

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