Commit c30963fa authored by catch's avatar catch
Browse files

Issue #3138795 by quietone, sja112, jungle, longwave: d6_term_node_revision...

Issue #3138795 by quietone, sja112, jungle, longwave: d6_term_node_revision references non-existent migration
parent 6f609171
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@ process:
    -
      plugin: migration_lookup
      migration:
        - d6_node_copmplete
        - d6_node_complete
        - d6_node_revision
      source: vid
    -
+12 −0
Original line number Diff line number Diff line
@@ -64,4 +64,16 @@ public function testTermNode() {
    $this->assertSame('3', $node->field_vocabulary_2_i_1_[1]->target_id);
  }

  /**
   * Tests the Drupal 6 term-node association to Drupal 8 node revisions.
   */
  public function testTermNodeRevision() {
    $this->executeMigrations(['d6_term_node_revision']);

    $node = \Drupal::entityTypeManager()->getStorage('node')->loadRevision(2001);
    $this->assertCount(2, $node->field_vocabulary_3_i_2_);
    $this->assertSame('4', $node->field_vocabulary_3_i_2_[0]->target_id);
    $this->assertSame('5', $node->field_vocabulary_3_i_2_[1]->target_id);
  }

}