public function ExtractTest::getDefinition in Drupal 8
Same name and namespace in other branches
- 9 core/modules/migrate/tests/src/Kernel/process/ExtractTest.php \Drupal\Tests\migrate\Kernel\process\ExtractTest::getDefinition()
- 10 core/modules/migrate/tests/src/Kernel/process/ExtractTest.php \Drupal\Tests\migrate\Kernel\process\ExtractTest::getDefinition()
Returns test migration definition.
Return value
array
1 call to ExtractTest::getDefinition()
- ExtractTest::testMultipleValueExplode in core/modules/ migrate/ tests/ src/ Kernel/ process/ ExtractTest.php 
- Tests multiple value handling.
File
- core/modules/ migrate/ tests/ src/ Kernel/ process/ ExtractTest.php, line 26 
Class
- ExtractTest
- Tests the extract process plugin.
Namespace
Drupal\Tests\migrate\Kernel\processCode
public function getDefinition() {
  return [
    'source' => [
      'plugin' => 'embedded_data',
      'data_rows' => [],
      'ids' => [
        'id' => [
          'type' => 'string',
        ],
      ],
    ],
    'process' => [
      'first' => [
        'plugin' => 'extract',
        'index' => [
          0,
        ],
        'source' => 'simple_array',
      ],
      'second' => [
        'plugin' => 'extract',
        'index' => [
          1,
        ],
        'source' => 'complex_array',
      ],
    ],
    'destination' => [
      'plugin' => 'config',
      'config_name' => 'migrate_test.settings',
    ],
  ];
}