Upgrade6Test.php

Same filename in this branch
  1. 11.x core/modules/migrate_drupal_ui/tests/src/Functional/d6/Upgrade6Test.php
Same filename and directory in other branches
  1. 9 core/modules/migrate_drupal_ui/tests/src/Functional/d6/Upgrade6Test.php
  2. 8.9.x core/modules/migrate_drupal_ui/tests/src/Functional/d6/Upgrade6Test.php
  3. 10 core/modules/forum/tests/src/Functional/migrate_drupal/d6/Upgrade6Test.php
  4. 10 core/modules/migrate_drupal_ui/tests/src/Functional/d6/Upgrade6Test.php

Namespace

Drupal\Tests\forum\Functional\migrate_drupal\d6

File

core/modules/forum/tests/src/Functional/migrate_drupal/d6/Upgrade6Test.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\forum\Functional\migrate_drupal\d6;

use Drupal\Tests\migrate_drupal_ui\Functional\MigrateUpgradeExecuteTestBase;

/**
 * Tests Drupal 6 upgrade using the migrate UI.
 *
 * The test method is provided by the MigrateUpgradeTestBase class.
 *
 * @group forum
 * @group #slow
 * @group legacy
 */
class Upgrade6Test extends MigrateUpgradeExecuteTestBase {
    
    /**
     * {@inheritdoc}
     */
    protected static $modules = [
        'forum',
        'migrate_drupal_ui',
    ];
    
    /**
     * The entity storage for node.
     *
     * @var \Drupal\Core\Entity\EntityStorageInterface
     */
    protected $nodeStorage;
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() : void {
        parent::setUp();
        $this->loadFixture($this->getModulePath('forum') . '/tests/fixtures/drupal6.php');
    }
    
    /**
     * {@inheritdoc}
     */
    protected function getSourceBasePath() {
        return __DIR__ . '/files';
    }
    
    /**
     * {@inheritdoc}
     */
    protected function getEntityCounts() {
        return [
            'action' => 27,
            'base_field_override' => 22,
            'block' => 33,
            'block_content' => 1,
            'block_content_type' => 1,
            'comment' => 4,
            'comment_type' => 8,
            'contact_form' => 2,
            'contact_message' => 0,
            'date_format' => 12,
            'editor' => 2,
            'entity_form_display' => 18,
            'entity_form_mode' => 1,
            'entity_view_display' => 34,
            'entity_view_mode' => 11,
            'field_config' => 41,
            'field_storage_config' => 25,
            'file' => 1,
            'filter_format' => 7,
            'image_style' => 6,
            'menu' => 8,
            'menu_link_content' => 1,
            'node' => 3,
            'node_type' => 7,
            'path_alias' => 4,
            'search_page' => 3,
            'shortcut' => 2,
            'shortcut_set' => 1,
            'taxonomy_term' => 7,
            'taxonomy_vocabulary' => 4,
            'user' => 3,
            'user_role' => 4,
            'view' => 14,
        ];
    }
    
    /**
     * {@inheritdoc}
     */
    protected function getEntityCountsIncremental() {
        return [];
    }
    
    /**
     * {@inheritdoc}
     */
    protected function getAvailablePaths() {
        return [
            'Block',
            'Comment',
            'Content',
            'Date',
            'Date API',
            'Date Timezone',
            'Email',
            'Event',
            'FileField',
            'Filter',
            'Forum',
            'ImageAPI',
            'ImageCache',
            'ImageField',
            'Menu',
            'Node',
            'Path',
            'Search',
            'System',
            'Taxonomy',
            'Text',
            'Upload',
            'User',
            'Variable admin',
        ];
    }
    
    /**
     * {@inheritdoc}
     */
    protected function getMissingPaths() {
        return [];
    }
    
    /**
     * Executes all steps of migrations upgrade.
     */
    public function testUpgrade() {
        // Start the upgrade process.
        $this->submitCredentialForm();
        $session = $this->assertSession();
        $this->submitForm([], 'I acknowledge I may lose data. Continue anyway.');
        $session->statusCodeEquals(200);
        // Test the review form.
        $this->assertReviewForm();
        $this->submitForm([], 'Perform upgrade');
        $this->assertUpgrade($this->getEntityCounts());
    }

}

Classes

Title Deprecated Summary
Upgrade6Test Tests Drupal 6 upgrade using the migrate UI.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.