function UpdateTestBase::confirmRevokedStatus
Same name in other branches
- 9 core/modules/update/tests/src/Functional/UpdateTestBase.php \Drupal\Tests\update\Functional\UpdateTestBase::confirmRevokedStatus()
- 8.9.x core/modules/update/tests/src/Functional/UpdateTestBase.php \Drupal\Tests\update\Functional\UpdateTestBase::confirmRevokedStatus()
- 10 core/modules/update/tests/src/Functional/UpdateTestBase.php \Drupal\Tests\update\Functional\UpdateTestBase::confirmRevokedStatus()
Confirms messages are correct when a release has been unpublished/revoked.
Parameters
string $revoked_version: The revoked 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:').
1 call to UpdateTestBase::confirmRevokedStatus()
- UpdateContribTest::testRevokedRelease in core/
modules/ update/ tests/ src/ Functional/ UpdateContribTest.php - Tests messages when a project release is unpublished.
File
-
core/
modules/ update/ tests/ src/ Functional/ UpdateTestBase.php, line 196
Class
- UpdateTestBase
- Defines some shared functions used by all update tests.
Namespace
Drupal\Tests\update\FunctionalCode
protected function confirmRevokedStatus($revoked_version, $newer_version, $new_version_label) {
$this->drupalGet('admin/reports/updates');
$this->clickLink('Check manually');
$this->checkForMetaRefresh();
$this->assertUpdateTableTextContains('Revoked!');
$this->assertUpdateTableTextContains($revoked_version);
$this->assertUpdateTableElementContains('error.svg');
$this->assertUpdateTableTextContains('Release revoked: Your currently installed release has been revoked, and is no longer available for download. Uninstalling everything included in this release or upgrading is strongly recommended!');
$this->assertVersionUpdateLinks($new_version_label, $newer_version);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.