Skip to content
MigrateUpgrade7Test.php 3.37 KiB
Newer Older
namespace Drupal\Tests\migrate_drupal_ui\Functional\d7;
use Drupal\Tests\migrate_drupal_ui\Functional\MigrateUpgradeTestBase;

/**
 * Tests Drupal 7 upgrade using the migrate UI.
 *
 * The test method is provided by the MigrateUpgradeTestBase class.
 *
 * @group migrate_drupal_ui
 */
class MigrateUpgrade7Test extends MigrateUpgradeTestBase {

  /**
   * {@inheritdoc}
   */
  public static $modules = ['file'];

  /**
   * {@inheritdoc}
   */
  protected function setUp() {
    parent::setUp();
    $this->loadFixture(drupal_get_path('module', 'migrate_drupal') . '/tests/fixtures/drupal7.php');
  }

  /**
   * {@inheritdoc}
   */
  protected function getSourceBasePath() {
    return __DIR__ . '/files';
  }

  /**
   * {@inheritdoc}
   */
  protected function getEntityCounts() {
    return [
      'aggregator_item' => 10,
      'aggregator_feed' => 1,
      'block' => 25,
      'block_content' => 1,
      'block_content_type' => 1,
      'comment' => 1,
      // The 'standard' profile provides the 'comment' comment type, and the
      // migration creates 6 comment types, one per node type.
      // Module 'language' comes with 'en', 'und', 'zxx'. Migration adds 'is'.
      'configurable_language' => 4,
      'contact_form' => 3,
      'editor' => 2,
      'field_config' => 61,
      'field_storage_config' => 44,
      'filter_format' => 7,
      'image_style' => 6,
      'language_content_settings' => 2,
      'search_page' => 2,
      'shortcut' => 6,
      'shortcut_set' => 2,
      'entity_view_mode' => 14,
      'base_field_override' => 9,
  /**
   * {@inheritdoc}
   */
  protected function getAvailablePaths() {
    return [
      'aggregator',
      'block',
      'comment',
      'contact',
      'date',
      'dblog',
      'email',
      'entityreference',
      'field',
      'field_sql_storage',
      'file',
      'filefield',
      'filter',
      'forum',
      'image',
      'imagefield',
      'link',
      'list',
      'locale',
      'menu',
      'node',
      'node_reference',
      'number',
      'options',
      'optionwidgets',
      'path',
      'phone',
      'search',
      'shortcut',
      'statistics',
      'system',
      'taxonomy',
      'text',
      'translation',
      'user',
      'user_reference',
    ];
  }

  /**
   * {@inheritdoc}
   */
  protected function getMissingPaths() {
    return [
      'blog',
      'book',
      'color',
      'contextual',
      'date_api',
      'entity',
      'field_ui',
      'help',
      'php',
      'rdf',
      'simpletest',
      'syslog',
      'toolbar',
      'tracker',
      'trigger',
      'update',
    ];
  }

  /**
   * Executes all steps of migrations upgrade.
   */
  public function testMigrateUpgrade() {
    parent::testMigrateUpgrade();

    // Ensure migrated users can log in.
    $user = User::load(2);