installEntitySchema('node'); $this->installEntitySchema('taxonomy_term'); $this->installConfig(static::$modules); $this->installSchema('node', ['node_access']); $this->installSchema('system', ['sequences']); $this->executeMigration('d7_node_type'); FieldStorageConfig::create([ 'type' => 'entity_reference', 'field_name' => 'field_tags', 'entity_type' => 'node', 'settings' => [ 'target_type' => 'taxonomy_term', ], 'cardinality' => FieldStorageConfigInterface::CARDINALITY_UNLIMITED, ])->save(); FieldConfig::create([ 'entity_type' => 'node', 'field_name' => 'field_tags', 'bundle' => 'article', ])->save(); $this->executeMigrations([ 'd7_taxonomy_vocabulary', 'd7_taxonomy_term', 'd7_user_role', 'd7_user', 'd7_node:article', ]); } /** * Test node migration from Drupal 7 to 8. */ public function testMigration() { $node = Node::load(2); $this->assertTrue($node instanceof NodeInterface); $this->assertEqual(9, $node->field_tags[0]->target_id); $this->assertEqual(14, $node->field_tags[1]->target_id); $this->assertEqual(17, $node->field_tags[2]->target_id); } }