function VariableTranslationTest::providerSource

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

Overrides MigrateSourceTestBase::providerSource

File

core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/d6/VariableTranslationTest.php, line 26

Class

VariableTranslationTest
Tests the variable source plugin.

Namespace

Drupal\Tests\migrate_drupal\Kernel\Plugin\migrate\source\d6

Code

public function providerSource() {
    $tests = [];
    // The source data.
    $tests[0]['source_data']['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";',
        ],
    ];
    // The expected results.
    $tests[0]['expected_data'] = [
        [
            'language' => 'fr',
            'site_slogan' => 'Migrate est génial',
            'site_name' => 'nom de site',
        ],
        [
            'language' => 'mi',
            'site_slogan' => 'Ko whakamataku heke',
            'site_name' => 'ingoa_pae',
        ],
    ];
    // The expected count.
    $tests[0]['expected_count'] = NULL;
    // The migration configuration.
    $tests[0]['configuration']['variables'] = [
        'site_slogan',
        'site_name',
    ];
    return $tests;
}

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