class ParagraphContentMigrationTest

Test 'classic' Paragraph content migration.

@group paragraphs @require entity_reference_revisions

Hierarchy

Expanded class hierarchy of ParagraphContentMigrationTest

File

paragraphs/tests/src/Kernel/migrate/ParagraphContentMigrationTest.php, line 15

Namespace

Drupal\Tests\paragraphs\Kernel\migrate
View source
class ParagraphContentMigrationTest extends ParagraphsMigrationTestBase {
  use ParagraphsNodeMigrationAssertionsTrait;

  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'comment',
    'datetime',
    'datetime_range',
    'field',
    'file',
    'image',
    'link',
    'menu_ui',
    'node',
    'options',
    'system',
    'taxonomy',
    'telephone',
    'text',
    'user',
    'content_translation',
    'language',
  ];

  /**
   * {@inheritdoc}
   */
  public function setUp() : void {
    parent::setUp();
    $this
      ->installEntitySchema('file');
    $this
      ->installEntitySchema('node');
    $this
      ->installEntitySchema('paragraph');
    $this
      ->installEntitySchema('comment');
    $this
      ->installSchema('node', [
      'node_access',
    ]);
    $this
      ->installSchema('comment', [
      'comment_entity_statistics',
    ]);
    $this
      ->executeMigrationWithDependencies('d7_field_collection_revisions');
    $this
      ->executeMigrationWithDependencies('d7_paragraphs_revisions');
    $this
      ->executeMigrationWithDependencies('d7_node:paragraphs_test');
    $this
      ->prepareMigrations([
      'd7_node:article' => [],
      'd7_node:blog' => [],
      'd7_node:book' => [],
      'd7_node:forum' => [],
      'd7_node:test_content_type' => [],
    ]);
  }

  /**
   * Tests the migration of a content with paragraphs and field collections.
   *
   * @dataProvider providerParagraphContentMigration
   */
  public function testParagraphContentMigration($migration_to_run) {
    if ($migration_to_run) {
      $this
        ->executeMigration($migration_to_run);
    }
    $this
      ->assertNode8Paragraphs();
    $this
      ->assertNode9Paragraphs();
    $node_9 = Node::load(9);
    if ($node_9 instanceof TranslatableInterface && !empty($node_9
      ->getTranslationLanguages(FALSE))) {
      $this
        ->assertIcelandicNode9Paragraphs();
    }
  }

  /**
   * Provides data and expected results for testing paragraph migrations.
   *
   * @return string[][]
   *   The node migration to run.
   */
  public function providerParagraphContentMigration() {
    return [
      [
        'node_migration' => NULL,
      ],
      [
        'node_migration' => 'd7_node_revision:paragraphs_test',
      ],
      [
        'node_migration' => 'd7_node_translation:paragraphs_test',
      ],
      [
        'node_migration' => 'd7_node_complete:paragraphs_test',
      ],
    ];
  }

}

Members

Name Modifiers Type Description Overridessort ascending
ParagraphContentMigrationTest::setUp public function Overrides ParagraphsMigrationTestBase::setUp
ParagraphContentMigrationTest::testParagraphContentMigration public function Tests the migration of a content with paragraphs and field collections.
ParagraphContentMigrationTest::providerParagraphContentMigration public function Provides data and expected results for testing paragraph migrations.
ParagraphsNodeMigrationAssertionsTrait::assertNode8Paragraphs protected function Assertions on node 8.
ParagraphsNodeMigrationAssertionsTrait::assertNode9Paragraphs protected function Assertions of node 9.
ParagraphsNodeMigrationAssertionsTrait::assertIcelandicNode9Paragraphs protected function Assertions of the Icelandic translation of node 9.
ParagraphsNodeMigrationAssertionsTrait::getReferencedEntities protected function Get the referred entities.
ParagraphsMigrationTestBase::assertParagraphBundleExists protected function Check to see if paragraph types were created.
ParagraphsMigrationTestBase::assertParagraphEntityFieldExists protected function Check if a field storage config entity was created for the paragraph.
ParagraphsMigrationTestBase::assertParagraphFieldExists protected function Check if a field storage entity was created for the paragraph fields.
ParagraphsMigrationTestBase::assertFieldInstanceExists protected function Test if the given field instance was created.
ParagraphsMigrationTestBase::executeMigrationWithDependencies protected function Execute a migration's dependencies followed by the migration.
ParagraphsMigrationTestBase::executeMigrationDependencies protected function Find and execute a migration's dependencies.
ParagraphsMigrationTestBase::prepareMigration protected function
ParagraphContentMigrationTest::$modules protected static property Overrides ParagraphsMigrationTestBase::$modules