You are here

public function StatusTest::testStatusPage in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/system/tests/src/Functional/System/StatusTest.php \Drupal\Tests\system\Functional\System\StatusTest::testStatusPage()
  2. 10 core/modules/system/tests/src/Functional/System/StatusTest.php \Drupal\Tests\system\Functional\System\StatusTest::testStatusPage()

Tests that the status page returns.

File

core/modules/system/tests/src/Functional/System/StatusTest.php, line 48

Class

StatusTest
Tests output on the status overview page.

Namespace

Drupal\Tests\system\Functional\System

Code

public function testStatusPage() {

  // Go to Administration.
  $this
    ->drupalGet('admin/reports/status');
  $this
    ->assertSession()
    ->statusCodeEquals(200);
  $phpversion = phpversion();
  $this
    ->assertText($phpversion, 'Php version is shown on the page.');
  if (function_exists('phpinfo')) {
    $this
      ->assertLinkByHref(Url::fromRoute('system.php')
      ->toString());
  }
  else {
    $this
      ->assertNoLinkByHref(Url::fromRoute('system.php')
      ->toString());
  }

  // If a module is fully installed no pending updates exists.
  $this
    ->assertNoText(t('Out of date'));

  // The global $config_directories is not properly formed.
  $this
    ->assertRaw(t("Your %file file must define the %setting setting", [
    '%file' => $this->siteDirectory . '/settings.php',
    '%setting' => "\$settings['config_sync_directory']",
  ]));

  // Set the schema version of update_test_postupdate to a lower version, so
  // update_test_postupdate_update_8001() needs to be executed.
  drupal_set_installed_schema_version('update_test_postupdate', 8000);
  $this
    ->drupalGet('admin/reports/status');
  $this
    ->assertText(t('Out of date'));

  // Now cleanup the executed post update functions.
  drupal_set_installed_schema_version('update_test_postupdate', 8001);

  /** @var \Drupal\Core\Update\UpdateRegistry $post_update_registry */
  $post_update_registry = \Drupal::service('update.post_update_registry');
  $post_update_registry
    ->filterOutInvokedUpdatesByModule('update_test_postupdate');
  $this
    ->drupalGet('admin/reports/status');
  $this
    ->assertText(t('Out of date'));
  $this
    ->drupalGet('admin/reports/status/php');
  $this
    ->assertSession()
    ->statusCodeEquals(200);

  // Check if cron error is displayed in errors section
  $cron_last_run = \Drupal::state()
    ->get('system.cron_last');
  \Drupal::state()
    ->set('system.cron_last', 0);
  $this
    ->drupalGet('admin/reports/status');
  $css_selector_converter = new CssSelectorConverter();
  $xpath = $css_selector_converter
    ->toXPath('details.system-status-report__entry') . '//div[contains(text(), "Cron has not run recently")]';
  $this
    ->assertNotEmpty($this
    ->xpath($xpath), 'Cron has not run recently error is being displayed.');
  \Drupal::state()
    ->set('system.cron_last', $cron_last_run);
}