Skip to content
Snippets Groups Projects
Commit 0880f31c authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2458289 by Wim Leers: CronRunTest::testAutomaticCron() should test with...

Issue #2458289 by Wim Leers: CronRunTest::testAutomaticCron() should test with an authenticated user
parent 2eee2594
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -49,6 +49,12 @@ function testCronRun() { ...@@ -49,6 +49,12 @@ function testCronRun() {
* need the exact time when cron is triggered. * need the exact time when cron is triggered.
*/ */
function testAutomaticCron() { function testAutomaticCron() {
// Test with a logged in user; anonymous users likely don't cause Drupal to
// fully bootstrap, because of the internal page cache or an external
// reverse proxy. Reuse this user for disabling cron later in the test.
$admin_user = $this->drupalCreateUser(array('administer site configuration'));
$this->drupalLogin($admin_user);
// Ensure cron does not run when the cron threshold is enabled and was // Ensure cron does not run when the cron threshold is enabled and was
// not passed. // not passed.
$cron_last = time(); $cron_last = time();
...@@ -68,8 +74,6 @@ function testAutomaticCron() { ...@@ -68,8 +74,6 @@ function testAutomaticCron() {
$this->assertTrue($cron_last < \Drupal::state()->get('system.cron_last'), 'Cron runs when the cron threshold is passed.'); $this->assertTrue($cron_last < \Drupal::state()->get('system.cron_last'), 'Cron runs when the cron threshold is passed.');
// Disable the cron threshold through the interface. // Disable the cron threshold through the interface.
$admin_user = $this->drupalCreateUser(array('administer site configuration'));
$this->drupalLogin($admin_user);
$this->drupalPostForm('admin/config/system/cron', array('cron_safe_threshold' => 0), t('Save configuration')); $this->drupalPostForm('admin/config/system/cron', array('cron_safe_threshold' => 0), t('Save configuration'));
$this->assertText(t('The configuration options have been saved.')); $this->assertText(t('The configuration options have been saved.'));
$this->drupalLogout(); $this->drupalLogout();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment