class FieldCollectionsFieldInstanceSettingsTest

Test the ParagraphFieldInstanceSettings Process Plugin.

@group paragraphs @coversDefaultClass \Drupal\paragraphs\Plugin\migrate\process\FieldCollectionFieldInstanceSettings

Hierarchy

Expanded class hierarchy of FieldCollectionsFieldInstanceSettingsTest

File

paragraphs/tests/src/Unit/migrate/FieldCollectionsFieldInstanceSettingsTest.php, line 14

Namespace

Drupal\Tests\paragraphs\Unit\migrate
View source
class FieldCollectionsFieldInstanceSettingsTest extends ProcessTestCase {

  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this->plugin = new FieldCollectionFieldInstanceSettings([], 'field_collection_field_instance_settings', [], $this->entityTypeBundleInfo);
  }

  /**
   * Test settings for field_collection field instances.
   *
   * @param array $source
   *   The data source.
   * @param array $expected
   *   The expected result.
   *
   * @dataProvider getData
   */
  public function testFieldCollectionInstanceFieldSettings(array $source, array $expected) {
    $this->row
      ->expects($this
      ->any())
      ->method('getSourceProperty')
      ->willReturnMap([
      [
        'type',
        'field_collection',
      ],
      [
        'field_name',
        'field_field_collection_bundle_one',
      ],
    ]);
    $value = $this->plugin
      ->transform($source, $this->migrateExecutable, $this->row, 'settings');
    $this
      ->assertEquals($expected, $value);
  }

  /**
   * Test that unexpected bundles trigger an exception.
   */
  public function testFieldCollectionBadBundle() {
    $this->row
      ->expects($this
      ->any())
      ->method('getSourceProperty')
      ->willReturnMap([
      [
        'type',
        'field_collection',
      ],
      [
        'bundle',
        'non_existent_bundle',
      ],
    ]);
    $this
      ->expectException(MigrateSkipRowException::class);
    $this
      ->expectExceptionMessage("No target paragraph bundle found for field_collection");
    $this->plugin
      ->transform([], $this->migrateExecutable, $this->row, 'settings');
  }

  /**
   * Data provider for unit test.
   *
   * @return array
   *   The source data and expected data.
   */
  public function getData() {
    $data = [
      'With no data' => [
        'source_data' => [],
        'expected_results' => [
          'handler_settings' => [
            'negate' => 0,
            'target_bundles' => [
              'field_collection_bundle_one' => 'field_collection_bundle_one',
            ],
            'target_bundles_drag_drop' => [
              'field_collection_bundle_one' => [
                'enabled' => TRUE,
                'weight' => 1,
              ],
              'paragraph_bundle_one' => [
                'enabled' => FALSE,
                'weight' => 2,
              ],
              'paragraph_bundle_two' => [
                'enabled' => FALSE,
                'weight' => 3,
              ],
              'field_collection_bundle_two' => [
                'enabled' => FALSE,
                'weight' => 4,
              ],
              'prexisting_bundle_one' => [
                'enabled' => FALSE,
                'weight' => 5,
              ],
              'prexisting_bundle_two' => [
                'enabled' => FALSE,
                'weight' => 6,
              ],
            ],
          ],
        ],
      ],
    ];
    return $data;
  }

}

Members

Name Modifiers Type Description Overridessort descending
FieldCollectionsFieldInstanceSettingsTest::setUp protected function Overrides ProcessTestCase::setUp
FieldCollectionsFieldInstanceSettingsTest::testFieldCollectionInstanceFieldSettings public function Test settings for field_collection field instances.
FieldCollectionsFieldInstanceSettingsTest::testFieldCollectionBadBundle public function Test that unexpected bundles trigger an exception.
FieldCollectionsFieldInstanceSettingsTest::getData public function Data provider for unit test.
ProcessTestCase::$entityTypeBundleInfo protected property The entity bundle info service.