aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/repair/dropoldjobs.php
blob: a85c6506dbbc140835f3915ffb2b13ba789ed5e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
/**
 * Copyright (c) 2015 Arthur Schiwon <blizzz@owncloud.com>
 * This file is licensed under the Affero General Public License version 3 or
 * later.
 * See the COPYING-README file.
 */

namespace Test\Repair;

use OCP\BackgroundJob\IJobList;

/**
 * Tests for the dropping old tables
 *
 * @group DB
 *
 * @see \OC\Repair\DropOldTables
 */
class DropOldJobs extends \Test\TestCase {
	/** @var IJobList */
	protected $jobList;

	protected function setUp() {
		parent::setUp();

		$this->jobList = \OC::$server->getJobList();
		$this->jobList->add('OC\Cache\FileGlobalGC');
		$this->jobList->add('OC_Cache_FileGlobalGC');
	}

	public function testRun() {
		$this->assertTrue($this->jobList->has('OC\Cache\FileGlobalGC', null), 'Asserting that the job OC\Cache\FileGlobalGC exists before repairing');
		$this->assertTrue($this->jobList->has('OC_Cache_FileGlobalGC', null), 'Asserting that the job OC_Cache_FileGlobalGC exists before repairing');

		$repair = new \OC\Repair\DropOldJobs($this->jobList);
		$repair->run();

		$this->assertFalse($this->jobList->has('OC\Cache\FileGlobalGC', null), 'Asserting that the job OC\Cache\FileGlobalGC does not exist after repairing');
		$this->assertFalse($this->jobList->has('OC_Cache_FileGlobalGC', null), 'Asserting that the job OC_Cache_FileGlobalGC does not exist after repairing');
	}
}