public function BlockTranslationTest::providerSource in Drupal 9
Same name in this branch
- 9 core/modules/block/tests/src/Kernel/Plugin/migrate/source/d6/BlockTranslationTest.php \Drupal\Tests\block\Kernel\Plugin\migrate\source\d6\BlockTranslationTest::providerSource()
- 9 core/modules/block/tests/src/Kernel/Plugin/migrate/source/d7/BlockTranslationTest.php \Drupal\Tests\block\Kernel\Plugin\migrate\source\d7\BlockTranslationTest::providerSource()
Same name and namespace in other branches
- 8 core/modules/block/tests/src/Kernel/Plugin/migrate/source/d6/BlockTranslationTest.php \Drupal\Tests\block\Kernel\Plugin\migrate\source\d6\BlockTranslationTest::providerSource()
- 10 core/modules/block/tests/src/Kernel/Plugin/migrate/source/d6/BlockTranslationTest.php \Drupal\Tests\block\Kernel\Plugin\migrate\source\d6\BlockTranslationTest::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 BlockTest::providerSource
See also
\Drupal\Tests\migrate\Kernel\MigrateSourceTestBase::testSource
File
- core/
modules/ block/ tests/ src/ Kernel/ Plugin/ migrate/ source/ d6/ BlockTranslationTest.php, line 24
Class
- BlockTranslationTest
- Tests i18n block source plugin.
Namespace
Drupal\Tests\block\Kernel\Plugin\migrate\source\d6Code
public function providerSource() {
// Test data is the same as BlockTest, but with the addition of i18n_blocks.
$tests = parent::providerSource();
// The source data.
$tests[0]['source_data']['i18n_blocks'] = [
[
'ibid' => 1,
'module' => 'block',
'delta' => '1',
'type' => 0,
'language' => 'fr',
],
[
'ibid' => 2,
'module' => 'block',
'delta' => '2',
'type' => 0,
'language' => 'zu',
],
];
$tests[0]['source_data']['variables'] = [
[
'name' => 'default_theme',
'value' => 's:7:"garland";',
],
];
// The expected results.
$tests[0]['expected_data'] = [
[
'bid' => 1,
'module' => 'block',
'delta' => '1',
'title' => 'Test Title 01',
'ibid' => 1,
'type' => '0',
'language' => 'fr',
'default_theme' => 'Garland',
],
[
'bid' => 2,
'module' => 'block',
'delta' => '2',
'theme' => 'garland',
'title' => 'Test Title 02',
'ibid' => 2,
'type' => '0',
'language' => 'zu',
'default_theme' => 'Garland',
],
];
return $tests;
}