diff --git a/core/modules/migrate/tests/src/Kernel/Plugin/MigrationProvidersExistTest.php b/core/modules/migrate/tests/src/Kernel/Plugin/MigrationProvidersExistTest.php
index 19a8b24777..1b4aaa35e3 100644
--- a/core/modules/migrate/tests/src/Kernel/Plugin/MigrationProvidersExistTest.php
+++ b/core/modules/migrate/tests/src/Kernel/Plugin/MigrationProvidersExistTest.php
@@ -70,11 +70,11 @@ public function testProvidersExist() {
   public function testFieldProvidersExist() {
     $expected_mappings = [
       'userreference' => [
-        'source_module' => 'user_reference',
+        'source_module' => 'userreference',
         'destination_module' => 'core',
       ],
       'nodereference' => [
-        'source_module' => 'node_reference',
+        'source_module' => 'nodereference',
         'destination_module' => 'core',
       ],
       'optionwidgets' => [
diff --git a/core/modules/migrate_drupal/src/Plugin/migrate/field/NodeReference.php b/core/modules/migrate_drupal/src/Plugin/migrate/field/NodeReference.php
index ba69b7852c..d2b3a3f53d 100644
--- a/core/modules/migrate_drupal/src/Plugin/migrate/field/NodeReference.php
+++ b/core/modules/migrate_drupal/src/Plugin/migrate/field/NodeReference.php
@@ -11,7 +11,7 @@
  *   type_map = {
  *     "nodereference" = "entity_reference",
  *   },
- *   source_module = "node_reference",
+ *   source_module = "nodereference",
  *   destination_module = "core",
  * )
  */
diff --git a/core/modules/migrate_drupal/src/Plugin/migrate/field/UserReference.php b/core/modules/migrate_drupal/src/Plugin/migrate/field/UserReference.php
index 0c8e9ba705..bead7bc494 100644
--- a/core/modules/migrate_drupal/src/Plugin/migrate/field/UserReference.php
+++ b/core/modules/migrate_drupal/src/Plugin/migrate/field/UserReference.php
@@ -11,7 +11,7 @@
  *   type_map = {
  *     "userreference" = "entity_reference",
  *   },
- *   source_module = "user_reference",
+ *   source_module = "userreference",
  *   destination_module = "core",
  * )
  */
diff --git a/core/modules/migrate_drupal_ui/src/Form/MigrateUpgradeForm.php b/core/modules/migrate_drupal_ui/src/Form/MigrateUpgradeForm.php
index 6bfaf42f1d..50d8e688a6 100644
--- a/core/modules/migrate_drupal_ui/src/Form/MigrateUpgradeForm.php
+++ b/core/modules/migrate_drupal_ui/src/Form/MigrateUpgradeForm.php
@@ -66,6 +66,59 @@ class MigrateUpgradeForm extends ConfirmFormBase {
    */
   protected $moduleHandler;
 
+  /**
+   * List of modules, themes and profiles that do not need an upgrade path.
+   */
+  public static $noUpgradePath = [
+    '6' => [
+      'blog',
+      'color',
+      'date_timezone',
+      'date_api',
+      'help',
+      'i18n',
+      'i18nstrings',
+      'imageapi',
+      'minimal',
+      'number',
+      'openid',
+      'php',
+      'poll',
+      'profile',
+      'trigger',
+      'tracker',
+      'standard',
+      'variable',
+      'variable_admin',
+      'views',
+      'views_export',
+      'views_ui',
+    ],
+    '7' => [
+      'blog',
+      'contextual',
+      'dashboard',
+      'date_api',
+      'entity',
+      'field_ui',
+      'help',
+      'minimal',
+      'openid',
+      'overlay',
+      'php',
+      'poll',
+      'profile',
+      'simpletest',
+      'standard',
+      'syslog',
+      'trigger',
+      'toolbar',
+      'update',
+      'views',
+      'views_ui',
+    ],
+  ];
+
   /**
    * Constructs the MigrateUpgradeForm.
    *
@@ -507,9 +560,18 @@ public function buildConfirmForm(array $form, FormStateInterface $form_state) {
     // Get the source_module and destination_module from the field plugins.
     $definitions = $this->fieldPluginManager->getDefinitions();
     foreach ($definitions as $definition) {
-      $source_module = $definition['source_module'];
-      $destination_module = $definition['destination_module'];
-      $table_data[$source_module][$destination_module][$definition['id']] = $definition['id'];
+      if (in_array($version, $definition['core'])) {
+        $source_module = $definition['source_module'];
+        $destination_module = $definition['destination_module'];
+        $table_data[$source_module][$destination_module][$definition['id']] = $definition['id'];
+      }
+    }
+
+    // Add source_module and destination_module for modules that do not need an
+    // upgrade path.
+    $no_upgrade_path = ($version == '6') ? static::$noUpgradePath['6'] : static::$noUpgradePath['7'];
+    foreach ($no_upgrade_path as $module) {
+      $table_data[$module]['core'][$module] = $module;
     }
 
     // Sort the table by source module names and within that destination
@@ -521,10 +583,6 @@ public function buildConfirmForm(array $form, FormStateInterface $form_state) {
 
     // Fetch the system data at the first opportunity.
     $system_data = $form_state->get('system_data');
-    // Remove core profiles from the system data.
-    foreach (['standard', 'minimal'] as $profile) {
-      unset($system_data['module'][$profile]);
-    }
 
     $unmigrated_source_modules = array_diff_key($system_data['module'], $table_data);
 
diff --git a/core/modules/migrate_drupal_ui/tests/src/Functional/MigrateUpgradeTestBase.php b/core/modules/migrate_drupal_ui/tests/src/Functional/MigrateUpgradeTestBase.php
index d5cc93908a..f24fe6a9a7 100644
--- a/core/modules/migrate_drupal_ui/tests/src/Functional/MigrateUpgradeTestBase.php
+++ b/core/modules/migrate_drupal_ui/tests/src/Functional/MigrateUpgradeTestBase.php
@@ -11,6 +11,7 @@
  * Provides a base class for testing migration upgrades in the UI.
  */
 abstract class MigrateUpgradeTestBase extends BrowserTestBase {
+
   use MigrationConfigurationTrait;
 
   /**
@@ -44,6 +45,20 @@
     'migration_provider_test',
   ];
 
+  /**
+   * Count of modules that will not be upgraded.
+   *
+   * @var array
+   */
+  public static $missing_count;
+
+  /**
+   * Count of modules that will be upgraded.
+   *
+   * @var array
+   */
+  public static $available_count;
+
   /**
    * {@inheritdoc}
    */
@@ -196,6 +211,10 @@ public function testMigrateUpgrade() {
       $session->elementNotExists('xpath', "//span[contains(@class, 'checked') and text() = '$missing']");
     }
 
+    // Test the total count of missing and available paths.
+    $session->elementsCount('xpath', "//span[contains(@class, 'upgrade-analysis-report__status-icon--warning')]", (int) static::$missing_count);
+    $session->elementsCount('xpath', "//span[contains(@class, 'upgrade-analysis-report__status-icon--checked')]", (int) static::$available_count);
+
     $this->drupalPostForm(NULL, [], t('Perform upgrade'));
     $this->assertText(t('Congratulations, you upgraded Drupal!'));
 
diff --git a/core/modules/migrate_drupal_ui/tests/src/Functional/d6/MigrateUpgrade6Test.php b/core/modules/migrate_drupal_ui/tests/src/Functional/d6/MigrateUpgrade6Test.php
index 3717606cd8..3c50a9b80e 100644
--- a/core/modules/migrate_drupal_ui/tests/src/Functional/d6/MigrateUpgrade6Test.php
+++ b/core/modules/migrate_drupal_ui/tests/src/Functional/d6/MigrateUpgrade6Test.php
@@ -14,6 +14,16 @@
  */
 class MigrateUpgrade6Test extends MigrateUpgradeTestBase {
 
+  /**
+   * {@inheritdoc}
+   */
+  public static $missing_count = 6;
+
+  /**
+   * {@inheritdoc}
+   */
+  public static $available_count = 53;
+
   /**
    * {@inheritdoc}
    */
@@ -93,25 +103,19 @@ protected function getAvailablePaths() {
       'date',
       'dblog',
       'email',
-      'entityreference',
-      'file',
       'filefield',
       'filter',
+      'forum',
       'i18ntaxonomy',
-      'image',
       'imagecache',
       'imagefield',
       'link',
-      'list',
       'menu',
       'locale',
       'node',
-      'node_reference',
-      'number',
-      'options',
+      'nodereference',
       'optionwidgets',
       'path',
-      'phone',
       'profile',
       'search',
       'system',
@@ -120,7 +124,27 @@ protected function getAvailablePaths() {
       'translation',
       'upload',
       'user',
-      'user_reference',
+      'userreference',
+      // Modules that have no upgrade path.
+      'blog',
+      'color',
+      'date_timezone',
+      'date_api',
+      'help',
+      'i18n',
+      'i18nstrings',
+      'imageapi',
+      'openid',
+      'php',
+      'poll',
+      'profile',
+      'trigger',
+      'tracker',
+      'variable',
+      'variable_admin',
+      'views',
+      'views_export',
+      'views_ui',
     ];
   }
 
@@ -129,19 +153,10 @@ protected function getAvailablePaths() {
    */
   protected function getMissingPaths() {
     return [
-      'date_api',
-      'date_timezone',
       'event',
-      'i18n',
       'i18nblocks',
       'i18ncck',
       'i18ncontent',
-      'i18nmenu',
-      'i18nprofile',
-      'i18nstrings',
-      'imageapi',
-      'php',
-      'variable_admin',
     ];
   }
 
diff --git a/core/modules/migrate_drupal_ui/tests/src/Functional/d7/MigrateUpgrade7Test.php b/core/modules/migrate_drupal_ui/tests/src/Functional/d7/MigrateUpgrade7Test.php
index 3cfe4bc6d7..e4eee77ce6 100644
--- a/core/modules/migrate_drupal_ui/tests/src/Functional/d7/MigrateUpgrade7Test.php
+++ b/core/modules/migrate_drupal_ui/tests/src/Functional/d7/MigrateUpgrade7Test.php
@@ -19,6 +19,16 @@ class MigrateUpgrade7Test extends MigrateUpgradeTestBase {
    */
   public static $modules = ['file'];
 
+  /**
+   * {@inheritdoc}
+   */
+  public static $missing_count = 4;
+
+  /**
+   * {@inheritdoc}
+   */
+  public static $available_count = 53;
+
   /**
    * {@inheritdoc}
    */
@@ -99,20 +109,16 @@ protected function getAvailablePaths() {
       'field',
       'field_sql_storage',
       'file',
-      'filefield',
       'filter',
       'forum',
       'image',
-      'imagefield',
       'link',
       'list',
       'locale',
       'menu',
       'node',
-      'node_reference',
       'number',
       'options',
-      'optionwidgets',
       'path',
       'phone',
       'search',
@@ -123,7 +129,26 @@ protected function getAvailablePaths() {
       'text',
       'translation',
       'user',
-      'user_reference',
+      'update',
+      // Modules that have no upgrade path.
+      'blog',
+      'contextual',
+      'dashboard',
+      'date_api',
+      'entity',
+      'field_ui',
+      'help',
+      'openid',
+      'overlay',
+      'php',
+      'poll',
+      'profile',
+      'simpletest',
+      'syslog',
+      'trigger',
+      'toolbar',
+      'views',
+      'views_ui',
     ];
   }
 
@@ -132,22 +157,9 @@ protected function getAvailablePaths() {
    */
   protected function getMissingPaths() {
     return [
-      'blog',
       'book',
       'color',
-      'contextual',
-      'date_api',
-      'entity',
-      'field_ui',
-      'help',
-      'php',
       'rdf',
-      'simpletest',
-      'syslog',
-      'toolbar',
-      'tracker',
-      'trigger',
-      'update',
     ];
   }
 
