You are here

public function CronRunTest::testCronUI in Drupal 8

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

Make sure the cron UI reads from the state storage.

File

core/modules/system/tests/src/Functional/System/CronRunTest.php, line 111

Class

CronRunTest
Tests cron runs.

Namespace

Drupal\Tests\system\Functional\System

Code

public function testCronUI() {
  $admin_user = $this
    ->drupalCreateUser([
    'administer site configuration',
  ]);
  $this
    ->drupalLogin($admin_user);
  $this
    ->drupalGet('admin/config/system/cron');

  // Don't use REQUEST to calculate the exact time, because that will
  // fail randomly. Look for the word 'years', because without a timestamp,
  // the time will start at 1 January 1970.
  $this
    ->assertNoText('years');
  $cron_last = time() - 200;
  \Drupal::state()
    ->set('system.cron_last', $cron_last);
  $this
    ->drupalPostForm(NULL, [], 'Save configuration');
  $this
    ->assertText('The configuration options have been saved.');
  $this
    ->assertUrl('admin/config/system/cron');

  // Check that cron does not run when saving the configuration form.
  $this
    ->assertEqual($cron_last, \Drupal::state()
    ->get('system.cron_last'), 'Cron does not run when saving the configuration form.');

  // Check that cron runs when triggered manually.
  $this
    ->drupalPostForm(NULL, [], 'Run cron');
  $this
    ->assertTrue($cron_last < \Drupal::state()
    ->get('system.cron_last'), 'Cron runs when triggered manually.');
}