From f20c4cbed3de7f3fcc49810d5721b257d5a56d43 Mon Sep 17 00:00:00 2001 From: Ben Burgess <88810029+bx80@users.noreply.github.com> Date: Wed, 2 Feb 2022 12:19:23 +1300 Subject: Retry scheduled tasks on failure (#18335) * Catch and log errors for scheduled tasks * Added retry on exception mechanism for scheduled tasks * Replace error code with custom exception * Fix/workaround for SchedulerTest mock breaking retry list option loading * Log warning instead of info if a task has failed three times * Added basic tests, minor code improvements * Test fix * Fix for test * Added integration test to check that only tasks that throw exceptions are scheduled for retry --- .../PHPUnit/Integration/RetryScheduledTaskTest.php | 143 +++++++++++++++++++++ 1 file changed, 143 insertions(+) create mode 100644 tests/PHPUnit/Integration/RetryScheduledTaskTest.php (limited to 'tests/PHPUnit/Integration') diff --git a/tests/PHPUnit/Integration/RetryScheduledTaskTest.php b/tests/PHPUnit/Integration/RetryScheduledTaskTest.php new file mode 100644 index 0000000000..36e055cd8f --- /dev/null +++ b/tests/PHPUnit/Integration/RetryScheduledTaskTest.php @@ -0,0 +1,143 @@ +assertEquals(0, $timetable->getRetryCount($task1)); + + // Should increment by one + $timetable->incrementRetryCount($task1); + $this->assertEquals(1, $timetable->getRetryCount($task1)); + + // Should not break if more than one tasks is counting retries + $timetable->incrementRetryCount($task2); + $timetable->incrementRetryCount($task2); + $this->assertEquals(2, $timetable->getRetryCount($task2)); + $timetable->incrementRetryCount($task1); + $this->assertEquals(2, $timetable->getRetryCount($task1)); + + // Should clear retry count without affecting other tasks + $timetable->clearRetryCount($task1); + $this->assertEquals(0, $timetable->getRetryCount($task1)); + $this->assertEquals(2, $timetable->getRetryCount($task2)); + $timetable->clearRetryCount($task2); + $this->assertEquals(0, $timetable->getRetryCount($task1)); + + } + + public function testTaskIsRetriedIfRetryableExcetionIsThrown() + { + + // Mock timetable + $now = time() - 60; + $taskName = 'Piwik\Tests\Integration\RetryScheduledTaskTest.exceptionalTask'; + $timetableData = serialize([$taskName => $now]); + self::getReflectedPiwikOptionInstance()->setValue(new PiwikOption($timetableData)); + + // Create task + $dailySchedule = $this->createPartialMock('Piwik\Scheduler\Schedule\Daily', array('getTime')); + $dailySchedule->expects($this->any()) + ->method('getTime') + ->will($this->returnValue($now)); + + // Setup scheduler + $tasks = [new Task($this, 'exceptionalTask', null, $dailySchedule)]; + $taskLoader = $this->createMock('Piwik\Scheduler\TaskLoader'); + $taskLoader->expects($this->atLeastOnce()) + ->method('loadTasks') + ->willReturn($tasks); + + $scheduler = new Scheduler($taskLoader, new NullLogger()); + + // First run + $scheduler->run(); + $nextRun = $scheduler->getScheduledTimeForMethod('Piwik\Tests\Integration\RetryScheduledTaskTest', 'exceptionalTask', null); + + // Should be rescheduled one hour from now + $this->assertEquals($now+3660, $nextRun); + + self::getReflectedPiwikOptionInstance()->setValue(null); + + } + + public function testTaskIsNotRetriedIfNormalExcetionIsThrown() + { + // Mock timetable + $now = time() - 60; + $taskName = 'Piwik\Tests\Integration\RetryScheduledTaskTest.normalExceptionTask'; + $timetableData = serialize([$taskName => $now]); + self::getReflectedPiwikOptionInstance()->setValue(new PiwikOption($timetableData)); + + // Create task + $specificSchedule = $this->createPartialMock('Piwik\Scheduler\Schedule\SpecificTime', array('getTime')); + $specificSchedule->setScheduledTime($now+50000); + $specificSchedule->expects($this->any()) + ->method('getTime') + ->will($this->returnValue($now)); + + // Setup scheduler + $tasks = [new Task($this, 'normalExceptionTask', null, $specificSchedule)]; + $taskLoader = $this->createMock('Piwik\Scheduler\TaskLoader'); + $taskLoader->expects($this->atLeastOnce()) + ->method('loadTasks') + ->willReturn($tasks); + + $scheduler = new Scheduler($taskLoader, new NullLogger()); + + // First run + $scheduler->run(); + $nextRun = $scheduler->getScheduledTimeForMethod('Piwik\Tests\Integration\RetryScheduledTaskTest', 'normalExceptionTask', null); + + // Should not have scheduled for retry + $this->assertEquals($now+50000, $nextRun); + + self::getReflectedPiwikOptionInstance()->setValue(null); + } + + private static function getReflectedPiwikOptionInstance() + { + $piwikOptionInstance = new ReflectionProperty('Piwik\Option', 'instance'); + $piwikOptionInstance->setAccessible(true); + return $piwikOptionInstance; + } + + public function exceptionalTask() + { + throw new RetryableException('This task fails and should be retried'); + } + + public function normalExceptionTask() + { + throw new \Exception('This task fails and should not be retried'); + } + +} -- cgit v1.2.3