function VariableMultiRowTest::providerSource

Same name and namespace in other branches
  1. 8.9.x core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/VariableMultiRowTest.php \Drupal\Tests\migrate_drupal\Kernel\Plugin\migrate\source\VariableMultiRowTest::providerSource()
  2. 10 core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/VariableMultiRowTest.php \Drupal\Tests\migrate_drupal\Kernel\Plugin\migrate\source\VariableMultiRowTest::providerSource()
  3. 11.x core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/VariableMultiRowTest.php \Drupal\Tests\migrate_drupal\Kernel\Plugin\migrate\source\VariableMultiRowTest::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/VariableMultiRowTest.php, line 26

Class

VariableMultiRowTest
Tests the variable multirow source plugin.

Namespace

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

Code

public function providerSource() {
    $tests = [];
    // The source data.
    $tests[0]['source_data']['variable'] = [
        [
            'name' => 'foo',
            'value' => 'i:1;',
        ],
        [
            'name' => 'bar',
            'value' => 'b:0;',
        ],
    ];
    // The expected results.
    $tests[0]['expected_data'] = [
        [
            'name' => 'foo',
            'value' => 1,
        ],
        [
            'name' => 'bar',
            'value' => FALSE,
        ],
    ];
    // The expected count.
    $tests[0]['expected_count'] = NULL;
    // The source plugin configuration.
    $tests[0]['configuration']['variables'] = [
        'foo',
        'bar',
    ];
    return $tests;
}

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