From abb8a2892d862c097285ee7f300d12c32428e12c Mon Sep 17 00:00:00 2001 From: LEZY Thomas Date: Tue, 27 May 2014 12:36:44 +0200 Subject: [ticket/12597] Command for executing all available cron tasks Command cron:execute-all executes all available cron tasks. Test files in tests/console/cron folder PHPBB3-12597 --- tests/console/cron/execute_all_test.php | 85 +++++++++++++++++++++++++++++++ tests/console/cron/fixtures/config.xml | 9 ++++ tests/console/cron/tasks/simple_ready.php | 13 +++++ 3 files changed, 107 insertions(+) create mode 100644 tests/console/cron/execute_all_test.php create mode 100644 tests/console/cron/fixtures/config.xml create mode 100644 tests/console/cron/tasks/simple_ready.php (limited to 'tests/console') diff --git a/tests/console/cron/execute_all_test.php b/tests/console/cron/execute_all_test.php new file mode 100644 index 0000000000..83cffd5be6 --- /dev/null +++ b/tests/console/cron/execute_all_test.php @@ -0,0 +1,85 @@ +createXMLDataSet(dirname(__FILE__) . '/fixtures/config.xml'); + } + + public function setUp() + { + global $db, $config, $phpbb_root_path, $pathEx; + + $db = $this->db = $this->new_dbal(); + $config = $this->config = new \phpbb\config\config(array('cron_lock' => '0')); + set_config(null, null, null, $this->config); + $this->lock = new \phpbb\lock\db('cron_lock', $this->config, $this->db); + + $this->user = $this->getMock('\phpbb\user'); + $this->user->method('lang')->will($this->returnArgument(0)); + + $tasks = array( + new phpbb_cron_task_core_simple_ready(), + ); + $this->cron_manager = new \phpbb\cron\manager($tasks, $phpbb_root_path, $pathEx); + + $this->assertEquals('0', $config['cron_lock']); + } + + public function test_normal_use() + { + $command_tester = $this->get_command_tester(); + $command_tester->execute(array('command' => $command_name)); + + $this->assertEquals('', $command_tester->getDisplay()); + } + + public function test_verbose_mode() + { + $command_tester = $this->get_command_tester(); + $command_tester->execute(array('command' => $command_name, '--verbose' => true)); + + $this->assertContains('RUNNING_TASK', $command_tester->getDisplay()); + } + + public function test_error_lock() + { + $this->lock->acquire(); + $command_tester = $this->get_command_tester(); + $command_tester->execute(array('command' => $command_name)); + + $this->assertContains('CRON_LOCK_ERROR', $command_tester->getDisplay()); + } + + public function get_command_tester() + { + $application = new Application(); + $application->add(new execute_all($this->cron_manager, $this->lock, $this->user)); + + $command = $application->find('cron:execute-all'); + $command_name = $command->getName(); + return new CommandTester($command); + } +} + diff --git a/tests/console/cron/fixtures/config.xml b/tests/console/cron/fixtures/config.xml new file mode 100644 index 0000000000..b49be1e05a --- /dev/null +++ b/tests/console/cron/fixtures/config.xml @@ -0,0 +1,9 @@ + + + + config_name + config_value + is_dynamic +
+
+ diff --git a/tests/console/cron/tasks/simple_ready.php b/tests/console/cron/tasks/simple_ready.php new file mode 100644 index 0000000000..245d9ba738 --- /dev/null +++ b/tests/console/cron/tasks/simple_ready.php @@ -0,0 +1,13 @@ +