nextcloud/tests/lib/BackgroundJob/TimedJobTest.php

73 lines
1.5 KiB
PHP
Raw Normal View History

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 {
private $testCase;
/**
* @param TimedJobTest $testCase
*/
public function __construct($testCase) {
2013-04-21 01:27:46 +04:00
$this->setInterval(10);
$this->testCase = $testCase;
2013-04-21 01:27:46 +04:00
}
2013-04-21 01:51:58 +04:00
public function run($argument) {
$this->testCase->markRun();
2013-04-21 01:27:46 +04:00
}
}
class TimedJobTest extends \Test\TestCase {
2013-04-21 01:27:46 +04:00
/**
* @var DummyJobList $jobList
*/
private $jobList;
/**
* @var \OC\BackgroundJob\TimedJob $job
*/
private $job;
private $jobRun = false;
public function markRun() {
$this->jobRun = true;
}
protected function setup() {
parent::setUp();
2013-04-21 01:27:46 +04:00
$this->jobList = new DummyJobList();
$this->job = new TestTimedJob($this);
2013-04-21 01:27:46 +04:00
$this->jobList->add($this->job);
$this->jobRun = false;
2013-04-21 01:27:46 +04:00
}
public function testShouldRunAfterInterval() {
$this->job->setLastRun(time() - 12);
$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);
$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);
$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
}
}