You are here

public function AttributeValueTest::providerSource in Commerce Migrate 3.1.x

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

Class

AttributeValueTest
Tests the Ubercart 6 attribute value 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',
      ],
    ],
    'uc_attribute_options' => [
      [
        'aid' => '1',
        'oid' => '1',
        'name' => 'Blue',
        'cost' => '2.00',
        'price' => '4.00',
        'weight' => '0',
        'ordering' => '5',
      ],
      [
        'aid' => '5',
        'oid' => '5',
        'name' => 'Small',
        'cost' => '5.00',
        'price' => '6.00',
        'weight' => '9',
        'ordering' => '1',
      ],
    ],
  ];
  $tests[0]['expected_data'] = [
    [
      'aid' => '1',
      'label' => 'Color',
      'ordering' => '5',
      'required' => '1',
      'display' => '3',
      'description' => 'Color description',
      'uco_aid' => '1',
      'oid' => '1',
      'cost' => '2.00',
      'price' => '4.00',
      'weight' => '0',
      'uco_ordering' => '5',
      'attribute_aid' => '1',
      'attribute_name' => 'color',
      'option_aid' => '1',
      'option_name' => 'Blue',
    ],
    [
      'aid' => '5',
      'label' => 'Size',
      'ordering' => '1',
      'required' => '1',
      'display' => '2',
      'description' => 'Size description',
      'uco_aid' => '5',
      'oid' => '5',
      'cost' => '5.00',
      'price' => '6.00',
      'weight' => '9',
      'uco_ordering' => '1',
      'attribute_aid' => '5',
      'attribute_name' => 'size',
      'option_aid' => '5',
      'option_name' => 'Small',
    ],
  ];
  return $tests;
}