loadFixture(drupal_get_path('module', 'migrate_drupal') . '/tests/fixtures/drupal6.php'); } /** * {@inheritdoc} */ protected function getSourceBasePath() { return __DIR__ . '/files'; } /** * {@inheritdoc} */ protected function getEntityCounts() { return [ 'aggregator_item' => 1, 'aggregator_feed' => 1, 'block' => 35, 'block_content' => 2, 'block_content_type' => 1, 'comment' => 3, 'comment_type' => 3, 'contact_form' => 5, 'configurable_language' => 5, 'editor' => 2, 'field_config' => 73, 'field_storage_config' => 48, 'file' => 7, 'filter_format' => 7, 'image_style' => 5, 'language_content_settings' => 2, 'migration' => 105, 'node' => 16, 'node_type' => 13, 'rdf_mapping' => 7, 'search_page' => 2, 'shortcut' => 2, 'shortcut_set' => 1, 'action' => 22, 'menu' => 8, 'taxonomy_term' => 6, 'taxonomy_vocabulary' => 6, 'tour' => 4, 'user' => 7, 'user_role' => 6, 'menu_link_content' => 4, 'view' => 14, 'date_format' => 11, 'entity_form_display' => 19, 'entity_form_mode' => 1, 'entity_view_display' => 43, 'entity_view_mode' => 14, 'base_field_override' => 38, ]; } /** * Executes all steps of migrations upgrade. */ public function testMigrateUpgrade() { parent::testMigrateUpgrade(); // Ensure migrated users can log in. $user = User::load(2); $user->pass_raw = 'john.doe_pass'; $this->drupalLogin($user); } }