forum-1.x-dev/tests/src/Functional/migrate_drupal/d7/NoMultilingualReviewPageTest.php
tests/src/Functional/migrate_drupal/d7/NoMultilingualReviewPageTest.php
<?php
namespace Drupal\Tests\forum\Functional\migrate_drupal\d7;
use Drupal\Tests\migrate_drupal_ui\Functional\NoMultilingualReviewPageTestBase;
/**
* Tests Drupal 7 upgrade without translations.
*
* The test method is provided by the MigrateUpgradeTestBase class.
*
* @group forum
*/
class NoMultilingualReviewPageTest extends NoMultilingualReviewPageTestBase {
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'stark';
/**
* {@inheritdoc}
*/
protected static $modules = [
'forum',
];
/**
* {@inheritdoc}
*/
protected function setUp(): void {
parent::setUp();
$this->loadFixture($this->getModulePath('forum') . '/tests/fixtures/drupal7.php');
}
/**
* Tests that Forum is displayed in the will be upgraded list.
*/
public function testMigrateUpgradeReviewPage(): void {
$this->prepare();
// Start the upgrade process.
$this->submitCredentialForm();
$session = $this->assertSession();
$this->submitForm([], 'I acknowledge I may lose data. Continue anyway.');
$session->statusCodeEquals(200);
// Confirm that Forum will be upgraded.
$session->elementExists('xpath', "//td[contains(@class, 'checked') and text() = 'Forum']");
$session->elementNotExists('xpath', "//td[contains(@class, 'error') and text() = 'Forum']");
}
/**
* {@inheritdoc}
*/
protected function getSourceBasePath() {
return __DIR__ . '/files';
}
/**
* {@inheritdoc}
*/
protected function getAvailablePaths() {
return [];
}
/**
* {@inheritdoc}
*/
protected function getIncompletePaths() {
return [];
}
/**
* {@inheritdoc}
*/
protected function getMissingPaths() {
return [];
}
}
