You are here

public function AttributeTest::providerSource in Commerce Migrate 8.2

Same name and namespace in other branches
  1. 3.1.x modules/ubercart/tests/src/Kernel/Plugin/migrate/source/AttributeTest.php \Drupal\Tests\commerce_migrate_ubercart\Kernel\Plugin\migrate\source\AttributeTest::providerSource()
  2. 3.0.x modules/ubercart/tests/src/Kernel/Plugin/migrate/source/AttributeTest.php \Drupal\Tests\commerce_migrate_ubercart\Kernel\Plugin\migrate\source\AttributeTest::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/ubercart/tests/src/Kernel/Plugin/migrate/source/AttributeTest.php, line 24

Class

AttributeTest
Tests the Ubercart 6 attribute source plugin.

Namespace

Drupal\Tests\commerce_migrate_ubercart\Kernel\Plugin\migrate\source

Code

public function providerSource() {
  $tests = [];
  $tests[0]['source_data']['uc_attributes'] = [
    [
      'aid' => '1',
      'name' => 'color',
      'label' => 'Color',
      'ordering' => '5',
      'required' => '1',
      'display' => '3',
      'description' => 'Color description',
    ],
    [
      'aid' => '5',
      'name' => 'size',
      'label' => 'Size',
      'ordering' => '1',
      'required' => '1',
      'display' => '2',
      'description' => 'Size description',
    ],
  ];
  $tests[0]['expected_data'] = $tests[0]['source_data']['uc_attributes'];
  return $tests;
}