You are here

public function FieldCollectionTypeSourceTest::providerSource in Paragraphs 8

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

tests/src/Kernel/migrate/FieldCollectionTypeSourceTest.php, line 25

Class

FieldCollectionTypeSourceTest
Test the field_collection_type source plugin.

Namespace

Drupal\Tests\paragraphs\Kernel\migrate

Code

public function providerSource() {
  $data = $this
    ->getSourceData();
  $data[0]['expected_results'] = [
    [
      'id' => '1',
      'field_name' => 'field_field_collection_field',
      'module' => 'field_collection',
      'active' => '1',
      'data' => 'serialized field collection field data',
      'name' => 'Field collection field',
      'bundle' => 'field_collection_field',
      'description' => '',
    ],
  ];
  return $data;
}