public function PaymentTransactionTest::providerSource in Commerce Migrate 8.2
Same name and namespace in other branches
- 3.1.x modules/commerce/tests/src/Kernel/Plugin/migrate/source/commerce1/PaymentTransactionTest.php \Drupal\Tests\commerce_migrate_commerce\Kernel\Plugin\migrate\source\commerce1\PaymentTransactionTest::providerSource()
- 3.0.x modules/commerce/tests/src/Kernel/Plugin/migrate/source/commerce1/PaymentTransactionTest.php \Drupal\Tests\commerce_migrate_commerce\Kernel\Plugin\migrate\source\commerce1\PaymentTransactionTest::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/ PaymentTransactionTest.php, line 25
Class
- PaymentTransactionTest
- Tests the Commerce 1 line item source plugin.
Namespace
Drupal\Tests\commerce_migrate_commerce\Kernel\Plugin\migrate\source\commerce1Code
public function providerSource() {
$tests = [];
$tests[0]['source_data']['commerce_payment_transaction'] = [
[
'transaction_id' => '1',
'revision_id' => '1',
'uid' => '1',
'order_id' => '2',
'payment_method' => 'commerce_payment_example',
'instance_id' => 'commerce_payment_example|commerce_payment_commerce_payment_example',
'remote_id' => NULL,
'message' => 'Number: @number<br/>Expiration: @month/@year',
'message_variables' => 'a:3:{s:7:"@number";s:16:"4111111111111111";s:6:"@month";s:2:"06";s:5:"@year";s:4:"2012";}',
'amount' => '425',
'currency_code' => 'NZD',
'status' => 'success',
'remote_status' => NULL,
'payload' => 'a:0:{}',
'created' => '1492868907',
'changed' => '1498620003',
'data' => NULL,
],
];
$tests[0]['source_data']['field_config'] = [
[
'id' => '2',
'field_name' => 'commerce_unit_price',
'type' => 'commerce_price',
'module' => 'commerce_price',
'active' => '1',
'storage_type' => 'field_sql_storage',
'storage_module' => 'field_sql_storage',
'storage_active' => '1',
'locked' => '1',
'data' => 'a:6:{s:12:"entity_types";a:1:{i:0;s:18:"commerce_line_item";}s:12:"translatable";b:0;s:8:"settings";a:0:{}s:7:"storage";a:4:{s:4:"type";s:17:"field_sql_storage";s:8:"settings";a:0:{}s:6:"module";s:17:"field_sql_storage";s:6:"active";i:1;}s:12:"foreign keys";a:0:{}s:7:"indexes";a:1:{s:14:"currency_price";a:2:{i:0;s:6:"amount";i:1;s:13:"currency_code";}}}',
'cardinality' => '1',
'translatable' => '0',
'deleted' => '0',
],
];
$tests[0]['source_data']['field_config_instance'] = [
[
'id' => '2',
'field_id' => '2',
'field_name' => 'commerce_unit_price',
'entity_type' => 'product',
'bundle' => 'product',
'data' => 'a:0:{};',
'deleted' => '0',
],
];
$tests[0]['source_data']['field_data_message_commerce_order'] = [
[
'entity_type' => 'message',
'bundle' => 'commerce_order_created',
'deleted' => '0',
'entity_id' => '2',
'revision_id' => 'product',
'language' => 'und',
'delta' => 0,
'message_commerce_order_target_id' => 1,
],
];
// The expected results.
$tests[0]['expected_data'] = [
[
'transaction_id' => '1',
'revision_id' => '1',
'uid' => '1',
'order_id' => '2',
'payment_method' => 'commerce_payment_example',
'instance_id' => 'commerce_payment_example|commerce_payment_commerce_payment_example',
'remote_id' => NULL,
'message' => 'Number: @number<br/>Expiration: @month/@year',
'message_variables' => 'a:3:{s:7:"@number";s:16:"4111111111111111";s:6:"@month";s:2:"06";s:5:"@year";s:4:"2012";}',
'amount' => '425',
'currency_code' => 'NZD',
'status' => 'success',
'remote_status' => NULL,
'payload' => 'a:0:{}',
'created' => '1492868907',
'changed' => '1498620003',
'data' => NULL,
],
];
return $tests;
}