public function LanguageContentSettingsTest::providerSource in Drupal 9
Same name in this branch
- 9 core/modules/language/tests/src/Kernel/Plugin/migrate/source/d6/LanguageContentSettingsTest.php \Drupal\Tests\language\Kernel\Plugin\migrate\source\d6\LanguageContentSettingsTest::providerSource()
- 9 core/modules/language/tests/src/Kernel/Plugin/migrate/source/d7/LanguageContentSettingsTest.php \Drupal\Tests\language\Kernel\Plugin\migrate\source\d7\LanguageContentSettingsTest::providerSource()
Same name and namespace in other branches
- 8 core/modules/language/tests/src/Kernel/Plugin/migrate/source/d7/LanguageContentSettingsTest.php \Drupal\Tests\language\Kernel\Plugin\migrate\source\d7\LanguageContentSettingsTest::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/ language/ tests/ src/ Kernel/ Plugin/ migrate/ source/ d7/ LanguageContentSettingsTest.php, line 24
Class
- LanguageContentSettingsTest
- Tests menu source plugin.
Namespace
Drupal\Tests\language\Kernel\Plugin\migrate\source\d7Code
public function providerSource() {
$tests = [];
// The source data.
$tests[0]['source_data']['node_type'] = [
[
'type' => 'article',
'name' => 'Article',
'base' => 'node_content',
'module' => 'node',
'description' => 'Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.',
'help' => 'Help text for articles',
'has_title' => 1,
'title_label' => 'Title',
'custom' => 1,
'modified' => 1,
'locked' => 0,
'disabled' => 0,
'orig_type' => 'article',
],
[
'type' => 'blog',
'name' => 'Blog entry',
'base' => 'blog',
'module' => 'blog',
'description' => 'Use for multi-user blogs. Every user gets a personal blog.',
'help' => 'Blog away, good sir!',
'has_title' => 1,
'title_label' => 'Title',
'custom' => 0,
'modified' => 1,
'locked' => 1,
'disabled' => 0,
'orig_type' => 'blog',
],
];
foreach ($tests[0]['source_data']['node_type'] as $node_type) {
$tests[0]['expected_data'][] = [
'type' => $node_type['type'],
'language_content_type' => NULL,
'i18n_lock_node' => 0,
];
}
return $tests;
}