function UpdateSemverCoreTest::testModulePageRunCron

Checks that running cron updates the list of available updates.

File

core/modules/update/tests/src/Functional/UpdateSemverCoreTest.php, line 301

Class

UpdateSemverCoreTest
Tests the semantic version handling in the Update Manager.

Namespace

Drupal\Tests\update\Functional

Code

public function testModulePageRunCron() {
    $this->setProjectInstalledVersion('8.0.0');
    $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.0',
    ])
        ->save();
    $this->cronRun();
    $this->drupalGet('admin/modules');
    $this->assertSession()
        ->pageTextNotContains('No update information available.');
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.