public function UpdateSemverCoreTest::testModulePageRegularUpdate in Drupal 9
Checks the messages at admin/modules when an update is missing.
File
- core/
modules/ update/ tests/ src/ Functional/ UpdateSemverCoreTest.php, line 346
Class
- UpdateSemverCoreTest
- Tests the Update Manager module through a series of functional tests using mock XML data.
Namespace
Drupal\Tests\update\FunctionalCode
public function testModulePageRegularUpdate() {
$this
->setProjectInstalledVersion('8.0.0');
// Instead of using refreshUpdateStatus(), set these manually.
$this
->config('update.settings')
->set('fetch.url', Url::fromRoute('update_test.update_test')
->setAbsolute()
->toString())
->save();
$this
->config('update_test.settings')
->set('xml_map', [
'drupal' => '0.1',
])
->save();
$this
->drupalGet('admin/reports/updates');
$this
->clickLink('Check manually');
$this
->checkForMetaRefresh();
$this
->assertSession()
->pageTextContains('Checked available update data for one project.');
$this
->drupalGet('admin/modules');
$this
->assertSession()
->pageTextContains('There are updates available for your version of Drupal.');
$this
->assertSession()
->pageTextNotContains('There is a security update available for your version of Drupal.');
}