You are here

public function FieldCollectionItemSourceTest::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/FieldCollectionItemSourceTest.php, line 25

Class

FieldCollectionItemSourceTest
Test the field_collection_item source plugin.

Namespace

Drupal\Tests\paragraphs\Kernel\migrate

Code

public function providerSource() {
  $data = $this
    ->getSourceData();
  $data[0]['expected_results'] = [
    [
      'item_id' => '1',
      'revision_id' => '1',
      'field_name' => 'field_field_collection_field',
      'bundle' => 'field_collection_field',
      'archived' => '0',
      'field_text' => [
        0 => [
          'value' => 'FCID1R1 text',
        ],
      ],
    ],
    [
      'item_id' => '2',
      'revision_id' => '3',
      'field_name' => 'field_field_collection_field',
      'bundle' => 'field_collection_field',
      'archived' => '0',
      'field_text' => [
        0 => [
          'value' => 'FCID2R3 text',
        ],
      ],
    ],
  ];
  return $data;
}