public function CommentTest::providerSource in Drupal 10
Same name in this branch
- 10 core/modules/comment/tests/src/Kernel/Plugin/migrate/source/d6/CommentTest.php \Drupal\Tests\comment\Kernel\Plugin\migrate\source\d6\CommentTest::providerSource()
- 10 core/modules/comment/tests/src/Kernel/Plugin/migrate/source/d7/CommentTest.php \Drupal\Tests\comment\Kernel\Plugin\migrate\source\d7\CommentTest::providerSource()
Same name and namespace in other branches
- 8 core/modules/comment/tests/src/Kernel/Plugin/migrate/source/d6/CommentTest.php \Drupal\Tests\comment\Kernel\Plugin\migrate\source\d6\CommentTest::providerSource()
- 9 core/modules/comment/tests/src/Kernel/Plugin/migrate/source/d6/CommentTest.php \Drupal\Tests\comment\Kernel\Plugin\migrate\source\d6\CommentTest::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/ comment/ tests/ src/ Kernel/ Plugin/ migrate/ source/ d6/ CommentTest.php, line 23
Class
- CommentTest
- Tests D6 comment source plugin.
Namespace
Drupal\Tests\comment\Kernel\Plugin\migrate\source\d6Code
public function providerSource() {
$tests = [];
// The source data.
$tests[0]['source_data']['comments'] = [
[
'cid' => 1,
'pid' => 0,
'nid' => 2,
'uid' => 3,
'subject' => 'subject value 1',
'comment' => 'comment value 1',
'hostname' => 'hostname value 1',
'timestamp' => 1382255613,
'status' => 0,
'thread' => '',
'name' => '',
'mail' => '',
'homepage' => '',
'format' => 'test_format1',
'type' => 'story',
],
[
'cid' => 2,
'pid' => 1,
'nid' => 3,
'uid' => 4,
'subject' => 'subject value 2',
'comment' => 'comment value 2',
'hostname' => 'hostname value 2',
'timestamp' => 1382255662,
'status' => 0,
'thread' => '',
'name' => '',
'mail' => '',
'homepage' => '',
'format' => 'test_format2',
'type' => 'page',
],
];
$tests[0]['source_data']['node'] = [
[
'nid' => 2,
'type' => 'story',
'language' => 'en',
],
[
'nid' => 3,
'type' => 'page',
'language' => 'fr',
],
];
// The expected results.
$tests[0]['expected_data'] = [
[
'cid' => 1,
'pid' => 0,
'nid' => 2,
'uid' => 3,
'subject' => 'subject value 1',
'comment' => 'comment value 1',
'hostname' => 'hostname value 1',
'timestamp' => 1382255613,
'status' => 1,
'thread' => '',
'name' => '',
'mail' => '',
'homepage' => '',
'format' => 'test_format1',
'type' => 'story',
'language' => 'en',
],
[
'cid' => 2,
'pid' => 1,
'nid' => 3,
'uid' => 4,
'subject' => 'subject value 2',
'comment' => 'comment value 2',
'hostname' => 'hostname value 2',
'timestamp' => 1382255662,
'status' => 1,
'thread' => '',
'name' => '',
'mail' => '',
'homepage' => '',
'format' => 'test_format2',
'type' => 'page',
'language' => 'fr',
],
];
return $tests;
}