protected function UpdateTestBase::confirmUnsupportedStatus in Drupal 10
Same name and namespace in other branches
- 8 core/modules/update/tests/src/Functional/UpdateTestBase.php \Drupal\Tests\update\Functional\UpdateTestBase::confirmUnsupportedStatus()
- 9 core/modules/update/tests/src/Functional/UpdateTestBase.php \Drupal\Tests\update\Functional\UpdateTestBase::confirmUnsupportedStatus()
Confirms messages are correct when a release has been marked unsupported.
Parameters
string $unsupported_version: The unsupported version that is currently installed.
string $newer_version: The expected newer version to recommend.
string $new_version_label: The expected label for the newer version (for example 'Recommended version:' or 'Also available:').
File
- core/
modules/ update/ tests/ src/ Functional/ UpdateTestBase.php, line 208
Class
- UpdateTestBase
- Defines some shared functions used by all update tests.
Namespace
Drupal\Tests\update\FunctionalCode
protected function confirmUnsupportedStatus($unsupported_version, $newer_version, $new_version_label) {
$this
->drupalGet('admin/reports/updates');
$this
->clickLink('Check manually');
$this
->checkForMetaRefresh();
$this
->assertUpdateTableTextContains('Not supported!');
$this
->assertUpdateTableTextContains($unsupported_version);
$this
->assertUpdateTableElementContains('error.svg');
$this
->assertUpdateTableTextContains('Release not supported: Your currently installed release is now unsupported, and is no longer available for download. Disabling everything included in this release or upgrading is strongly recommended!');
$this
->assertVersionUpdateLinks($new_version_label, $newer_version);
}