Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Commits
0880f31c
"git@git.drupal.org:project/drupal.git" did not exist on "7a331d5095aaacb40cd6e58679f642cb0afe3504"
Commit
0880f31c
authored
10 years ago
by
Alex Pott
Browse files
Options
Downloads
Patches
Plain Diff
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
!7452
Issue #1797438. HTML5 validation is preventing form submit and not fully...
,
!789
Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/modules/system/src/Tests/System/CronRunTest.php
+6
-2
6 additions, 2 deletions
core/modules/system/src/Tests/System/CronRunTest.php
with
6 additions
and
2 deletions
core/modules/system/src/Tests/System/CronRunTest.php
+
6
−
2
View file @
0880f31c
...
@@ -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
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment