You are here

public function ProfileTypeTest::providerSource in Commerce Migrate 8.2

Same name and namespace in other branches
  1. 3.1.x modules/commerce/tests/src/Kernel/Plugin/migrate/source/commerce1/ProfileTypeTest.php \Drupal\Tests\commerce_migrate_commerce\Kernel\Plugin\migrate\source\commerce1\ProfileTypeTest::providerSource()
  2. 3.0.x modules/commerce/tests/src/Kernel/Plugin/migrate/source/commerce1/ProfileTypeTest.php \Drupal\Tests\commerce_migrate_commerce\Kernel\Plugin\migrate\source\commerce1\ProfileTypeTest::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

modules/commerce/tests/src/Kernel/Plugin/migrate/source/commerce1/ProfileTypeTest.php, line 25

Class

ProfileTypeTest
Tests the Commerce 1 profile type source plugin.

Namespace

Drupal\Tests\commerce_migrate_commerce\Kernel\Plugin\migrate\source\commerce1

Code

public function providerSource() {
  $tests = [];
  $tests[0]['source_data']['commerce_customer_profile'] = [
    [
      'profile_id' => '1',
      'revision_id' => '1',
      'type' => 'customer',
      'uid' => '12',
      'status' => '1',
      'created' => '',
      'changed' => '1',
      'data' => NULL,
    ],
    [
      'profile_id' => '11',
      'revision_id' => '11',
      'type' => 'member',
      'uid' => '12',
      'status' => '1',
      'created' => '',
      'changed' => '1',
      'data' => NULL,
    ],
  ];

  // The expected results.
  $tests[0]['expected_data'] = [
    [
      'type' => 'customer',
    ],
    [
      'type' => 'member',
    ],
  ];
  return $tests;
}