You are here

public function UpdateSemverCoreTest::testDatestampMismatch in Drupal 10

Same name and namespace in other branches
  1. 9 core/modules/update/tests/src/Functional/UpdateSemverCoreTest.php \Drupal\Tests\update\Functional\UpdateSemverCoreTest::testDatestampMismatch()

Ensures proper results where there are date mismatches among modules.

File

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

Class

UpdateSemverCoreTest
Tests the Update Manager module through a series of functional tests using mock XML data.

Namespace

Drupal\Tests\update\Functional

Code

public function testDatestampMismatch() {
  $system_info = [
    '#all' => [
      // We need to think we're running a -dev snapshot to see dates.
      'version' => '8.1.0-dev',
      'datestamp' => time(),
    ],
    'block' => [
      // This is 2001-09-09 01:46:40 GMT, so test for "2001-Sep-".
      'datestamp' => '1000000000',
    ],
  ];
  $this
    ->config('update_test.settings')
    ->set('system_info', $system_info)
    ->save();
  $this
    ->refreshUpdateStatus([
    'drupal' => 'dev',
  ]);
  $this
    ->assertSession()
    ->pageTextNotContains('2001-Sep-');
  $this
    ->assertSession()
    ->pageTextContains('Up to date');
  $this
    ->assertSession()
    ->pageTextNotContains('Update available');
  $this
    ->assertSession()
    ->pageTextNotContains('Security update required!');
}