2013-12-05 07:29:35 -05: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;
|
|
|
|
|
|
2017-10-24 09:26:53 -04:00
|
|
|
use OCP\ILogger;
|
|
|
|
|
|
2016-05-20 09:38:20 -04:00
|
|
|
class JobTest extends \Test\TestCase {
|
2013-12-05 07:29:35 -05:00
|
|
|
private $run = false;
|
|
|
|
|
|
2019-11-21 10:40:38 -05:00
|
|
|
protected function setUp(): void {
|
2014-11-10 17:30:38 -05:00
|
|
|
parent::setUp();
|
2013-12-05 07:29:35 -05:00
|
|
|
$this->run = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testRemoveAfterException() {
|
|
|
|
|
$jobList = new DummyJobList();
|
2016-01-14 04:38:53 -05:00
|
|
|
$e = new \Exception();
|
|
|
|
|
$job = new TestJob($this, function () use ($e) {
|
|
|
|
|
throw $e;
|
2013-12-05 07:29:35 -05:00
|
|
|
});
|
|
|
|
|
$jobList->add($job);
|
|
|
|
|
|
2017-10-24 09:26:53 -04:00
|
|
|
$logger = $this->getMockBuilder(ILogger::class)
|
2015-12-18 09:05:32 -05:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
|
->getMock();
|
2016-01-14 04:38:53 -05:00
|
|
|
$logger->expects($this->once())
|
|
|
|
|
->method('logException')
|
|
|
|
|
->with($e);
|
2015-12-18 09:05:32 -05:00
|
|
|
|
2013-12-05 07:29:35 -05:00
|
|
|
$this->assertCount(1, $jobList->getAll());
|
2015-12-18 09:05:32 -05:00
|
|
|
$job->execute($jobList, $logger);
|
2013-12-05 07:29:35 -05:00
|
|
|
$this->assertTrue($this->run);
|
2015-12-18 09:05:32 -05:00
|
|
|
$this->assertCount(1, $jobList->getAll());
|
2013-12-05 07:29:35 -05:00
|
|
|
}
|
|
|
|
|
|
2020-01-31 10:04:04 -05:00
|
|
|
public function testRemoveAfterError() {
|
|
|
|
|
$jobList = new DummyJobList();
|
|
|
|
|
$job = new TestJob($this, function () {
|
|
|
|
|
$test = null;
|
|
|
|
|
$test->someMethod();
|
|
|
|
|
});
|
|
|
|
|
$jobList->add($job);
|
|
|
|
|
|
|
|
|
|
$logger = $this->getMockBuilder(ILogger::class)
|
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
|
->getMock();
|
|
|
|
|
$logger->expects($this->once())
|
|
|
|
|
->method('logException')
|
|
|
|
|
->with($this->isInstanceOf(\Throwable::class));
|
|
|
|
|
|
|
|
|
|
$this->assertCount(1, $jobList->getAll());
|
|
|
|
|
$job->execute($jobList, $logger);
|
|
|
|
|
$this->assertTrue($this->run);
|
|
|
|
|
$this->assertCount(1, $jobList->getAll());
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-05 07:29:35 -05:00
|
|
|
public function markRun() {
|
|
|
|
|
$this->run = true;
|
|
|
|
|
}
|
|
|
|
|
}
|