function VariableTranslationTest::providerSource

Same name in this branch
  1. 9 core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/d6/VariableTranslationTest.php \Drupal\Tests\migrate_drupal\Kernel\Plugin\migrate\source\d6\VariableTranslationTest::providerSource()
Same name and namespace 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()

The data provider.

Return value

array Array of data sets to test, each of which is a numerically indexed array with the following elements:

  • An array of source data, which can be optionally processed and set up by subclasses.
  • An array of expected result rows.
  • (optional) The number of result rows the plugin under test is expected to return. If this is not a numeric value, the plugin will not be counted.
  • (optional) Array of configuration options for the plugin under test.

Overrides MigrateSourceTestBase::providerSource

File

core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/d7/VariableTranslationTest.php, line 24

Class

VariableTranslationTest
Tests the variable source plugin.

Namespace

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

Code

public function providerSource() {
    $tests = [];
    // The source data.
    $tests[0]['source_data']['variable_store'] = [
        [
            'realm' => 'language',
            'realm_key' => 'fr',
            'name' => 'site_slogan',
            'value' => 'fr - site slogan',
            'serialized' => '0',
        ],
        [
            'realm' => 'language',
            'realm_key' => 'fr',
            'name' => 'user_mail_status_blocked_subject',
            'value' => 'fr - BEGONE!',
            'serialized' => '0',
        ],
        [
            'realm' => 'language',
            'realm_key' => 'is',
            'name' => 'site_slogan',
            'value' => 's:16:"is - site slogan";',
            'serialized' => '1',
        ],
    ];
    // The expected results.
    $tests[0]['expected_data'] = [
        [
            'language' => 'fr',
            'site_slogan' => 'fr - site slogan',
            'user_mail_status_blocked_subject' => 'fr - BEGONE!',
        ],
        [
            'language' => 'is',
            'site_slogan' => 'is - site slogan',
        ],
    ];
    // The expected count.
    $tests[0]['expected_count'] = NULL;
    // The migration configuration.
    $tests[0]['configuration']['variables'] = [
        'site_slogan',
        'user_mail_status_blocked_subject',
    ];
    return $tests;
}

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