2013-12-05 16:29:35 +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;
|
|
|
|
|
2016-05-20 16:38:20 +03:00
|
|
|
class JobTest extends \Test\TestCase {
|
2013-12-05 16:29:35 +04:00
|
|
|
private $run = false;
|
|
|
|
|
2014-11-11 01:30:38 +03:00
|
|
|
protected function setUp() {
|
|
|
|
parent::setUp();
|
2013-12-05 16:29:35 +04:00
|
|
|
$this->run = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testRemoveAfterException() {
|
|
|
|
$jobList = new DummyJobList();
|
2016-01-14 12:38:53 +03:00
|
|
|
$e = new \Exception();
|
|
|
|
$job = new TestJob($this, function () use ($e) {
|
|
|
|
throw $e;
|
2013-12-05 16:29:35 +04:00
|
|
|
});
|
|
|
|
$jobList->add($job);
|
|
|
|
|
2015-12-18 17:05:32 +03:00
|
|
|
$logger = $this->getMockBuilder('OCP\ILogger')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
2016-01-14 12:38:53 +03:00
|
|
|
$logger->expects($this->once())
|
|
|
|
->method('logException')
|
|
|
|
->with($e);
|
2015-12-18 17:05:32 +03:00
|
|
|
|
2013-12-05 16:29:35 +04:00
|
|
|
$this->assertCount(1, $jobList->getAll());
|
2015-12-18 17:05:32 +03:00
|
|
|
$job->execute($jobList, $logger);
|
2013-12-05 16:29:35 +04:00
|
|
|
$this->assertTrue($this->run);
|
2015-12-18 17:05:32 +03:00
|
|
|
$this->assertCount(1, $jobList->getAll());
|
2013-12-05 16:29:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function markRun() {
|
|
|
|
$this->run = true;
|
|
|
|
}
|
|
|
|
}
|