2013-04-21 01:27:46 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2013 Robin Appelman <icewind@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Test\BackgroundJob;
|
|
|
|
|
|
|
|
class TestTimedJob extends \OC\BackgroundJob\TimedJob {
|
2013-12-04 19:28:27 +04:00
|
|
|
private $testCase;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param TimedJob $testCase
|
|
|
|
*/
|
|
|
|
public function __construct($testCase) {
|
2013-04-21 01:27:46 +04:00
|
|
|
$this->setInterval(10);
|
2013-12-04 19:28:27 +04:00
|
|
|
$this->testCase = $testCase;
|
2013-04-21 01:27:46 +04:00
|
|
|
}
|
|
|
|
|
2013-04-21 01:51:58 +04:00
|
|
|
public function run($argument) {
|
2013-12-04 19:28:27 +04:00
|
|
|
$this->testCase->markRun();
|
2013-04-21 01:27:46 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-11 01:30:38 +03:00
|
|
|
class TimedJob extends \Test\TestCase {
|
2013-04-21 01:27:46 +04:00
|
|
|
/**
|
|
|
|
* @var DummyJobList $jobList
|
|
|
|
*/
|
|
|
|
private $jobList;
|
|
|
|
/**
|
|
|
|
* @var \OC\BackgroundJob\TimedJob $job
|
|
|
|
*/
|
|
|
|
private $job;
|
|
|
|
|
2013-12-04 19:28:27 +04:00
|
|
|
private $jobRun = false;
|
|
|
|
|
|
|
|
public function markRun() {
|
|
|
|
$this->jobRun = true;
|
|
|
|
}
|
|
|
|
|
2014-11-11 01:30:38 +03:00
|
|
|
protected function setup() {
|
|
|
|
parent::setUp();
|
|
|
|
|
2013-04-21 01:27:46 +04:00
|
|
|
$this->jobList = new DummyJobList();
|
2013-12-04 19:28:27 +04:00
|
|
|
$this->job = new TestTimedJob($this);
|
2013-04-21 01:27:46 +04:00
|
|
|
$this->jobList->add($this->job);
|
2013-12-04 19:28:27 +04:00
|
|
|
$this->jobRun = false;
|
2013-04-21 01:27:46 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testShouldRunAfterInterval() {
|
|
|
|
$this->job->setLastRun(time() - 12);
|
2013-12-04 19:28:27 +04:00
|
|
|
$this->job->execute($this->jobList);
|
|
|
|
$this->assertTrue($this->jobRun);
|
2013-04-21 01:27:46 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testShouldNotRunWithinInterval() {
|
|
|
|
$this->job->setLastRun(time() - 5);
|
2013-12-04 19:28:27 +04:00
|
|
|
$this->job->execute($this->jobList);
|
|
|
|
$this->assertFalse($this->jobRun);
|
2013-04-21 01:27:46 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testShouldNotTwice() {
|
|
|
|
$this->job->setLastRun(time() - 15);
|
2013-12-04 19:28:27 +04:00
|
|
|
$this->job->execute($this->jobList);
|
|
|
|
$this->assertTrue($this->jobRun);
|
|
|
|
$this->jobRun = false;
|
|
|
|
$this->job->execute($this->jobList);
|
|
|
|
$this->assertFalse($this->jobRun);
|
2013-04-21 01:27:46 +04:00
|
|
|
}
|
|
|
|
}
|