class ParagraphsFieldSettingsTest

Test the ParagraphFieldSettings Process Plugin.

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

Hierarchy

  • class \Drupal\Tests\paragraphs\Unit\migrate\ParagraphsFieldSettingsTest extends \Drupal\Tests\migrate\Unit\process\MigrateProcessTestCase

Expanded class hierarchy of ParagraphsFieldSettingsTest

File

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

Namespace

Drupal\Tests\paragraphs\Unit\migrate
View source
class ParagraphsFieldSettingsTest extends MigrateProcessTestCase {

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

  /**
   * Test setting target_type for paragraphs fields.
   */
  public function testParagraphsFieldSettings() {
    $this->row
      ->expects($this
      ->any())
      ->method('getSourceProperty')
      ->with('type')
      ->willReturn('paragraphs');
    $value = $this->plugin
      ->transform([], $this->migrateExecutable, $this->row, 'settings');
    $this
      ->assertEquals([
      'target_type' => 'paragraph',
    ], $value);
  }

  /**
   * Test leaving target_type empty for non-paragraphs fields.
   */
  public function testNonParagraphFieldSettings() {
    $this->row
      ->expects($this
      ->any())
      ->method('getSourceProperty')
      ->with('type')
      ->willReturn('something_else');
    $value = $this->plugin
      ->transform([], $this->migrateExecutable, $this->row, 'settings');
    $this
      ->assertEmpty($value);
  }

  /**
   * Test leaving target_type alone for other field types that may have set it.
   */
  public function testTaxonomyParagraphFieldSettings() {
    $this->row
      ->expects($this
      ->any())
      ->method('getSourceProperty')
      ->with('type')
      ->willReturn('taxonomy_term');
    $value = $this->plugin
      ->transform([
      'target_type' => 'some_preset_vaue',
    ], $this->migrateExecutable, $this->row, 'settings');
    $this
      ->assertEquals([
      'target_type' => 'some_preset_vaue',
    ], $value);
  }

}

Members

Namesort ascending Modifiers Type Description Overrides
ParagraphsFieldSettingsTest::testTaxonomyParagraphFieldSettings public function Test leaving target_type alone for other field types that may have set it.
ParagraphsFieldSettingsTest::testParagraphsFieldSettings public function Test setting target_type for paragraphs fields.
ParagraphsFieldSettingsTest::testNonParagraphFieldSettings public function Test leaving target_type empty for non-paragraphs fields.
ParagraphsFieldSettingsTest::setUp protected function