Upgrade7Test.php
Same filename in this branch
Same filename in other branches
- 9 core/modules/rdf/tests/src/Functional/Migrate/Upgrade7Test.php
- 9 core/modules/migrate_drupal_ui/tests/src/Functional/d7/Upgrade7Test.php
- 8.9.x core/modules/migrate_drupal_ui/tests/src/Functional/d7/Upgrade7Test.php
- 11.x core/modules/forum/tests/src/Functional/migrate_drupal/d7/Upgrade7Test.php
- 11.x core/modules/migrate_drupal_ui/tests/src/Functional/d7/Upgrade7Test.php
Namespace
Drupal\Tests\forum\Functional\migrate_drupal\d7File
-
core/
modules/ forum/ tests/ src/ Functional/ migrate_drupal/ d7/ Upgrade7Test.php
View source
<?php
declare (strict_types=1);
namespace Drupal\Tests\forum\Functional\migrate_drupal\d7;
use Drupal\Tests\migrate_drupal_ui\Functional\MigrateUpgradeExecuteTestBase;
/**
* Tests Drupal 7 upgrade using the migrate UI.
*
* The test method is provided by the MigrateUpgradeTestBase class.
*
* @group forum
* @group #slow
* @group legacy
*/
class Upgrade7Test 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();
// @todo remove in https://www.drupal.org/project/drupal/issues/3267040
// Delete the existing content made to test the ID Conflict form. Migrations
// are to be done on a site without content. The test of the ID Conflict
// form is being moved to its own issue which will remove the deletion
// of the created nodes.
// See https://www.drupal.org/project/drupal/issues/3087061.
$this->nodeStorage = $this->container
->get('entity_type.manager')
->getStorage('node');
$this->nodeStorage
->delete($this->nodeStorage
->loadMultiple());
$this->loadFixture($this->getModulePath('forum') . '/tests/fixtures/drupal7.php');
}
/**
* {@inheritdoc}
*/
protected function getSourceBasePath() {
return __DIR__ . '/files';
}
/**
* {@inheritdoc}
*/
protected function getEntityCounts() {
return [
'action' => 24,
'base_field_override' => 3,
'block' => 26,
'block_content' => 1,
'block_content_type' => 1,
'comment' => 0,
'comment_type' => 7,
'contact_form' => 2,
'contact_message' => 0,
'date_format' => 12,
'editor' => 2,
'entity_form_display' => 16,
'entity_form_mode' => 1,
'entity_view_display' => 24,
'entity_view_mode' => 11,
'field_config' => 26,
'field_storage_config' => 16,
'file' => 1,
'filter_format' => 7,
'image_style' => 7,
'menu' => 5,
'menu_link_content' => 3,
'node' => 2,
'node_type' => 6,
'path_alias' => 1,
'search_page' => 3,
'shortcut' => 2,
'shortcut_set' => 1,
'taxonomy_term' => 6,
'taxonomy_vocabulary' => 2,
'user' => 4,
'user_role' => 4,
'view' => 14,
];
}
/**
* {@inheritdoc}
*/
protected function getEntityCountsIncremental() {
return [];
}
/**
* {@inheritdoc}
*/
protected function getAvailablePaths() {
return [
'Block',
'Comment',
'Content translation',
'Date',
'Field SQL storage',
'Field',
'File',
'Filter',
'Forum',
'Image',
'Menu',
'Node',
'Options',
'Path',
'Search',
'System',
'Taxonomy',
'Text',
'User',
'Contextual links',
'Date API',
'Field UI',
];
}
/**
* {@inheritdoc}
*/
protected function getMissingPaths() {
return [
'Locale',
'Entity Translation',
'Internationalization',
'String translation',
'Taxonomy translation',
'Translation sets',
'Variable',
];
}
/**
* Executes all steps of migrations upgrade.
*/
public function testUpgrade() : void {
// 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 |
---|---|---|
Upgrade7Test | Tests Drupal 7 upgrade using the migrate UI. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.