Commit abbdab75 authored by catch's avatar catch
Browse files

Issue #3138795 by quietone, sja112: d6_term_node_revision references non-existent migration

(cherry picked from commit 9ec469a0)
parent 0ca0f2c7
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -312,7 +312,6 @@ contrained
contribs
controlgroup
coord
copmplete
corefake
coretest
corge
+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);
  }

}