summaryrefslogtreecommitdiff
path: root/modules/system
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2011-08-30 01:07:28 -0700
committerwebchick <webchick@24967.no-reply.drupal.org>2011-08-30 01:07:28 -0700
commit3379da9d7008c327115f49c47c2436e1e8ee73cd (patch)
tree6bd7f1bf97bcdad554848aceee25c4e35fb1cd3e /modules/system
parentd4c02d841c69cb8e83d9a69d9d2d105ed3a1f1d7 (diff)
downloadbrdo-3379da9d7008c327115f49c47c2436e1e8ee73cd.tar.gz
brdo-3379da9d7008c327115f49c47c2436e1e8ee73cd.tar.bz2
Issue #978944 by Aron Novak, chx, ksenzee: Fixed Handle exceptions thrown in cron.
Diffstat (limited to 'modules/system')
-rw-r--r--modules/system/system.test17
1 files changed, 17 insertions, 0 deletions
diff --git a/modules/system/system.test b/modules/system/system.test
index f273bc7d2..d482afa22 100644
--- a/modules/system/system.test
+++ b/modules/system/system.test
@@ -695,6 +695,10 @@ class CronRunTestCase extends DrupalWebTestCase {
);
}
+ function setUp() {
+ parent::setUp(array('common_test', 'common_test_cron_helper'));
+ }
+
/**
* Test cron runs.
*/
@@ -799,6 +803,19 @@ class CronRunTestCase extends DrupalWebTestCase {
$this->assertTrue(file_exists($perm_old->uri), t('Old permanent file was correctly ignored.'));
$this->assertTrue(file_exists($perm_new->uri), t('New permanent file was correctly ignored.'));
}
+
+ /**
+ * Make sure exceptions thrown on hook_cron() don't affect other modules.
+ */
+ function testCronExceptions() {
+ variable_del('common_test_cron');
+ // The common_test module throws an exception. If it isn't caught, the tests
+ // won't finish successfully.
+ // The common_test_cron_helper module sets the 'common_test_cron' variable.
+ $this->cronRun();
+ $result = variable_get('common_test_cron');
+ $this->assertEqual($result, 'success', t('Cron correctly handles exceptions thrown during hook_cron() invocations.'));
+ }
}
class AdminMetaTagTestCase extends DrupalWebTestCase {