. /** * This file contains the unittests for adhock tasks. * * @package core * @category phpunit * @copyright 2013 Damyon Wiese * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); require_once(__DIR__ . '/fixtures/task_fixtures.php'); /** * Test class for adhoc tasks. * * @package core * @category task * @copyright 2013 Damyon Wiese * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class core_adhoc_task_testcase extends advanced_testcase { /** * Test basic adhoc task execution. */ public function test_get_next_adhoc_task_now() { $this->resetAfterTest(true); // Create an adhoc task. $task = new \core\task\adhoc_test_task(); // Queue it. \core\task\manager::queue_adhoc_task($task); $now = time(); // Get it from the scheduler. $task = \core\task\manager::get_next_adhoc_task($now); $this->assertInstanceOf('\\core\\task\\adhoc_test_task', $task); $task->execute(); \core\task\manager::adhoc_task_complete($task); } /** * Test adhoc task failure retry backoff. */ public function test_get_next_adhoc_task_fail_retry() { $this->resetAfterTest(true); // Create an adhoc task. $task = new \core\task\adhoc_test_task(); \core\task\manager::queue_adhoc_task($task); $now = time(); // Get it from the scheduler, execute it, and mark it as failed. $task = \core\task\manager::get_next_adhoc_task($now); $task->execute(); \core\task\manager::adhoc_task_failed($task); // The task will not be returned immediately. $this->assertNull(\core\task\manager::get_next_adhoc_task($now)); // Should get the adhoc task (retry after delay). $task = \core\task\manager::get_next_adhoc_task($now + 120); $this->assertInstanceOf('\\core\\task\\adhoc_test_task', $task); $task->execute(); \core\task\manager::adhoc_task_complete($task); // Should not get any task. $this->assertNull(\core\task\manager::get_next_adhoc_task($now)); } /** * Test future adhoc task execution. */ public function test_get_next_adhoc_task_future() { $this->resetAfterTest(true); $now = time(); // Create an adhoc task in future. $task = new \core\task\adhoc_test_task(); $task->set_next_run_time($now + 1000); \core\task\manager::queue_adhoc_task($task); // Fetching the next task should not return anything. $this->assertNull(\core\task\manager::get_next_adhoc_task($now)); // Fetching in the future should return the task. $task = \core\task\manager::get_next_adhoc_task($now + 1020); $this->assertInstanceOf('\\core\\task\\adhoc_test_task', $task); $task->execute(); \core\task\manager::adhoc_task_complete($task); } }