public function NoMultilingualReviewPageTestBase::testMigrateUpgradeReviewPage in Drupal 8
Same name and namespace in other branches
- 9 core/modules/migrate_drupal_ui/tests/src/Functional/NoMultilingualReviewPageTestBase.php \Drupal\Tests\migrate_drupal_ui\Functional\NoMultilingualReviewPageTestBase::testMigrateUpgradeReviewPage()
- 10 core/modules/migrate_drupal_ui/tests/src/Functional/NoMultilingualReviewPageTestBase.php \Drupal\Tests\migrate_drupal_ui\Functional\NoMultilingualReviewPageTestBase::testMigrateUpgradeReviewPage()
Tests the review page when content_translation is enabled.
Overrides MultilingualReviewPageTestBase::testMigrateUpgradeReviewPage
File
- core/
modules/ migrate_drupal_ui/ tests/ src/ Functional/ NoMultilingualReviewPageTestBase.php, line 15
Class
- NoMultilingualReviewPageTestBase
- Tests the upgrade review form without translations.
Namespace
Drupal\Tests\migrate_drupal_ui\FunctionalCode
public function testMigrateUpgradeReviewPage() {
$this
->prepare();
// Start the upgrade process.
$this
->drupalGet('/upgrade');
$this
->drupalPostForm(NULL, [], t('Continue'));
$this
->drupalPostForm(NULL, $this->edits, t('Review upgrade'));
$session = $this
->assertSession();
$session
->pageTextContains('WARNING: Content may be overwritten on your new site.');
$session
->pageTextContains('There is conflicting content of these types:');
$session
->pageTextContains('taxonomy terms');
$session
->pageTextContains('There is translated content of these types:');
$session
->pageTextContainsOnce('content items');
$this
->drupalPostForm(NULL, [], t('I acknowledge I may lose data. Continue anyway.'));
$session
->statusCodeEquals(200);
// Ensure there are no errors about missing modules from the test module.
$session
->pageTextNotContains(t('Source module not found for migration_provider_no_annotation.'));
$session
->pageTextNotContains(t('Source module not found for migration_provider_test.'));
$session
->pageTextNotContains(t('Destination module not found for migration_provider_test'));
// Ensure there are no errors about any other missing migration providers.
$session
->pageTextNotContains(t('module not found'));
// Test the upgrade paths.
$available_paths = $this
->getAvailablePaths();
$missing_paths = $this
->getMissingPaths();
$this
->assertUpgradePaths($session, $available_paths, $missing_paths);
}