
| Current Path : /var/www/html/rocksensor3/web/core/modules/tracker/tests/src/Functional/Migrate/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor3/web/core/modules/tracker/tests/src/Functional/Migrate/ReviewPageTest.php |
<?php
declare(strict_types=1);
namespace Drupal\Tests\tracker\Functional\Migrate;
use Drupal\Tests\migrate_drupal_ui\Functional\NoMultilingualReviewPageTestBase;
/**
* Tests Review page.
*
* @group tracker
* @group legacy
*/
class ReviewPageTest extends NoMultilingualReviewPageTestBase {
/**
* {@inheritdoc}
*/
protected static $modules = ['tracker'];
/**
* {@inheritdoc}
*/
protected function setUp(): void {
parent::setUp();
$this->loadFixture($this->getModulePath('tracker') . '/tests/fixtures/drupal7.php');
}
/**
* Tests the review page.
*/
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 Tracker will be upgraded.
$session->elementExists('xpath', "//td[contains(@class, 'checked') and text() = 'Tracker']");
$session->elementNotExists('xpath', "//td[contains(@class, 'error') and text() = 'Tracker']");
}
/**
* {@inheritdoc}
*/
protected function getSourceBasePath() {
return __DIR__;
}
/**
* {@inheritdoc}
*/
protected function getAvailablePaths() {
return [];
}
/**
* {@inheritdoc}
*/
protected function getIncompletePaths() {
return [];
}
/**
* {@inheritdoc}
*/
protected function getMissingPaths() {
return [];
}
}