2015-03-03 19:29:12 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2015-03-03 19:29:12 +03:00
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-03-03 19:29:12 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-05-17 12:42:03 +03:00
|
|
|
namespace OCA\Files_Sharing\Tests;
|
2015-03-03 19:29:12 +03:00
|
|
|
|
2016-05-17 12:42:03 +03:00
|
|
|
use OCA\Files_Sharing\DeleteOrphanedSharesJob;
|
2015-03-03 19:29:12 +03:00
|
|
|
|
2015-11-03 03:52:41 +03:00
|
|
|
/**
|
|
|
|
* Class DeleteOrphanedSharesJobTest
|
|
|
|
*
|
|
|
|
* @group DB
|
|
|
|
*
|
2016-05-17 12:42:03 +03:00
|
|
|
* @package OCA\Files_Sharing\Tests
|
2015-11-03 03:52:41 +03:00
|
|
|
*/
|
2015-03-03 19:29:12 +03:00
|
|
|
class DeleteOrphanedSharesJobTest extends \Test\TestCase {
|
|
|
|
|
2015-04-08 14:04:06 +03:00
|
|
|
/**
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
private static $trashBinStatus;
|
|
|
|
|
2015-03-03 19:29:12 +03:00
|
|
|
/**
|
|
|
|
* @var DeleteOrphanedSharesJob
|
|
|
|
*/
|
|
|
|
private $job;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \OCP\IDBConnection
|
|
|
|
*/
|
|
|
|
private $connection;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
private $user1;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
private $user2;
|
|
|
|
|
2019-11-21 18:40:38 +03:00
|
|
|
public static function setUpBeforeClass(): void {
|
2015-04-08 14:04:06 +03:00
|
|
|
$appManager = \OC::$server->getAppManager();
|
|
|
|
self::$trashBinStatus = $appManager->isEnabledForUser('files_trashbin');
|
|
|
|
$appManager->disableApp('files_trashbin');
|
2015-04-09 16:02:24 +03:00
|
|
|
|
|
|
|
// just in case...
|
|
|
|
\OC\Files\Filesystem::getLoader()->removeStorageWrapper('oc_trashbin');
|
2015-04-08 14:04:06 +03:00
|
|
|
}
|
|
|
|
|
2019-11-21 18:40:38 +03:00
|
|
|
public static function tearDownAfterClass(): void {
|
2015-04-08 14:04:06 +03:00
|
|
|
if (self::$trashBinStatus) {
|
|
|
|
\OC::$server->getAppManager()->enableApp('files_trashbin');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-21 18:40:38 +03:00
|
|
|
protected function setUp(): void {
|
2015-03-03 19:29:12 +03:00
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->connection = \OC::$server->getDatabaseConnection();
|
2015-04-10 14:43:57 +03:00
|
|
|
// clear occasional leftover shares from other tests
|
|
|
|
$this->connection->executeUpdate('DELETE FROM `*PREFIX*share`');
|
2015-03-03 19:29:12 +03:00
|
|
|
|
|
|
|
$this->user1 = $this->getUniqueID('user1_');
|
|
|
|
$this->user2 = $this->getUniqueID('user2_');
|
|
|
|
|
|
|
|
$userManager = \OC::$server->getUserManager();
|
|
|
|
$userManager->createUser($this->user1, 'pass');
|
|
|
|
$userManager->createUser($this->user2, 'pass');
|
|
|
|
|
|
|
|
\OC::registerShareHooks();
|
|
|
|
|
|
|
|
$this->job = new DeleteOrphanedSharesJob();
|
|
|
|
}
|
|
|
|
|
2019-11-21 18:40:38 +03:00
|
|
|
protected function tearDown(): void {
|
2015-04-10 14:43:57 +03:00
|
|
|
$this->connection->executeUpdate('DELETE FROM `*PREFIX*share`');
|
2015-03-03 19:29:12 +03:00
|
|
|
|
|
|
|
$userManager = \OC::$server->getUserManager();
|
|
|
|
$user1 = $userManager->get($this->user1);
|
2020-04-10 15:19:56 +03:00
|
|
|
if ($user1) {
|
2015-03-03 19:29:12 +03:00
|
|
|
$user1->delete();
|
|
|
|
}
|
|
|
|
$user2 = $userManager->get($this->user2);
|
2020-04-10 15:19:56 +03:00
|
|
|
if ($user2) {
|
2015-03-03 19:29:12 +03:00
|
|
|
$user2->delete();
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->logout();
|
|
|
|
|
|
|
|
parent::tearDown();
|
|
|
|
}
|
|
|
|
|
|
|
|
private function getShares() {
|
|
|
|
$shares = [];
|
|
|
|
$result = $this->connection->executeQuery('SELECT * FROM `*PREFIX*share`');
|
|
|
|
while ($row = $result->fetch()) {
|
|
|
|
$shares[] = $row;
|
|
|
|
}
|
|
|
|
$result->closeCursor();
|
|
|
|
return $shares;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test clearing orphaned shares
|
|
|
|
*/
|
|
|
|
public function testClearShares() {
|
|
|
|
$this->loginAsUser($this->user1);
|
|
|
|
|
2018-03-16 16:46:44 +03:00
|
|
|
$user1Folder = \OC::$server->getUserFolder($this->user1);
|
|
|
|
$testFolder = $user1Folder->newFolder('test');
|
|
|
|
$testSubFolder = $testFolder->newFolder('sub');
|
2015-03-03 19:29:12 +03:00
|
|
|
|
2018-03-16 16:46:44 +03:00
|
|
|
$shareManager = \OC::$server->getShareManager();
|
|
|
|
$share = $shareManager->newShare();
|
2015-03-03 19:29:12 +03:00
|
|
|
|
2018-03-16 16:46:44 +03:00
|
|
|
$share->setNode($testSubFolder)
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_USER)
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
->setSharedWith($this->user2)
|
|
|
|
->setSharedBy($this->user1);
|
|
|
|
|
|
|
|
$shareManager->createShare($share);
|
2015-03-03 19:29:12 +03:00
|
|
|
|
|
|
|
$this->assertCount(1, $this->getShares());
|
|
|
|
|
|
|
|
$this->job->run([]);
|
|
|
|
|
|
|
|
$this->assertCount(1, $this->getShares(), 'Linked shares not deleted');
|
|
|
|
|
2018-03-16 16:46:44 +03:00
|
|
|
$testFolder->delete();
|
2015-03-03 19:29:12 +03:00
|
|
|
|
|
|
|
$this->job->run([]);
|
|
|
|
|
|
|
|
$this->assertCount(0, $this->getShares(), 'Orphaned shares deleted');
|
|
|
|
}
|
|
|
|
}
|