You are here

protected function UpdateTestBase::standardTests in Drupal 9

Same name and namespace in other branches
  1. 8 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.

10 calls to UpdateTestBase::standardTests()
UpdateContribTest::testNonStandardVersionStrings in core/modules/update/tests/src/Functional/UpdateContribTest.php
Tests messages for invalid, empty and missing version strings.
UpdateContribTest::testNormalUpdateAvailable in core/modules/update/tests/src/Functional/UpdateContribTest.php
Tests the Update Manager module when one normal update is available.
UpdateContribTest::testUpdateContribBasic in core/modules/update/tests/src/Functional/UpdateContribTest.php
Tests the basic functionality of a contrib module on the status report.
UpdateContribTest::testUpdateContribOrder in core/modules/update/tests/src/Functional/UpdateContribTest.php
Tests that contrib projects are ordered by project name.
UpdateSemverTestBase::testMajorUpdateAvailable in core/modules/update/tests/src/Functional/UpdateSemverTestBase.php
Tests the Update Manager module when a major update is available.

... See full list

File

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

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:');
}