function UpdateTestBase::standardTests

Same name and namespace in other branches
  1. 11.x core/modules/update/tests/src/Functional/UpdateTestBase.php \Drupal\Tests\update\Functional\UpdateTestBase::standardTests()
  2. 10 core/modules/update/tests/src/Functional/UpdateTestBase.php \Drupal\Tests\update\Functional\UpdateTestBase::standardTests()
  3. 8.9.x core/modules/update/src/Tests/UpdateTestBase.php \Drupal\update\Tests\UpdateTestBase::standardTests()
  4. 8.9.x core/modules/update/tests/src/Functional/UpdateTestBase.php \Drupal\Tests\update\Functional\UpdateTestBase::standardTests()

Runs a series of assertions that are applicable to all update statuses.

File

core/modules/update/tests/src/Functional/UpdateTestBase.php, line 83

Class

UpdateTestBase
Defines some shared functions used by all update tests.

Namespace

Drupal\Tests\update\Functional

Code

protected function standardTests() {
  $this->assertSession()
    ->responseContains('<h3>Drupal core</h3>');
  // Verify that the link to the Drupal project appears.
  $this->assertSession()
    ->linkExists('Drupal');
  $this->assertSession()
    ->linkByHrefExists('http://example.com/project/drupal');
  $this->assertSession()
    ->pageTextNotContains('No available releases found');
  $this->assertSession()
    ->pageTextContains('Last checked:');
  // No download URLs should be present.
  $this->assertSession()
    ->responseNotContains('.tar.gz');
}

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