You are here

public function ExtensionTest::providerSource in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/system/tests/src/Kernel/Plugin/migrate/source/ExtensionTest.php \Drupal\Tests\system\Kernel\Plugin\migrate\source\ExtensionTest::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

See also

\Drupal\Tests\migrate\Kernel\MigrateSourceTestBase::testSource

File

core/modules/system/tests/src/Kernel/Plugin/migrate/source/ExtensionTest.php, line 23

Class

ExtensionTest
Tests legacy extension source plugin.

Namespace

Drupal\Tests\system\Kernel\Plugin\migrate\source

Code

public function providerSource() {
  $test = [];
  $test[0]['source_data']['system'] = [
    [
      'filename' => 'sites/all/modules/i18n/i18nmenu/i18nmenu.module',
      'name' => 'i18nmenu',
      'type' => 'module',
      'owner' => '',
      'status' => '1',
      'throttle' => '0',
      'bootstrap' => '0',
      'schema_version' => '0',
      'weight' => '0',
      'info' => 'a:10:{s:4:"name";s:16:"Menu translation";s:11:"description";s:40:"Supports translatable custom menu items.";s:12:"dependencies";a:4:{i:0;s:4:"i18n";i:1;s:4:"menu";i:2;s:10:"i18nblocks";i:3;s:11:"i18nstrings";}s:7:"package";s:13:"Multilanguage";s:4:"core";s:3:"6.x";s:7:"version";s:8:"6.x-1.10";s:7:"project";s:4:"i18n";s:9:"datestamp";s:10:"1318336004";s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";},',
    ],
    [
      'filename' => 'sites/all/modules/variable/variable.module ',
      'name' => 'variable',
      'type' => 'module',
      'owner' => '',
      'status' => '1',
      'throttle' => '0',
      'bootstrap' => '0',
      'schema_version' => '-1',
      'weight' => '0',
      'info' => 'a:9:{s:4:"name";s:12:"Variable API";s:11:"description";s:12:"Variable API";s:4:"core";s:3:"6.x";s:7:"version";s:14:"6.x-1.0-alpha1";s:7:"project";s:8:"variable";s:9:"datestamp";s:10:"1414059742";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}',
    ],
  ];
  $info = unserialize('a:9:{s:4:"name";s:12:"Variable API";s:11:"description";s:12:"Variable API";s:4:"core";s:3:"6.x";s:7:"version";s:14:"6.x-1.0-alpha1";s:7:"project";s:8:"variable";s:9:"datestamp";s:10:"1414059742";s:12:"dependencies";a:0:{}s:10:"dependents";a:0:{}s:3:"php";s:5:"4.3.5";}');
  $test[0]['expected_results'] = [
    [
      'filename' => 'sites/all/modules/variable/variable.module ',
      'name' => 'variable',
      'type' => 'module',
      'owner' => '',
      'status' => '1',
      'throttle' => '0',
      'bootstrap' => '0',
      'schema_version' => '-1',
      'weight' => '0',
      'info' => $info,
    ],
  ];
  $test[0]['expected_count'] = NULL;
  $test[0]['configuration'] = [
    'name' => 'variable',
  ];
  return $test;
}