2015-06-29 20:13:39 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-07-21 17:49:16 +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-06-29 20:13:39 +03:00
|
|
|
*
|
|
|
|
* @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-06-29 20:13:39 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-05-17 12:42:03 +03:00
|
|
|
namespace OCA\Files_Sharing\Tests;
|
2015-06-29 20:13:39 +03:00
|
|
|
|
|
|
|
use OC\Files\Filesystem;
|
|
|
|
use OC\Files\View;
|
|
|
|
use OCP\Lock\ILockingProvider;
|
2020-06-24 17:49:16 +03:00
|
|
|
use OCP\Share\IShare;
|
2015-06-29 20:13:39 +03:00
|
|
|
|
2015-11-03 03:52:41 +03:00
|
|
|
/**
|
2016-05-17 12:42:03 +03:00
|
|
|
* Class LockingTest
|
2015-11-03 03:52:41 +03:00
|
|
|
*
|
|
|
|
* @group DB
|
|
|
|
*
|
2016-05-17 12:42:03 +03:00
|
|
|
* @package OCA\Files_Sharing\Tests
|
2015-11-03 03:52:41 +03:00
|
|
|
*/
|
2016-05-17 12:42:03 +03:00
|
|
|
class LockingTest extends TestCase {
|
2015-06-29 20:13:39 +03:00
|
|
|
/**
|
2015-09-22 01:56:36 +03:00
|
|
|
* @var \Test\Util\User\Dummy
|
2015-06-29 20:13:39 +03:00
|
|
|
*/
|
|
|
|
private $userBackend;
|
|
|
|
|
|
|
|
private $ownerUid;
|
|
|
|
private $recipientUid;
|
|
|
|
|
2019-11-27 17:27:18 +03:00
|
|
|
protected function setUp(): void {
|
2015-06-29 20:13:39 +03:00
|
|
|
parent::setUp();
|
|
|
|
|
2015-09-22 01:56:36 +03:00
|
|
|
$this->userBackend = new \Test\Util\User\Dummy();
|
2015-06-29 20:13:39 +03:00
|
|
|
\OC::$server->getUserManager()->registerBackend($this->userBackend);
|
|
|
|
|
|
|
|
$this->ownerUid = $this->getUniqueID('owner_');
|
|
|
|
$this->recipientUid = $this->getUniqueID('recipient_');
|
|
|
|
$this->userBackend->createUser($this->ownerUid, '');
|
|
|
|
$this->userBackend->createUser($this->recipientUid, '');
|
|
|
|
|
|
|
|
$this->loginAsUser($this->ownerUid);
|
|
|
|
Filesystem::mkdir('/foo');
|
|
|
|
Filesystem::file_put_contents('/foo/bar.txt', 'asd');
|
|
|
|
$fileId = Filesystem::getFileInfo('/foo/bar.txt')->getId();
|
|
|
|
|
2016-04-15 10:02:17 +03:00
|
|
|
$this->share(
|
2020-06-24 17:49:16 +03:00
|
|
|
IShare::TYPE_USER,
|
2016-04-15 10:02:17 +03:00
|
|
|
'/foo/bar.txt',
|
|
|
|
$this->ownerUid,
|
|
|
|
$this->recipientUid,
|
|
|
|
\OCP\Constants::PERMISSION_READ | \OCP\Constants::PERMISSION_UPDATE | \OCP\Constants::PERMISSION_SHARE
|
|
|
|
);
|
2015-06-29 20:13:39 +03:00
|
|
|
|
|
|
|
$this->loginAsUser($this->recipientUid);
|
|
|
|
$this->assertTrue(Filesystem::file_exists('bar.txt'));
|
|
|
|
}
|
|
|
|
|
2019-11-27 17:27:18 +03:00
|
|
|
protected function tearDown(): void {
|
2015-06-29 20:13:39 +03:00
|
|
|
\OC::$server->getUserManager()->removeBackend($this->userBackend);
|
|
|
|
parent::tearDown();
|
|
|
|
}
|
|
|
|
|
2020-06-24 17:49:16 +03:00
|
|
|
|
2015-06-29 20:13:39 +03:00
|
|
|
public function testLockAsRecipient() {
|
2019-11-27 17:27:18 +03:00
|
|
|
$this->expectException(\OCP\Lock\LockedException::class);
|
|
|
|
|
2015-06-29 20:13:39 +03:00
|
|
|
$this->loginAsUser($this->ownerUid);
|
|
|
|
|
|
|
|
Filesystem::initMountPoints($this->recipientUid);
|
|
|
|
$recipientView = new View('/' . $this->recipientUid . '/files');
|
|
|
|
$recipientView->lockFile('bar.txt', ILockingProvider::LOCK_EXCLUSIVE);
|
|
|
|
|
|
|
|
Filesystem::rename('/foo', '/asd');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testUnLockAsRecipient() {
|
|
|
|
$this->loginAsUser($this->ownerUid);
|
|
|
|
|
|
|
|
Filesystem::initMountPoints($this->recipientUid);
|
|
|
|
$recipientView = new View('/' . $this->recipientUid . '/files');
|
|
|
|
$recipientView->lockFile('bar.txt', ILockingProvider::LOCK_EXCLUSIVE);
|
|
|
|
$recipientView->unlockFile('bar.txt', ILockingProvider::LOCK_EXCLUSIVE);
|
|
|
|
|
|
|
|
$this->assertTrue(Filesystem::rename('/foo', '/asd'));
|
|
|
|
}
|
2015-06-30 14:49:54 +03:00
|
|
|
|
|
|
|
public function testChangeLock() {
|
|
|
|
Filesystem::initMountPoints($this->recipientUid);
|
|
|
|
$recipientView = new View('/' . $this->recipientUid . '/files');
|
|
|
|
$recipientView->lockFile('bar.txt', ILockingProvider::LOCK_SHARED);
|
|
|
|
$recipientView->changeLock('bar.txt', ILockingProvider::LOCK_EXCLUSIVE);
|
|
|
|
$recipientView->unlockFile('bar.txt', ILockingProvider::LOCK_EXCLUSIVE);
|
|
|
|
|
2018-01-25 13:23:12 +03:00
|
|
|
$this->addToAssertionCount(1);
|
2015-06-30 14:49:54 +03:00
|
|
|
}
|
2015-06-29 20:13:39 +03:00
|
|
|
}
|