2015-10-30 15:10:08 +03:00
|
|
|
|
<?php
|
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
|
*
|
2019-12-03 21:57:53 +03:00
|
|
|
|
* @author Bjoern Schiessle <bjoern@schiessle.org>
|
2020-03-31 11:49:10 +03:00
|
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2019-12-03 21:57:53 +03:00
|
|
|
|
* @author Daniel Calviño Sánchez <danxuliu@gmail.com>
|
2017-11-06 17:56:42 +03:00
|
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2019-12-03 21:57:53 +03:00
|
|
|
|
* @author John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
|
|
|
|
|
* @author Maxence Lange <maxence@artificial-owl.com>
|
|
|
|
|
* @author Maxence Lange <maxence@nextcloud.com>
|
2017-11-06 17:56:42 +03:00
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 17:49:16 +03:00
|
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2017-11-06 17:56:42 +03:00
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2016-07-21 17:49:16 +03:00
|
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
2015-10-30 15:10:08 +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-10-30 15:10:08 +03:00
|
|
|
|
*
|
|
|
|
|
*/
|
2019-11-22 22:52:10 +03:00
|
|
|
|
|
2016-10-21 21:25:07 +03:00
|
|
|
|
namespace OCA\Files_Sharing\Tests\Controller;
|
2015-10-30 15:10:08 +03:00
|
|
|
|
|
2019-11-22 22:52:10 +03:00
|
|
|
|
use OCA\Files_Sharing\Controller\ShareAPIController;
|
2018-07-10 14:01:31 +03:00
|
|
|
|
use OCP\App\IAppManager;
|
2016-07-20 15:24:22 +03:00
|
|
|
|
use OCP\AppFramework\Http\DataResponse;
|
2019-07-03 17:32:45 +03:00
|
|
|
|
use OCP\AppFramework\OCS\OCSException;
|
2016-09-13 10:26:00 +03:00
|
|
|
|
use OCP\AppFramework\OCS\OCSNotFoundException;
|
2017-10-24 16:26:53 +03:00
|
|
|
|
use OCP\Files\File;
|
2016-09-13 10:26:00 +03:00
|
|
|
|
use OCP\Files\Folder;
|
2019-11-22 22:52:10 +03:00
|
|
|
|
use OCP\Files\IRootFolder;
|
2019-06-27 16:27:21 +03:00
|
|
|
|
use OCP\Files\Mount\IMountPoint;
|
2019-11-22 22:52:10 +03:00
|
|
|
|
use OCP\Files\NotFoundException;
|
2017-10-24 16:26:53 +03:00
|
|
|
|
use OCP\Files\Storage;
|
2017-12-01 17:50:29 +03:00
|
|
|
|
use OCP\IConfig;
|
2015-11-24 11:37:17 +03:00
|
|
|
|
use OCP\IGroupManager;
|
2019-11-22 22:52:10 +03:00
|
|
|
|
use OCP\IL10N;
|
2015-11-24 11:37:17 +03:00
|
|
|
|
use OCP\IRequest;
|
2019-11-22 22:52:10 +03:00
|
|
|
|
use OCP\IServerContainer;
|
2015-11-24 11:37:17 +03:00
|
|
|
|
use OCP\IURLGenerator;
|
|
|
|
|
use OCP\IUser;
|
2019-11-22 22:52:10 +03:00
|
|
|
|
use OCP\IUserManager;
|
2016-03-09 11:11:41 +03:00
|
|
|
|
use OCP\Lock\LockedException;
|
2019-11-22 22:52:10 +03:00
|
|
|
|
use OCP\Share;
|
2019-07-03 17:32:45 +03:00
|
|
|
|
use OCP\Share\Exceptions\GenericShareException;
|
2016-10-21 21:25:07 +03:00
|
|
|
|
use OCP\Share\IManager;
|
2017-04-20 13:27:32 +03:00
|
|
|
|
use OCP\Share\IShare;
|
2019-11-22 22:52:10 +03:00
|
|
|
|
use Test\TestCase;
|
2015-10-30 15:10:08 +03:00
|
|
|
|
|
2016-02-16 18:04:17 +03:00
|
|
|
|
/**
|
2016-10-21 21:25:07 +03:00
|
|
|
|
* Class ShareAPIControllerTest
|
2016-02-16 18:04:17 +03:00
|
|
|
|
*
|
2016-10-21 21:25:07 +03:00
|
|
|
|
* @package OCA\Files_Sharing\Tests\Controller
|
2016-02-16 18:04:17 +03:00
|
|
|
|
* @group DB
|
|
|
|
|
*/
|
2017-02-10 18:20:25 +03:00
|
|
|
|
class ShareAPIControllerTest extends TestCase {
|
2015-10-30 15:10:08 +03:00
|
|
|
|
|
2016-07-20 15:24:22 +03:00
|
|
|
|
/** @var string */
|
|
|
|
|
private $appName = 'files_sharing';
|
|
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
|
/** @var \OC\Share20\Manager|\PHPUnit_Framework_MockObject_MockObject */
|
2015-10-30 15:10:08 +03:00
|
|
|
|
private $shareManager;
|
|
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
|
/** @var IGroupManager|\PHPUnit_Framework_MockObject_MockObject */
|
2015-10-30 15:10:08 +03:00
|
|
|
|
private $groupManager;
|
|
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
|
/** @var IUserManager|\PHPUnit_Framework_MockObject_MockObject */
|
2015-10-30 15:10:08 +03:00
|
|
|
|
private $userManager;
|
|
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
|
/** @var IRequest|\PHPUnit_Framework_MockObject_MockObject */
|
2015-10-30 15:10:08 +03:00
|
|
|
|
private $request;
|
|
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
|
/** @var IRootFolder|\PHPUnit_Framework_MockObject_MockObject */
|
2015-11-24 12:16:02 +03:00
|
|
|
|
private $rootFolder;
|
2015-10-30 15:10:08 +03:00
|
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
|
/** @var IURLGenerator|\PHPUnit_Framework_MockObject_MockObject */
|
2015-11-06 14:05:19 +03:00
|
|
|
|
private $urlGenerator;
|
|
|
|
|
|
2016-10-21 21:25:07 +03:00
|
|
|
|
/** @var string|\PHPUnit_Framework_MockObject_MockObject */
|
2015-11-24 11:37:17 +03:00
|
|
|
|
private $currentUser;
|
|
|
|
|
|
2016-10-21 21:25:07 +03:00
|
|
|
|
/** @var ShareAPIController */
|
2015-10-30 15:10:08 +03:00
|
|
|
|
private $ocs;
|
|
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
|
/** @var IL10N|\PHPUnit_Framework_MockObject_MockObject */
|
2016-04-15 15:05:36 +03:00
|
|
|
|
private $l;
|
|
|
|
|
|
2017-12-01 17:50:29 +03:00
|
|
|
|
/** @var IConfig|\PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
|
private $config;
|
|
|
|
|
|
2018-07-10 14:01:31 +03:00
|
|
|
|
/** @var IAppManager|\PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
|
private $appManager;
|
|
|
|
|
|
2018-06-29 14:22:26 +03:00
|
|
|
|
/** @var IServerContainer|\PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
|
private $serverContainer;
|
|
|
|
|
|
2019-11-21 18:40:38 +03:00
|
|
|
|
protected function setUp(): void {
|
2016-10-21 21:25:07 +03:00
|
|
|
|
$this->shareManager = $this->createMock(IManager::class);
|
2016-02-26 16:58:41 +03:00
|
|
|
|
$this->shareManager
|
|
|
|
|
->expects($this->any())
|
|
|
|
|
->method('shareApiEnabled')
|
|
|
|
|
->willReturn(true);
|
2019-12-02 22:16:33 +03:00
|
|
|
|
$this->shareManager
|
|
|
|
|
->expects($this->any())
|
|
|
|
|
->method('shareProviderExists')->willReturn(true);
|
2016-10-21 21:25:07 +03:00
|
|
|
|
$this->groupManager = $this->createMock(IGroupManager::class);
|
|
|
|
|
$this->userManager = $this->createMock(IUserManager::class);
|
|
|
|
|
$this->request = $this->createMock(IRequest::class);
|
|
|
|
|
$this->rootFolder = $this->createMock(IRootFolder::class);
|
|
|
|
|
$this->urlGenerator = $this->createMock(IURLGenerator::class);
|
|
|
|
|
$this->currentUser = 'currentUser';
|
|
|
|
|
|
|
|
|
|
$this->l = $this->createMock(IL10N::class);
|
2016-04-15 15:05:36 +03:00
|
|
|
|
$this->l->method('t')
|
2020-04-09 14:53:40 +03:00
|
|
|
|
->willReturnCallback(function ($text, $parameters = []) {
|
2016-04-15 15:05:36 +03:00
|
|
|
|
return vsprintf($text, $parameters);
|
2020-03-26 00:21:27 +03:00
|
|
|
|
});
|
2017-12-01 17:50:29 +03:00
|
|
|
|
$this->config = $this->createMock(IConfig::class);
|
2018-07-10 14:01:31 +03:00
|
|
|
|
$this->appManager = $this->createMock(IAppManager::class);
|
2018-06-29 14:22:26 +03:00
|
|
|
|
$this->serverContainer = $this->createMock(IServerContainer::class);
|
2016-04-15 15:05:36 +03:00
|
|
|
|
|
2016-10-21 21:25:07 +03:00
|
|
|
|
$this->ocs = new ShareAPIController(
|
2016-07-20 15:24:22 +03:00
|
|
|
|
$this->appName,
|
|
|
|
|
$this->request,
|
2016-04-15 15:05:36 +03:00
|
|
|
|
$this->shareManager,
|
|
|
|
|
$this->groupManager,
|
|
|
|
|
$this->userManager,
|
|
|
|
|
$this->rootFolder,
|
|
|
|
|
$this->urlGenerator,
|
|
|
|
|
$this->currentUser,
|
2017-12-01 17:50:29 +03:00
|
|
|
|
$this->l,
|
2018-07-10 14:01:31 +03:00
|
|
|
|
$this->config,
|
2018-06-29 14:22:26 +03:00
|
|
|
|
$this->appManager,
|
|
|
|
|
$this->serverContainer
|
2015-11-24 11:37:17 +03:00
|
|
|
|
);
|
2015-10-30 15:10:08 +03:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-13 10:26:00 +03:00
|
|
|
|
/**
|
2016-10-21 21:25:07 +03:00
|
|
|
|
* @return ShareAPIController|\PHPUnit_Framework_MockObject_MockObject
|
2016-09-13 10:26:00 +03:00
|
|
|
|
*/
|
2016-01-27 17:42:11 +03:00
|
|
|
|
private function mockFormatShare() {
|
2016-10-21 21:25:07 +03:00
|
|
|
|
return $this->getMockBuilder(ShareAPIController::class)
|
2016-01-27 17:42:11 +03:00
|
|
|
|
->setConstructorArgs([
|
2016-07-20 15:24:22 +03:00
|
|
|
|
$this->appName,
|
|
|
|
|
$this->request,
|
2016-01-27 17:42:11 +03:00
|
|
|
|
$this->shareManager,
|
|
|
|
|
$this->groupManager,
|
|
|
|
|
$this->userManager,
|
|
|
|
|
$this->rootFolder,
|
|
|
|
|
$this->urlGenerator,
|
2016-04-15 15:05:36 +03:00
|
|
|
|
$this->currentUser,
|
|
|
|
|
$this->l,
|
2018-07-10 14:01:31 +03:00
|
|
|
|
$this->config,
|
2018-06-29 14:22:26 +03:00
|
|
|
|
$this->appManager,
|
|
|
|
|
$this->serverContainer
|
2016-01-27 17:42:11 +03:00
|
|
|
|
])->setMethods(['formatShare'])
|
|
|
|
|
->getMock();
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-03 10:14:48 +03:00
|
|
|
|
private function newShare() {
|
|
|
|
|
return \OC::$server->getShareManager()->newShare();
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-10 12:03:08 +03:00
|
|
|
|
|
2015-10-30 15:10:08 +03:00
|
|
|
|
public function testDeleteShareShareNotFound() {
|
2019-11-27 17:27:18 +03:00
|
|
|
|
$this->expectException(\OCP\AppFramework\OCS\OCSNotFoundException::class);
|
|
|
|
|
$this->expectExceptionMessage('Wrong share ID, share doesn\'t exist');
|
|
|
|
|
|
2015-10-30 15:10:08 +03:00
|
|
|
|
$this->shareManager
|
2019-12-02 22:16:33 +03:00
|
|
|
|
->expects($this->exactly(5))
|
2015-10-30 15:10:08 +03:00
|
|
|
|
->method('getShareById')
|
2020-04-09 14:53:40 +03:00
|
|
|
|
->willReturnCallback(function ($id) {
|
2019-12-02 22:16:33 +03:00
|
|
|
|
if ($id === 'ocinternal:42' || $id === 'ocRoomShare:42' || $id === 'ocFederatedSharing:42' || $id === 'ocCircleShare:42' || $id === 'ocMailShare:42') {
|
2016-02-04 12:01:40 +03:00
|
|
|
|
throw new \OCP\Share\Exceptions\ShareNotFound();
|
|
|
|
|
} else {
|
|
|
|
|
throw new \Exception();
|
|
|
|
|
}
|
2020-03-26 00:21:27 +03:00
|
|
|
|
});
|
2015-10-30 15:10:08 +03:00
|
|
|
|
|
2016-02-04 13:13:06 +03:00
|
|
|
|
$this->shareManager->method('outgoingServer2ServerSharesAllowed')->willReturn(true);
|
|
|
|
|
|
2016-07-20 15:24:22 +03:00
|
|
|
|
$this->ocs->deleteShare(42);
|
2015-10-30 15:10:08 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testDeleteShare() {
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$node = $this->getMockBuilder(File::class)->getMock();
|
2016-03-09 11:11:41 +03:00
|
|
|
|
|
2016-02-03 10:14:48 +03:00
|
|
|
|
$share = $this->newShare();
|
2016-10-21 21:25:07 +03:00
|
|
|
|
$share->setSharedBy($this->currentUser)
|
2016-03-09 11:11:41 +03:00
|
|
|
|
->setNode($node);
|
2015-10-30 15:10:08 +03:00
|
|
|
|
$this->shareManager
|
|
|
|
|
->expects($this->once())
|
|
|
|
|
->method('getShareById')
|
2016-01-13 15:02:23 +03:00
|
|
|
|
->with('ocinternal:42')
|
2015-10-30 15:10:08 +03:00
|
|
|
|
->willReturn($share);
|
|
|
|
|
$this->shareManager
|
|
|
|
|
->expects($this->once())
|
|
|
|
|
->method('deleteShare')
|
|
|
|
|
->with($share);
|
|
|
|
|
|
2016-03-09 11:11:41 +03:00
|
|
|
|
$node->expects($this->once())
|
|
|
|
|
->method('lock')
|
|
|
|
|
->with(\OCP\Lock\ILockingProvider::LOCK_SHARED);
|
|
|
|
|
|
2016-07-20 15:24:22 +03:00
|
|
|
|
$expected = new DataResponse();
|
|
|
|
|
$result = $this->ocs->deleteShare(42);
|
|
|
|
|
|
|
|
|
|
$this->assertInstanceOf(get_class($expected), $result);
|
|
|
|
|
$this->assertEquals($expected->getData(), $result->getData());
|
2015-10-30 15:10:08 +03:00
|
|
|
|
}
|
2015-11-06 14:05:19 +03:00
|
|
|
|
|
2020-01-10 12:03:08 +03:00
|
|
|
|
|
2016-03-09 11:11:41 +03:00
|
|
|
|
public function testDeleteShareLocked() {
|
2019-11-27 17:27:18 +03:00
|
|
|
|
$this->expectException(\OCP\AppFramework\OCS\OCSNotFoundException::class);
|
|
|
|
|
$this->expectExceptionMessage('Could not delete share');
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$node = $this->getMockBuilder(File::class)->getMock();
|
2016-03-09 11:11:41 +03:00
|
|
|
|
|
|
|
|
|
$share = $this->newShare();
|
2019-08-26 14:11:09 +03:00
|
|
|
|
$share->setNode($node);
|
2019-11-22 15:23:56 +03:00
|
|
|
|
|
2016-03-09 11:11:41 +03:00
|
|
|
|
$this->shareManager
|
|
|
|
|
->expects($this->once())
|
|
|
|
|
->method('getShareById')
|
|
|
|
|
->with('ocinternal:42')
|
|
|
|
|
->willReturn($share);
|
2019-08-26 14:11:09 +03:00
|
|
|
|
|
2016-03-09 11:11:41 +03:00
|
|
|
|
$this->shareManager
|
|
|
|
|
->expects($this->never())
|
|
|
|
|
->method('deleteShare')
|
|
|
|
|
->with($share);
|
|
|
|
|
|
|
|
|
|
$node->expects($this->once())
|
|
|
|
|
->method('lock')
|
|
|
|
|
->with(\OCP\Lock\ILockingProvider::LOCK_SHARED)
|
|
|
|
|
->will($this->throwException(new LockedException('mypath')));
|
2019-11-22 15:23:56 +03:00
|
|
|
|
|
2019-08-26 14:11:09 +03:00
|
|
|
|
$this->assertFalse($this->invokePrivate($this->ocs, 'canDeleteFromSelf', [$share]));
|
|
|
|
|
$this->assertFalse($this->invokePrivate($this->ocs, 'canDeleteShare', [$share]));
|
|
|
|
|
|
|
|
|
|
$this->ocs->deleteShare(42);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2019-11-22 15:23:56 +03:00
|
|
|
|
* You can always remove a share that was shared with you
|
2019-08-26 14:11:09 +03:00
|
|
|
|
*/
|
|
|
|
|
public function testDeleteShareWithMe() {
|
|
|
|
|
$node = $this->getMockBuilder(File::class)->getMock();
|
|
|
|
|
|
|
|
|
|
$share = $this->newShare();
|
|
|
|
|
$share->setSharedWith($this->currentUser)
|
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_USER)
|
|
|
|
|
->setNode($node);
|
2019-11-22 15:23:56 +03:00
|
|
|
|
|
2019-08-26 14:11:09 +03:00
|
|
|
|
$this->shareManager
|
|
|
|
|
->expects($this->once())
|
|
|
|
|
->method('getShareById')
|
|
|
|
|
->with('ocinternal:42')
|
|
|
|
|
->willReturn($share);
|
|
|
|
|
|
|
|
|
|
$this->shareManager
|
|
|
|
|
->expects($this->once())
|
|
|
|
|
->method('deleteShare')
|
|
|
|
|
->with($share);
|
|
|
|
|
|
|
|
|
|
$node->expects($this->once())
|
|
|
|
|
->method('lock')
|
|
|
|
|
->with(\OCP\Lock\ILockingProvider::LOCK_SHARED);
|
2019-11-22 15:23:56 +03:00
|
|
|
|
|
2019-08-26 14:11:09 +03:00
|
|
|
|
$this->assertFalse($this->invokePrivate($this->ocs, 'canDeleteFromSelf', [$share]));
|
|
|
|
|
$this->assertTrue($this->invokePrivate($this->ocs, 'canDeleteShare', [$share]));
|
|
|
|
|
|
|
|
|
|
$this->ocs->deleteShare(42);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* You can always delete a share you own
|
|
|
|
|
*/
|
|
|
|
|
public function testDeleteShareOwner() {
|
|
|
|
|
$node = $this->getMockBuilder(File::class)->getMock();
|
|
|
|
|
|
|
|
|
|
$share = $this->newShare();
|
|
|
|
|
$share->setSharedBy($this->currentUser)
|
|
|
|
|
->setNode($node);
|
|
|
|
|
|
|
|
|
|
$this->shareManager
|
|
|
|
|
->expects($this->once())
|
|
|
|
|
->method('getShareById')
|
|
|
|
|
->with('ocinternal:42')
|
|
|
|
|
->willReturn($share);
|
|
|
|
|
|
|
|
|
|
$this->shareManager
|
|
|
|
|
->expects($this->once())
|
|
|
|
|
->method('deleteShare')
|
|
|
|
|
->with($share);
|
|
|
|
|
|
|
|
|
|
$node->expects($this->once())
|
|
|
|
|
->method('lock')
|
|
|
|
|
->with(\OCP\Lock\ILockingProvider::LOCK_SHARED);
|
2019-11-22 15:23:56 +03:00
|
|
|
|
|
2019-08-26 14:11:09 +03:00
|
|
|
|
$this->assertFalse($this->invokePrivate($this->ocs, 'canDeleteFromSelf', [$share]));
|
|
|
|
|
$this->assertTrue($this->invokePrivate($this->ocs, 'canDeleteShare', [$share]));
|
|
|
|
|
|
|
|
|
|
$this->ocs->deleteShare(42);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* You can always delete a share when you own
|
|
|
|
|
* the file path it belong to
|
|
|
|
|
*/
|
|
|
|
|
public function testDeleteShareFileOwner() {
|
|
|
|
|
$node = $this->getMockBuilder(File::class)->getMock();
|
|
|
|
|
|
|
|
|
|
$share = $this->newShare();
|
|
|
|
|
$share->setShareOwner($this->currentUser)
|
|
|
|
|
->setNode($node);
|
|
|
|
|
|
|
|
|
|
$this->shareManager
|
|
|
|
|
->expects($this->once())
|
|
|
|
|
->method('getShareById')
|
|
|
|
|
->with('ocinternal:42')
|
|
|
|
|
->willReturn($share);
|
|
|
|
|
|
|
|
|
|
$this->shareManager
|
|
|
|
|
->expects($this->once())
|
|
|
|
|
->method('deleteShare')
|
|
|
|
|
->with($share);
|
|
|
|
|
|
|
|
|
|
$node->expects($this->once())
|
|
|
|
|
->method('lock')
|
|
|
|
|
->with(\OCP\Lock\ILockingProvider::LOCK_SHARED);
|
2019-11-22 15:23:56 +03:00
|
|
|
|
|
2019-08-26 14:11:09 +03:00
|
|
|
|
$this->assertFalse($this->invokePrivate($this->ocs, 'canDeleteFromSelf', [$share]));
|
|
|
|
|
$this->assertTrue($this->invokePrivate($this->ocs, 'canDeleteShare', [$share]));
|
|
|
|
|
|
|
|
|
|
$this->ocs->deleteShare(42);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* You can remove (the mountpoint, not the share)
|
|
|
|
|
* a share if you're in the group the share is shared with
|
|
|
|
|
*/
|
|
|
|
|
public function testDeleteSharedWithMyGroup() {
|
|
|
|
|
$node = $this->getMockBuilder(File::class)->getMock();
|
|
|
|
|
|
|
|
|
|
$share = $this->newShare();
|
|
|
|
|
$share->setShareType(\OCP\Share::SHARE_TYPE_GROUP)
|
|
|
|
|
->setSharedWith('group')
|
|
|
|
|
->setNode($node);
|
|
|
|
|
|
|
|
|
|
$this->shareManager
|
|
|
|
|
->expects($this->once())
|
|
|
|
|
->method('getShareById')
|
|
|
|
|
->with('ocinternal:42')
|
|
|
|
|
->willReturn($share);
|
|
|
|
|
|
|
|
|
|
// canDeleteShareFromSelf
|
|
|
|
|
$user = $this->createMock(IUser::class);
|
|
|
|
|
$group = $this->getMockBuilder('OCP\IGroup')->getMock();
|
|
|
|
|
$this->groupManager
|
|
|
|
|
->method('get')
|
|
|
|
|
->with('group')
|
|
|
|
|
->willReturn($group);
|
|
|
|
|
$this->userManager
|
|
|
|
|
->method('get')
|
|
|
|
|
->with($this->currentUser)
|
|
|
|
|
->willReturn($user);
|
|
|
|
|
$group->method('inGroup')
|
|
|
|
|
->with($user)
|
|
|
|
|
->willReturn(true);
|
|
|
|
|
|
|
|
|
|
$node->expects($this->once())
|
|
|
|
|
->method('lock')
|
|
|
|
|
->with(\OCP\Lock\ILockingProvider::LOCK_SHARED);
|
|
|
|
|
|
2019-08-16 16:09:15 +03:00
|
|
|
|
$userFolder = $this->getMockBuilder('OCP\Files\Folder')->getMock();
|
|
|
|
|
$this->rootFolder->method('getUserFolder')
|
|
|
|
|
->with($this->currentUser)
|
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
|
|
|
|
$userFolder->method('getById')
|
|
|
|
|
->with($share->getNodeId())
|
|
|
|
|
->willReturn([$share->getNode()]);
|
|
|
|
|
|
2019-08-26 14:11:09 +03:00
|
|
|
|
$this->shareManager->expects($this->once())
|
|
|
|
|
->method('deleteFromSelf')
|
|
|
|
|
->with($share, $this->currentUser);
|
2019-11-22 15:23:56 +03:00
|
|
|
|
|
2019-08-26 14:11:09 +03:00
|
|
|
|
$this->shareManager->expects($this->never())
|
|
|
|
|
->method('deleteShare');
|
2019-11-22 15:23:56 +03:00
|
|
|
|
|
2019-08-26 14:11:09 +03:00
|
|
|
|
$this->assertTrue($this->invokePrivate($this->ocs, 'canDeleteShareFromSelf', [$share]));
|
|
|
|
|
$this->assertFalse($this->invokePrivate($this->ocs, 'canDeleteShare', [$share]));
|
|
|
|
|
|
|
|
|
|
$this->ocs->deleteShare(42);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* You cannot remove a share if you're not
|
|
|
|
|
* in the group the share is shared with
|
|
|
|
|
*/
|
|
|
|
|
public function testDeleteSharedWithGroupIDontBelongTo() {
|
2019-11-27 17:27:18 +03:00
|
|
|
|
$this->expectException(\OCP\AppFramework\OCS\OCSNotFoundException::class);
|
|
|
|
|
$this->expectExceptionMessage('Wrong share ID, share doesn\'t exist');
|
|
|
|
|
|
2019-08-26 14:11:09 +03:00
|
|
|
|
$node = $this->getMockBuilder(File::class)->getMock();
|
|
|
|
|
|
|
|
|
|
$share = $this->newShare();
|
|
|
|
|
$share->setShareType(\OCP\Share::SHARE_TYPE_GROUP)
|
|
|
|
|
->setSharedWith('group')
|
|
|
|
|
->setNode($node);
|
|
|
|
|
|
|
|
|
|
$this->shareManager
|
|
|
|
|
->expects($this->once())
|
|
|
|
|
->method('getShareById')
|
|
|
|
|
->with('ocinternal:42')
|
|
|
|
|
->willReturn($share);
|
|
|
|
|
|
|
|
|
|
// canDeleteShareFromSelf
|
|
|
|
|
$user = $this->createMock(IUser::class);
|
|
|
|
|
$group = $this->getMockBuilder('OCP\IGroup')->getMock();
|
|
|
|
|
$this->groupManager
|
|
|
|
|
->method('get')
|
|
|
|
|
->with('group')
|
|
|
|
|
->willReturn($group);
|
|
|
|
|
$this->userManager
|
|
|
|
|
->method('get')
|
|
|
|
|
->with($this->currentUser)
|
|
|
|
|
->willReturn($user);
|
|
|
|
|
$group->method('inGroup')
|
|
|
|
|
->with($user)
|
|
|
|
|
->willReturn(false);
|
|
|
|
|
|
|
|
|
|
$node->expects($this->once())
|
|
|
|
|
->method('lock')
|
|
|
|
|
->with(\OCP\Lock\ILockingProvider::LOCK_SHARED);
|
|
|
|
|
|
2019-08-16 16:09:15 +03:00
|
|
|
|
$userFolder = $this->getMockBuilder('OCP\Files\Folder')->getMock();
|
|
|
|
|
$this->rootFolder->method('getUserFolder')
|
|
|
|
|
->with($this->currentUser)
|
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
|
|
|
|
$userFolder->method('getById')
|
|
|
|
|
->with($share->getNodeId())
|
|
|
|
|
->willReturn([$share->getNode()]);
|
|
|
|
|
|
2019-08-26 14:11:09 +03:00
|
|
|
|
$this->shareManager->expects($this->never())
|
|
|
|
|
->method('deleteFromSelf');
|
2019-11-22 15:23:56 +03:00
|
|
|
|
|
2019-08-26 14:11:09 +03:00
|
|
|
|
$this->shareManager->expects($this->never())
|
|
|
|
|
->method('deleteShare');
|
2019-11-22 15:23:56 +03:00
|
|
|
|
|
2019-08-26 14:11:09 +03:00
|
|
|
|
$this->assertFalse($this->invokePrivate($this->ocs, 'canDeleteShareFromSelf', [$share]));
|
|
|
|
|
$this->assertFalse($this->invokePrivate($this->ocs, 'canDeleteShare', [$share]));
|
2016-03-09 11:11:41 +03:00
|
|
|
|
|
2016-07-20 15:24:22 +03:00
|
|
|
|
$this->ocs->deleteShare(42);
|
2016-03-09 11:11:41 +03:00
|
|
|
|
}
|
|
|
|
|
|
2016-01-13 15:02:23 +03:00
|
|
|
|
/*
|
|
|
|
|
* FIXME: Enable once we have a federated Share Provider
|
|
|
|
|
|
2015-11-06 14:05:19 +03:00
|
|
|
|
public function testGetGetShareNotExists() {
|
|
|
|
|
$this->shareManager
|
|
|
|
|
->expects($this->once())
|
|
|
|
|
->method('getShareById')
|
Fix getting the information of group share as a sharee
When the receiver of a group share modifies it (for example, by moving
it to a different folder) the original share is not modified, but a
"ghost" share that keeps track of the changes made by that specific user
is used instead.
By default, the method "getShareById" in the share provider returns the
share from the point of view of the sharer, but it can be used too to
get the share from the point of view of a sharee by providing the
"recipient" parameter (and if the sharee is not found then the share is
returned from the point of view of the sharer).
The "ShareAPIController" always formats the share from the point of view
of the current user, but when getting the information of a specific
share the "recipient" parameter was not given, so it was always returned
from the point of view of the sharer, even if the current user was a
sharee. Now the "recipient" parameter is set to the current user, and
thus the information of the share is returned from the point of view of
the current user, be it the sharer or a sharee.
Note that this special behaviour of "getShareById" happens only with
group shares; with other types of shares the share is the same for the
sharer and the sharee, and thus the parameter is ignored; it was added
for them too just for consistency.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2018-06-28 13:34:04 +03:00
|
|
|
|
->with('ocinternal:42', 'currentUser')
|
2015-11-06 14:05:19 +03:00
|
|
|
|
->will($this->throwException(new \OC\Share20\Exception\ShareNotFound()));
|
|
|
|
|
|
2017-09-21 21:10:36 +03:00
|
|
|
|
$expected = new \OC\OCS\Result(null, 404, 'wrong share ID, share doesn\'t exist.');
|
2015-11-06 14:05:19 +03:00
|
|
|
|
$this->assertEquals($expected, $this->ocs->getShare(42));
|
|
|
|
|
}
|
2016-01-13 15:02:23 +03:00
|
|
|
|
*/
|
2015-11-06 14:05:19 +03:00
|
|
|
|
|
2015-11-24 12:16:02 +03:00
|
|
|
|
public function createShare($id, $shareType, $sharedWith, $sharedBy, $shareOwner, $path, $permissions,
|
2018-07-13 19:39:44 +03:00
|
|
|
|
$shareTime, $expiration, $parent, $target, $mail_send, $note = '', $token=null,
|
2018-10-31 22:10:05 +03:00
|
|
|
|
$password=null, $label = '') {
|
2017-10-25 01:03:28 +03:00
|
|
|
|
$share = $this->getMockBuilder(IShare::class)->getMock();
|
2015-11-06 14:05:19 +03:00
|
|
|
|
$share->method('getId')->willReturn($id);
|
|
|
|
|
$share->method('getShareType')->willReturn($shareType);
|
|
|
|
|
$share->method('getSharedWith')->willReturn($sharedWith);
|
|
|
|
|
$share->method('getSharedBy')->willReturn($sharedBy);
|
2015-11-24 12:16:02 +03:00
|
|
|
|
$share->method('getShareOwner')->willReturn($shareOwner);
|
2016-01-27 22:51:26 +03:00
|
|
|
|
$share->method('getNode')->willReturn($path);
|
2015-11-06 14:05:19 +03:00
|
|
|
|
$share->method('getPermissions')->willReturn($permissions);
|
2018-07-13 19:39:44 +03:00
|
|
|
|
$share->method('getNote')->willReturn($note);
|
2018-10-31 22:10:05 +03:00
|
|
|
|
$share->method('getLabel')->willReturn($label);
|
2016-01-27 22:51:26 +03:00
|
|
|
|
$time = new \DateTime();
|
|
|
|
|
$time->setTimestamp($shareTime);
|
|
|
|
|
$share->method('getShareTime')->willReturn($time);
|
2015-11-06 14:05:19 +03:00
|
|
|
|
$share->method('getExpirationDate')->willReturn($expiration);
|
|
|
|
|
$share->method('getTarget')->willReturn($target);
|
|
|
|
|
$share->method('getMailSend')->willReturn($mail_send);
|
|
|
|
|
$share->method('getToken')->willReturn($token);
|
|
|
|
|
$share->method('getPassword')->willReturn($password);
|
|
|
|
|
|
2016-01-13 15:02:23 +03:00
|
|
|
|
if ($shareType === \OCP\Share::SHARE_TYPE_USER ||
|
|
|
|
|
$shareType === \OCP\Share::SHARE_TYPE_GROUP ||
|
|
|
|
|
$shareType === \OCP\Share::SHARE_TYPE_LINK) {
|
|
|
|
|
$share->method('getFullId')->willReturn('ocinternal:'.$id);
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-06 14:05:19 +03:00
|
|
|
|
return $share;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function dataGetShare() {
|
|
|
|
|
$data = [];
|
|
|
|
|
|
2016-01-05 13:42:54 +03:00
|
|
|
|
$cache = $this->getMockBuilder('OC\Files\Cache\Cache')
|
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
|
->getMock();
|
|
|
|
|
$cache->method('getNumericStorageId')->willReturn(101);
|
|
|
|
|
|
2017-10-26 14:46:16 +03:00
|
|
|
|
$storage = $this->getMockBuilder(Storage::class)
|
2016-01-05 13:42:54 +03:00
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
|
->getMock();
|
2015-11-06 14:05:19 +03:00
|
|
|
|
$storage->method('getId')->willReturn('STORAGE');
|
2016-01-05 13:42:54 +03:00
|
|
|
|
$storage->method('getCache')->willReturn($cache);
|
|
|
|
|
|
2016-07-15 13:22:53 +03:00
|
|
|
|
$parentFolder = $this->getMockBuilder('OCP\Files\Folder')->getMock();
|
2015-11-06 14:05:19 +03:00
|
|
|
|
$parentFolder->method('getId')->willReturn(3);
|
|
|
|
|
|
2016-07-15 13:22:53 +03:00
|
|
|
|
$file = $this->getMockBuilder('OCP\Files\File')->getMock();
|
2015-11-06 14:05:19 +03:00
|
|
|
|
$file->method('getId')->willReturn(1);
|
|
|
|
|
$file->method('getPath')->willReturn('file');
|
|
|
|
|
$file->method('getStorage')->willReturn($storage);
|
|
|
|
|
$file->method('getParent')->willReturn($parentFolder);
|
2016-03-09 22:20:37 +03:00
|
|
|
|
$file->method('getMimeType')->willReturn('myMimeType');
|
2015-11-06 14:05:19 +03:00
|
|
|
|
|
2016-07-15 13:22:53 +03:00
|
|
|
|
$folder = $this->getMockBuilder('OCP\Files\Folder')->getMock();
|
2015-11-06 14:05:19 +03:00
|
|
|
|
$folder->method('getId')->willReturn(2);
|
|
|
|
|
$folder->method('getPath')->willReturn('folder');
|
|
|
|
|
$folder->method('getStorage')->willReturn($storage);
|
|
|
|
|
$folder->method('getParent')->willReturn($parentFolder);
|
2016-03-09 22:20:37 +03:00
|
|
|
|
$folder->method('getMimeType')->willReturn('myFolderMimeType');
|
2015-11-06 14:05:19 +03:00
|
|
|
|
|
|
|
|
|
// File shared with user
|
2015-11-24 12:16:02 +03:00
|
|
|
|
$share = $this->createShare(
|
|
|
|
|
100,
|
|
|
|
|
\OCP\Share::SHARE_TYPE_USER,
|
2016-02-03 10:14:48 +03:00
|
|
|
|
'userId',
|
|
|
|
|
'initiatorId',
|
|
|
|
|
'ownerId',
|
2015-11-24 12:16:02 +03:00
|
|
|
|
$file,
|
|
|
|
|
4,
|
|
|
|
|
5,
|
|
|
|
|
null,
|
|
|
|
|
6,
|
|
|
|
|
'target',
|
2018-07-13 19:39:44 +03:00
|
|
|
|
0,
|
|
|
|
|
'personal note'
|
2015-11-24 12:16:02 +03:00
|
|
|
|
);
|
2015-11-06 14:05:19 +03:00
|
|
|
|
$expected = [
|
|
|
|
|
'id' => 100,
|
|
|
|
|
'share_type' => \OCP\Share::SHARE_TYPE_USER,
|
|
|
|
|
'share_with' => 'userId',
|
|
|
|
|
'share_with_displayname' => 'userDisplay',
|
2016-01-15 22:21:47 +03:00
|
|
|
|
'uid_owner' => 'initiatorId',
|
|
|
|
|
'displayname_owner' => 'initiatorDisplay',
|
2015-11-06 14:05:19 +03:00
|
|
|
|
'item_type' => 'file',
|
|
|
|
|
'item_source' => 1,
|
|
|
|
|
'file_source' => 1,
|
|
|
|
|
'file_target' => 'target',
|
|
|
|
|
'file_parent' => 3,
|
|
|
|
|
'token' => null,
|
|
|
|
|
'expiration' => null,
|
|
|
|
|
'permissions' => 4,
|
|
|
|
|
'stime' => 5,
|
2016-01-27 22:51:26 +03:00
|
|
|
|
'parent' => null,
|
2015-11-06 14:05:19 +03:00
|
|
|
|
'storage_id' => 'STORAGE',
|
|
|
|
|
'path' => 'file',
|
2016-01-05 13:42:54 +03:00
|
|
|
|
'storage' => 101,
|
2015-11-06 14:05:19 +03:00
|
|
|
|
'mail_send' => 0,
|
2016-01-15 22:21:47 +03:00
|
|
|
|
'uid_file_owner' => 'ownerId',
|
2018-07-13 19:39:44 +03:00
|
|
|
|
'note' => 'personal note',
|
2018-10-31 22:10:05 +03:00
|
|
|
|
'label' => '',
|
2016-03-09 22:20:37 +03:00
|
|
|
|
'displayname_file_owner' => 'ownerDisplay',
|
|
|
|
|
'mimetype' => 'myMimeType',
|
2018-10-18 13:38:07 +03:00
|
|
|
|
'hide_download' => 0,
|
2019-10-24 16:51:56 +03:00
|
|
|
|
'can_edit' => false,
|
|
|
|
|
'can_delete' => false,
|
2015-11-06 14:05:19 +03:00
|
|
|
|
];
|
|
|
|
|
$data[] = [$share, $expected];
|
|
|
|
|
|
|
|
|
|
// Folder shared with group
|
2015-11-24 12:16:02 +03:00
|
|
|
|
$share = $this->createShare(
|
|
|
|
|
101,
|
|
|
|
|
\OCP\Share::SHARE_TYPE_GROUP,
|
2016-02-03 10:14:48 +03:00
|
|
|
|
'groupId',
|
|
|
|
|
'initiatorId',
|
|
|
|
|
'ownerId',
|
2015-11-24 12:16:02 +03:00
|
|
|
|
$folder,
|
|
|
|
|
4,
|
|
|
|
|
5,
|
|
|
|
|
null,
|
|
|
|
|
6,
|
|
|
|
|
'target',
|
2018-07-13 19:39:44 +03:00
|
|
|
|
0,
|
|
|
|
|
'personal note'
|
2015-11-24 12:16:02 +03:00
|
|
|
|
);
|
2015-11-06 14:05:19 +03:00
|
|
|
|
$expected = [
|
|
|
|
|
'id' => 101,
|
|
|
|
|
'share_type' => \OCP\Share::SHARE_TYPE_GROUP,
|
|
|
|
|
'share_with' => 'groupId',
|
|
|
|
|
'share_with_displayname' => 'groupId',
|
2016-01-15 22:21:47 +03:00
|
|
|
|
'uid_owner' => 'initiatorId',
|
|
|
|
|
'displayname_owner' => 'initiatorDisplay',
|
2015-11-06 14:05:19 +03:00
|
|
|
|
'item_type' => 'folder',
|
|
|
|
|
'item_source' => 2,
|
|
|
|
|
'file_source' => 2,
|
|
|
|
|
'file_target' => 'target',
|
|
|
|
|
'file_parent' => 3,
|
|
|
|
|
'token' => null,
|
|
|
|
|
'expiration' => null,
|
|
|
|
|
'permissions' => 4,
|
|
|
|
|
'stime' => 5,
|
2016-01-27 22:51:26 +03:00
|
|
|
|
'parent' => null,
|
2015-11-06 14:05:19 +03:00
|
|
|
|
'storage_id' => 'STORAGE',
|
|
|
|
|
'path' => 'folder',
|
2016-01-05 13:42:54 +03:00
|
|
|
|
'storage' => 101,
|
2015-11-06 14:05:19 +03:00
|
|
|
|
'mail_send' => 0,
|
2016-01-15 22:21:47 +03:00
|
|
|
|
'uid_file_owner' => 'ownerId',
|
2018-07-13 19:39:44 +03:00
|
|
|
|
'note' => 'personal note',
|
2018-10-31 22:10:05 +03:00
|
|
|
|
'label' => '',
|
2016-03-09 22:20:37 +03:00
|
|
|
|
'displayname_file_owner' => 'ownerDisplay',
|
|
|
|
|
'mimetype' => 'myFolderMimeType',
|
2018-10-18 13:38:07 +03:00
|
|
|
|
'hide_download' => 0,
|
2019-10-24 16:51:56 +03:00
|
|
|
|
'can_edit' => false,
|
|
|
|
|
'can_delete' => false,
|
2015-11-06 14:05:19 +03:00
|
|
|
|
];
|
|
|
|
|
$data[] = [$share, $expected];
|
|
|
|
|
|
|
|
|
|
// File shared by link with Expire
|
|
|
|
|
$expire = \DateTime::createFromFormat('Y-m-d h:i:s', '2000-01-02 01:02:03');
|
2015-11-24 12:16:02 +03:00
|
|
|
|
$share = $this->createShare(
|
|
|
|
|
101,
|
|
|
|
|
\OCP\Share::SHARE_TYPE_LINK,
|
|
|
|
|
null,
|
2016-02-03 10:14:48 +03:00
|
|
|
|
'initiatorId',
|
|
|
|
|
'ownerId',
|
2015-11-24 12:16:02 +03:00
|
|
|
|
$folder,
|
|
|
|
|
4,
|
|
|
|
|
5,
|
|
|
|
|
$expire,
|
|
|
|
|
6,
|
|
|
|
|
'target',
|
|
|
|
|
0,
|
2018-07-13 19:39:44 +03:00
|
|
|
|
'personal note',
|
2015-11-24 12:16:02 +03:00
|
|
|
|
'token',
|
2018-10-31 22:10:05 +03:00
|
|
|
|
'password',
|
|
|
|
|
'first link share'
|
2015-11-24 12:16:02 +03:00
|
|
|
|
);
|
2015-11-06 14:05:19 +03:00
|
|
|
|
$expected = [
|
|
|
|
|
'id' => 101,
|
|
|
|
|
'share_type' => \OCP\Share::SHARE_TYPE_LINK,
|
2018-11-07 01:48:28 +03:00
|
|
|
|
'password' => 'password',
|
2015-11-06 14:05:19 +03:00
|
|
|
|
'share_with' => 'password',
|
2020-01-10 12:03:08 +03:00
|
|
|
|
'share_with_displayname' => '(Shared link)',
|
2018-10-15 13:27:56 +03:00
|
|
|
|
'send_password_by_talk' => false,
|
2016-01-15 22:21:47 +03:00
|
|
|
|
'uid_owner' => 'initiatorId',
|
|
|
|
|
'displayname_owner' => 'initiatorDisplay',
|
2015-11-06 14:05:19 +03:00
|
|
|
|
'item_type' => 'folder',
|
|
|
|
|
'item_source' => 2,
|
|
|
|
|
'file_source' => 2,
|
|
|
|
|
'file_target' => 'target',
|
|
|
|
|
'file_parent' => 3,
|
|
|
|
|
'token' => 'token',
|
|
|
|
|
'expiration' => '2000-01-02 00:00:00',
|
|
|
|
|
'permissions' => 4,
|
|
|
|
|
'stime' => 5,
|
2016-01-27 22:51:26 +03:00
|
|
|
|
'parent' => null,
|
2015-11-06 14:05:19 +03:00
|
|
|
|
'storage_id' => 'STORAGE',
|
|
|
|
|
'path' => 'folder',
|
2016-01-05 13:42:54 +03:00
|
|
|
|
'storage' => 101,
|
2015-11-06 14:05:19 +03:00
|
|
|
|
'mail_send' => 0,
|
|
|
|
|
'url' => 'url',
|
2016-01-15 22:21:47 +03:00
|
|
|
|
'uid_file_owner' => 'ownerId',
|
2018-07-13 19:39:44 +03:00
|
|
|
|
'note' => 'personal note',
|
2018-10-31 22:10:05 +03:00
|
|
|
|
'label' => 'first link share',
|
2016-03-09 22:20:37 +03:00
|
|
|
|
'displayname_file_owner' => 'ownerDisplay',
|
|
|
|
|
'mimetype' => 'myFolderMimeType',
|
2018-10-18 13:38:07 +03:00
|
|
|
|
'hide_download' => 0,
|
2019-10-24 16:51:56 +03:00
|
|
|
|
'can_edit' => false,
|
|
|
|
|
'can_delete' => false,
|
2015-11-06 14:05:19 +03:00
|
|
|
|
];
|
|
|
|
|
$data[] = [$share, $expected];
|
|
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider dataGetShare
|
|
|
|
|
*/
|
2016-01-27 14:13:53 +03:00
|
|
|
|
public function testGetShare(\OCP\Share\IShare $share, array $result) {
|
2016-10-21 21:25:07 +03:00
|
|
|
|
/** @var ShareAPIController|\PHPUnit_Framework_MockObject_MockObject $ocs */
|
|
|
|
|
$ocs = $this->getMockBuilder(ShareAPIController::class)
|
2015-11-24 11:37:17 +03:00
|
|
|
|
->setConstructorArgs([
|
2016-07-20 15:24:22 +03:00
|
|
|
|
$this->appName,
|
|
|
|
|
$this->request,
|
2015-11-24 11:37:17 +03:00
|
|
|
|
$this->shareManager,
|
|
|
|
|
$this->groupManager,
|
|
|
|
|
$this->userManager,
|
2015-11-24 12:16:02 +03:00
|
|
|
|
$this->rootFolder,
|
2015-11-24 11:37:17 +03:00
|
|
|
|
$this->urlGenerator,
|
2016-04-15 15:05:36 +03:00
|
|
|
|
$this->currentUser,
|
|
|
|
|
$this->l,
|
2018-07-10 14:01:31 +03:00
|
|
|
|
$this->config,
|
2018-06-29 14:22:26 +03:00
|
|
|
|
$this->appManager,
|
|
|
|
|
$this->serverContainer
|
2015-11-24 11:37:17 +03:00
|
|
|
|
])->setMethods(['canAccessShare'])
|
|
|
|
|
->getMock();
|
|
|
|
|
|
2016-07-20 15:24:22 +03:00
|
|
|
|
$ocs->expects($this->any())
|
|
|
|
|
->method('canAccessShare')
|
|
|
|
|
->willReturn(true);
|
2015-11-24 11:37:17 +03:00
|
|
|
|
|
2015-11-06 14:05:19 +03:00
|
|
|
|
$this->shareManager
|
2018-07-13 19:39:44 +03:00
|
|
|
|
->expects($this->any())
|
2015-11-06 14:05:19 +03:00
|
|
|
|
->method('getShareById')
|
Fix getting the information of group share as a sharee
When the receiver of a group share modifies it (for example, by moving
it to a different folder) the original share is not modified, but a
"ghost" share that keeps track of the changes made by that specific user
is used instead.
By default, the method "getShareById" in the share provider returns the
share from the point of view of the sharer, but it can be used too to
get the share from the point of view of a sharee by providing the
"recipient" parameter (and if the sharee is not found then the share is
returned from the point of view of the sharer).
The "ShareAPIController" always formats the share from the point of view
of the current user, but when getting the information of a specific
share the "recipient" parameter was not given, so it was always returned
from the point of view of the sharer, even if the current user was a
sharee. Now the "recipient" parameter is set to the current user, and
thus the information of the share is returned from the point of view of
the current user, be it the sharer or a sharee.
Note that this special behaviour of "getShareById" happens only with
group shares; with other types of shares the share is the same for the
sharer and the sharee, and thus the parameter is ignored; it was added
for them too just for consistency.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2018-06-28 13:34:04 +03:00
|
|
|
|
->with($share->getFullId(), 'currentUser')
|
2015-11-06 14:05:19 +03:00
|
|
|
|
->willReturn($share);
|
|
|
|
|
|
2016-07-15 13:22:53 +03:00
|
|
|
|
$userFolder = $this->getMockBuilder('OCP\Files\Folder')->getMock();
|
2015-11-24 12:16:02 +03:00
|
|
|
|
$userFolder
|
2015-11-06 14:05:19 +03:00
|
|
|
|
->method('getRelativePath')
|
2020-03-26 00:21:27 +03:00
|
|
|
|
->willReturnArgument(0);
|
2015-11-06 14:05:19 +03:00
|
|
|
|
|
2016-06-07 15:17:22 +03:00
|
|
|
|
$userFolder->method('getById')
|
|
|
|
|
->with($share->getNodeId())
|
|
|
|
|
->willReturn([$share->getNode()]);
|
|
|
|
|
|
2015-11-24 12:16:02 +03:00
|
|
|
|
$this->rootFolder->method('getUserFolder')
|
2016-10-21 21:25:07 +03:00
|
|
|
|
->with($this->currentUser)
|
2015-11-24 12:16:02 +03:00
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
2015-11-06 14:05:19 +03:00
|
|
|
|
$this->urlGenerator
|
|
|
|
|
->method('linkToRouteAbsolute')
|
|
|
|
|
->willReturn('url');
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$initiator = $this->getMockBuilder(IUser::class)->getMock();
|
2016-02-03 10:14:48 +03:00
|
|
|
|
$initiator->method('getUID')->willReturn('initiatorId');
|
|
|
|
|
$initiator->method('getDisplayName')->willReturn('initiatorDisplay');
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$owner = $this->getMockBuilder(IUser::class)->getMock();
|
2016-02-03 10:14:48 +03:00
|
|
|
|
$owner->method('getUID')->willReturn('ownerId');
|
|
|
|
|
$owner->method('getDisplayName')->willReturn('ownerDisplay');
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$user = $this->getMockBuilder(IUser::class)->getMock();
|
2016-02-03 10:14:48 +03:00
|
|
|
|
$user->method('getUID')->willReturn('userId');
|
|
|
|
|
$user->method('getDisplayName')->willReturn('userDisplay');
|
|
|
|
|
|
2016-07-15 13:22:53 +03:00
|
|
|
|
$group = $this->getMockBuilder('OCP\IGroup')->getMock();
|
2016-02-03 10:14:48 +03:00
|
|
|
|
$group->method('getGID')->willReturn('groupId');
|
|
|
|
|
|
2020-03-26 00:21:27 +03:00
|
|
|
|
$this->userManager->method('get')->willReturnMap([
|
2016-02-03 10:14:48 +03:00
|
|
|
|
['userId', $user],
|
|
|
|
|
['initiatorId', $initiator],
|
|
|
|
|
['ownerId', $owner],
|
2020-03-26 00:21:27 +03:00
|
|
|
|
]);
|
|
|
|
|
$this->groupManager->method('get')->willReturnMap([
|
2016-02-03 10:14:48 +03:00
|
|
|
|
['group', $group],
|
2020-03-26 00:21:27 +03:00
|
|
|
|
]);
|
2016-02-03 10:14:48 +03:00
|
|
|
|
|
2018-07-13 19:39:44 +03:00
|
|
|
|
$d = $ocs->getShare($share->getId())->getData()[0];
|
|
|
|
|
|
2016-08-09 11:04:29 +03:00
|
|
|
|
$this->assertEquals($result, $ocs->getShare($share->getId())->getData()[0]);
|
2015-11-24 11:37:17 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-10 12:03:08 +03:00
|
|
|
|
|
2016-02-17 15:50:08 +03:00
|
|
|
|
public function testGetShareInvalidNode() {
|
2019-11-27 17:27:18 +03:00
|
|
|
|
$this->expectException(\OCP\AppFramework\OCS\OCSNotFoundException::class);
|
|
|
|
|
$this->expectExceptionMessage('Wrong share ID, share doesn\'t exist');
|
|
|
|
|
|
2016-02-17 15:50:08 +03:00
|
|
|
|
$share = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$share->setSharedBy('initiator')
|
|
|
|
|
->setSharedWith('recipient')
|
|
|
|
|
->setShareOwner('owner');
|
|
|
|
|
|
|
|
|
|
$this->shareManager
|
|
|
|
|
->expects($this->once())
|
|
|
|
|
->method('getShareById')
|
Fix getting the information of group share as a sharee
When the receiver of a group share modifies it (for example, by moving
it to a different folder) the original share is not modified, but a
"ghost" share that keeps track of the changes made by that specific user
is used instead.
By default, the method "getShareById" in the share provider returns the
share from the point of view of the sharer, but it can be used too to
get the share from the point of view of a sharee by providing the
"recipient" parameter (and if the sharee is not found then the share is
returned from the point of view of the sharer).
The "ShareAPIController" always formats the share from the point of view
of the current user, but when getting the information of a specific
share the "recipient" parameter was not given, so it was always returned
from the point of view of the sharer, even if the current user was a
sharee. Now the "recipient" parameter is set to the current user, and
thus the information of the share is returned from the point of view of
the current user, be it the sharer or a sharee.
Note that this special behaviour of "getShareById" happens only with
group shares; with other types of shares the share is the same for the
sharer and the sharee, and thus the parameter is ignored; it was added
for them too just for consistency.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2018-06-28 13:34:04 +03:00
|
|
|
|
->with('ocinternal:42', 'currentUser')
|
2016-02-17 15:50:08 +03:00
|
|
|
|
->willReturn($share);
|
|
|
|
|
|
2019-08-16 16:09:15 +03:00
|
|
|
|
$userFolder = $this->getMockBuilder('OCP\Files\Folder')->getMock();
|
|
|
|
|
$this->rootFolder->method('getUserFolder')
|
|
|
|
|
->with($this->currentUser)
|
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
2016-07-20 15:24:22 +03:00
|
|
|
|
$this->ocs->getShare(42);
|
2016-02-17 15:50:08 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-25 07:31:40 +03:00
|
|
|
|
public function dataGetShares() {
|
|
|
|
|
$folder = $this->getMockBuilder(Folder::class)->getMock();
|
|
|
|
|
$file1 = $this->getMockBuilder(File::class)->getMock();
|
|
|
|
|
$file1->method('getName')
|
|
|
|
|
->willReturn('file1');
|
|
|
|
|
$file2 = $this->getMockBuilder(File::class)->getMock();
|
|
|
|
|
$file2->method('getName')
|
|
|
|
|
->willReturn('file2');
|
|
|
|
|
|
|
|
|
|
$folder->method('getDirectoryListing')
|
|
|
|
|
->willReturn([$file1, $file2]);
|
|
|
|
|
|
|
|
|
|
$file1UserShareOwner = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$file1UserShareOwner->setShareType(IShare::TYPE_USER)
|
|
|
|
|
->setSharedWith('recipient')
|
|
|
|
|
->setSharedBy('initiator')
|
|
|
|
|
->setShareOwner('currentUser')
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
|
->setNode($file1)
|
|
|
|
|
->setId(4);
|
|
|
|
|
|
|
|
|
|
$file1UserShareOwnerExpected = [
|
|
|
|
|
'id' => 4,
|
|
|
|
|
'share_type' => IShare::TYPE_USER,
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$file1UserShareInitiator = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$file1UserShareInitiator->setShareType(IShare::TYPE_USER)
|
|
|
|
|
->setSharedWith('recipient')
|
|
|
|
|
->setSharedBy('currentUser')
|
|
|
|
|
->setShareOwner('owner')
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
|
->setNode($file1)
|
|
|
|
|
->setId(8);
|
|
|
|
|
|
|
|
|
|
$file1UserShareInitiatorExpected = [
|
|
|
|
|
'id' => 8,
|
|
|
|
|
'share_type' => IShare::TYPE_USER,
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$file1UserShareRecipient = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$file1UserShareRecipient->setShareType(IShare::TYPE_USER)
|
|
|
|
|
->setSharedWith('currentUser')
|
|
|
|
|
->setSharedBy('initiator')
|
|
|
|
|
->setShareOwner('owner')
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
|
->setNode($file1)
|
|
|
|
|
->setId(15);
|
|
|
|
|
|
2019-10-25 11:02:06 +03:00
|
|
|
|
$file1UserShareRecipientExpected = [
|
|
|
|
|
'id' => 15,
|
|
|
|
|
'share_type' => IShare::TYPE_USER,
|
|
|
|
|
];
|
|
|
|
|
|
2019-10-25 07:31:40 +03:00
|
|
|
|
$file1UserShareOther = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$file1UserShareOther->setShareType(IShare::TYPE_USER)
|
|
|
|
|
->setSharedWith('recipient')
|
|
|
|
|
->setSharedBy('initiator')
|
|
|
|
|
->setShareOwner('owner')
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
|
->setNode($file1)
|
|
|
|
|
->setId(16);
|
|
|
|
|
|
|
|
|
|
$file1UserShareOtherExpected = [
|
|
|
|
|
'id' => 16,
|
|
|
|
|
'share_type' => IShare::TYPE_USER,
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$file1GroupShareOwner = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$file1GroupShareOwner->setShareType(IShare::TYPE_GROUP)
|
|
|
|
|
->setSharedWith('recipient')
|
|
|
|
|
->setSharedBy('initiator')
|
|
|
|
|
->setShareOwner('currentUser')
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
|
->setNode($file1)
|
|
|
|
|
->setId(23);
|
|
|
|
|
|
|
|
|
|
$file1GroupShareOwnerExpected = [
|
|
|
|
|
'id' => 23,
|
|
|
|
|
'share_type' => IShare::TYPE_GROUP,
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$file1GroupShareRecipient = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$file1GroupShareRecipient->setShareType(IShare::TYPE_GROUP)
|
|
|
|
|
->setSharedWith('currentUserGroup')
|
|
|
|
|
->setSharedBy('initiator')
|
|
|
|
|
->setShareOwner('owner')
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
|
->setNode($file1)
|
|
|
|
|
->setId(42);
|
|
|
|
|
|
|
|
|
|
$file1GroupShareRecipientExpected = [
|
|
|
|
|
'id' => 42,
|
|
|
|
|
'share_type' => IShare::TYPE_GROUP,
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$file1GroupShareOther = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$file1GroupShareOther->setShareType(IShare::TYPE_GROUP)
|
|
|
|
|
->setSharedWith('recipient')
|
|
|
|
|
->setSharedBy('initiator')
|
|
|
|
|
->setShareOwner('owner')
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
|
->setNode($file1)
|
|
|
|
|
->setId(108);
|
|
|
|
|
|
|
|
|
|
$file1LinkShareOwner = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$file1LinkShareOwner->setShareType(IShare::TYPE_LINK)
|
|
|
|
|
->setSharedWith('recipient')
|
|
|
|
|
->setSharedBy('initiator')
|
|
|
|
|
->setShareOwner('currentUser')
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
|
->setNode($file1)
|
|
|
|
|
->setId(415);
|
|
|
|
|
|
|
|
|
|
$file1LinkShareOwnerExpected = [
|
|
|
|
|
'id' => 415,
|
|
|
|
|
'share_type' => IShare::TYPE_LINK,
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$file1EmailShareOwner = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$file1EmailShareOwner->setShareType(IShare::TYPE_EMAIL)
|
|
|
|
|
->setSharedWith('recipient')
|
|
|
|
|
->setSharedBy('initiator')
|
|
|
|
|
->setShareOwner('currentUser')
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
|
->setNode($file1)
|
|
|
|
|
->setId(416);
|
|
|
|
|
|
|
|
|
|
$file1EmailShareOwnerExpected = [
|
|
|
|
|
'id' => 416,
|
|
|
|
|
'share_type' => IShare::TYPE_EMAIL,
|
|
|
|
|
];
|
|
|
|
|
|
2019-10-25 11:02:06 +03:00
|
|
|
|
$file1CircleShareOwner = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$file1CircleShareOwner->setShareType(IShare::TYPE_CIRCLE)
|
|
|
|
|
->setSharedWith('recipient')
|
|
|
|
|
->setSharedBy('initiator')
|
|
|
|
|
->setShareOwner('currentUser')
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
|
->setNode($file1)
|
|
|
|
|
->setId(423);
|
|
|
|
|
|
|
|
|
|
$file1CircleShareOwnerExpected = [
|
|
|
|
|
'id' => 423,
|
|
|
|
|
'share_type' => IShare::TYPE_CIRCLE,
|
|
|
|
|
];
|
|
|
|
|
|
2019-10-25 07:31:40 +03:00
|
|
|
|
$file1RoomShareOwner = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$file1RoomShareOwner->setShareType(IShare::TYPE_ROOM)
|
|
|
|
|
->setSharedWith('recipient')
|
|
|
|
|
->setSharedBy('initiator')
|
|
|
|
|
->setShareOwner('currentUser')
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
|
->setNode($file1)
|
2019-10-25 11:02:06 +03:00
|
|
|
|
->setId(442);
|
2019-10-25 07:31:40 +03:00
|
|
|
|
|
|
|
|
|
$file1RoomShareOwnerExpected = [
|
2019-10-25 11:02:06 +03:00
|
|
|
|
'id' => 442,
|
2019-10-25 07:31:40 +03:00
|
|
|
|
'share_type' => IShare::TYPE_ROOM,
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$file1RemoteShareOwner = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$file1RemoteShareOwner->setShareType(IShare::TYPE_REMOTE)
|
|
|
|
|
->setSharedWith('recipient')
|
|
|
|
|
->setSharedBy('initiator')
|
|
|
|
|
->setShareOwner('currentUser')
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
|
->setNode($file1)
|
2019-10-25 11:02:06 +03:00
|
|
|
|
->setId(815);
|
2019-10-25 07:31:40 +03:00
|
|
|
|
|
|
|
|
|
$file1RemoteShareOwnerExpected = [
|
2019-10-25 11:02:06 +03:00
|
|
|
|
'id' => 815,
|
2019-10-25 07:31:40 +03:00
|
|
|
|
'share_type' => IShare::TYPE_REMOTE,
|
|
|
|
|
];
|
|
|
|
|
|
2019-10-25 11:02:06 +03:00
|
|
|
|
$file1RemoteGroupShareOwner = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$file1RemoteGroupShareOwner->setShareType(IShare::TYPE_REMOTE_GROUP)
|
|
|
|
|
->setSharedWith('recipient')
|
|
|
|
|
->setSharedBy('initiator')
|
|
|
|
|
->setShareOwner('currentUser')
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
|
->setNode($file1)
|
|
|
|
|
->setId(816);
|
|
|
|
|
|
|
|
|
|
$file1RemoteGroupShareOwnerExpected = [
|
|
|
|
|
'id' => 816,
|
|
|
|
|
'share_type' => IShare::TYPE_REMOTE_GROUP,
|
|
|
|
|
];
|
|
|
|
|
|
2019-10-25 07:31:40 +03:00
|
|
|
|
$file2UserShareOwner = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$file2UserShareOwner->setShareType(IShare::TYPE_USER)
|
|
|
|
|
->setSharedWith('recipient')
|
|
|
|
|
->setSharedBy('initiator')
|
|
|
|
|
->setShareOwner('currentUser')
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
|
->setNode($file2)
|
2019-10-25 11:02:06 +03:00
|
|
|
|
->setId(823);
|
2019-10-25 07:31:40 +03:00
|
|
|
|
|
|
|
|
|
$file2UserShareOwnerExpected = [
|
2019-10-25 11:02:06 +03:00
|
|
|
|
'id' => 823,
|
2019-10-25 07:31:40 +03:00
|
|
|
|
'share_type' => IShare::TYPE_USER,
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$data = [
|
2019-10-25 11:02:06 +03:00
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
'path' => $file1,
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
'file1' => [
|
|
|
|
|
IShare::TYPE_USER => [$file1UserShareOwner, $file1UserShareOwner, $file1UserShareOwner],
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
],
|
|
|
|
|
[
|
2019-12-02 22:16:33 +03:00
|
|
|
|
$file1UserShareOwnerExpected
|
2019-10-25 11:02:06 +03:00
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
'path' => $file1,
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
'file1' => [
|
|
|
|
|
IShare::TYPE_USER => [$file1UserShareOwner, $file1UserShareRecipient],
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
$file1UserShareOwnerExpected,
|
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
'path' => $file1,
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
'file1' => [
|
|
|
|
|
IShare::TYPE_USER => [$file1UserShareOwner, $file1UserShareRecipient, $file1UserShareInitiator, $file1UserShareOther],
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
$file1UserShareOwnerExpected,
|
|
|
|
|
$file1UserShareInitiatorExpected,
|
|
|
|
|
$file1UserShareOtherExpected,
|
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
'path' => $file1,
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
'file1' => [
|
|
|
|
|
IShare::TYPE_USER => [$file1UserShareRecipient, $file1UserShareInitiator, $file1UserShareOther],
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
$file1UserShareInitiatorExpected,
|
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
'path' => $file1,
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
'file1' => [
|
|
|
|
|
IShare::TYPE_USER => [$file1UserShareOwner],
|
|
|
|
|
IShare::TYPE_GROUP => [$file1GroupShareRecipient],
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
$file1UserShareOwnerExpected,
|
|
|
|
|
$file1GroupShareRecipientExpected,
|
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
'path' => $file1,
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
'file1' => [
|
|
|
|
|
IShare::TYPE_USER => [$file1UserShareOwner],
|
|
|
|
|
IShare::TYPE_GROUP => [$file1GroupShareOwner],
|
|
|
|
|
IShare::TYPE_LINK => [$file1LinkShareOwner],
|
|
|
|
|
IShare::TYPE_EMAIL => [$file1EmailShareOwner],
|
|
|
|
|
IShare::TYPE_CIRCLE => [$file1CircleShareOwner],
|
|
|
|
|
IShare::TYPE_ROOM => [$file1RoomShareOwner],
|
|
|
|
|
IShare::TYPE_REMOTE => [$file1RemoteShareOwner],
|
|
|
|
|
IShare::TYPE_REMOTE_GROUP => [$file1RemoteGroupShareOwner],
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
$file1UserShareOwnerExpected,
|
|
|
|
|
$file1GroupShareOwnerExpected,
|
|
|
|
|
$file1LinkShareOwnerExpected,
|
2019-10-25 11:15:50 +03:00
|
|
|
|
$file1EmailShareOwnerExpected,
|
|
|
|
|
$file1CircleShareOwnerExpected,
|
2019-10-25 11:02:06 +03:00
|
|
|
|
$file1RoomShareOwnerExpected,
|
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
'path' => $file1,
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
'file1' => [
|
|
|
|
|
IShare::TYPE_USER => [$file1UserShareOwner],
|
|
|
|
|
IShare::TYPE_GROUP => [$file1GroupShareOwner],
|
|
|
|
|
IShare::TYPE_LINK => [$file1LinkShareOwner],
|
|
|
|
|
IShare::TYPE_EMAIL => [$file1EmailShareOwner],
|
|
|
|
|
IShare::TYPE_CIRCLE => [$file1CircleShareOwner],
|
|
|
|
|
IShare::TYPE_ROOM => [$file1RoomShareOwner],
|
|
|
|
|
IShare::TYPE_REMOTE => [$file1RemoteShareOwner],
|
|
|
|
|
IShare::TYPE_REMOTE_GROUP => [$file1RemoteGroupShareOwner],
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
IShare::TYPE_REMOTE => true,
|
|
|
|
|
IShare::TYPE_REMOTE_GROUP => true,
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
$file1UserShareOwnerExpected,
|
|
|
|
|
$file1GroupShareOwnerExpected,
|
|
|
|
|
$file1LinkShareOwnerExpected,
|
|
|
|
|
$file1EmailShareOwnerExpected,
|
|
|
|
|
$file1CircleShareOwnerExpected,
|
|
|
|
|
$file1RoomShareOwnerExpected,
|
|
|
|
|
$file1RemoteShareOwnerExpected,
|
|
|
|
|
$file1RemoteGroupShareOwnerExpected,
|
|
|
|
|
]
|
|
|
|
|
],
|
2019-10-25 07:31:40 +03:00
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
'path' => $folder,
|
|
|
|
|
'subfiles' => 'true',
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
'file1' => [
|
|
|
|
|
IShare::TYPE_USER => [$file1UserShareOwner],
|
|
|
|
|
],
|
|
|
|
|
'file2' => [
|
|
|
|
|
IShare::TYPE_USER => [$file2UserShareOwner],
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
$file1UserShareOwnerExpected,
|
|
|
|
|
$file2UserShareOwnerExpected,
|
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
'path' => $folder,
|
|
|
|
|
'subfiles' => 'true',
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
'file1' => [
|
|
|
|
|
IShare::TYPE_USER => [$file1UserShareOwner, $file1UserShareOwner, $file1UserShareOwner],
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
$file1UserShareOwnerExpected,
|
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
'path' => $folder,
|
|
|
|
|
'subfiles' => 'true',
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
'file1' => [
|
|
|
|
|
IShare::TYPE_USER => [$file1UserShareOwner, $file1UserShareRecipient],
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
$file1UserShareOwnerExpected
|
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
'path' => $folder,
|
|
|
|
|
'subfiles' => 'true',
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
'file1' => [
|
|
|
|
|
IShare::TYPE_USER => [$file1UserShareRecipient, $file1UserShareInitiator, $file1UserShareOther],
|
|
|
|
|
],
|
|
|
|
|
'file2' => [
|
|
|
|
|
IShare::TYPE_USER => [$file2UserShareOwner],
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
$file1UserShareInitiatorExpected,
|
|
|
|
|
$file1UserShareOtherExpected,
|
|
|
|
|
$file2UserShareOwnerExpected,
|
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
// This might not happen in a real environment, as the combination
|
|
|
|
|
// of shares does not seem to be possible on a folder without
|
|
|
|
|
// resharing rights; if the folder has resharing rights then the
|
|
|
|
|
// share with others would be included too in the results.
|
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
'path' => $folder,
|
|
|
|
|
'subfiles' => 'true',
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
'file1' => [
|
|
|
|
|
IShare::TYPE_USER => [$file1UserShareRecipient, $file1UserShareInitiator, $file1UserShareOther],
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
$file1UserShareInitiatorExpected,
|
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
'path' => $folder,
|
|
|
|
|
'subfiles' => 'true',
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
'file1' => [
|
|
|
|
|
IShare::TYPE_USER => [$file1UserShareOwner],
|
|
|
|
|
IShare::TYPE_GROUP => [$file1GroupShareRecipient],
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
$file1UserShareOwnerExpected,
|
|
|
|
|
$file1GroupShareRecipientExpected,
|
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
'path' => $folder,
|
|
|
|
|
'subfiles' => 'true',
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
'file1' => [
|
|
|
|
|
IShare::TYPE_USER => [$file1UserShareOwner],
|
|
|
|
|
IShare::TYPE_GROUP => [$file1GroupShareOwner],
|
|
|
|
|
IShare::TYPE_LINK => [$file1LinkShareOwner],
|
|
|
|
|
IShare::TYPE_EMAIL => [$file1EmailShareOwner],
|
2019-10-25 11:40:11 +03:00
|
|
|
|
IShare::TYPE_CIRCLE => [$file1CircleShareOwner],
|
2019-10-25 07:31:40 +03:00
|
|
|
|
IShare::TYPE_ROOM => [$file1RoomShareOwner],
|
|
|
|
|
IShare::TYPE_REMOTE => [$file1RemoteShareOwner],
|
2019-10-25 11:40:11 +03:00
|
|
|
|
IShare::TYPE_REMOTE_GROUP => [$file1RemoteGroupShareOwner],
|
2019-10-25 07:31:40 +03:00
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
$file1UserShareOwnerExpected,
|
|
|
|
|
$file1GroupShareOwnerExpected,
|
|
|
|
|
$file1LinkShareOwnerExpected,
|
2019-10-25 11:15:50 +03:00
|
|
|
|
$file1EmailShareOwnerExpected,
|
2019-10-25 11:40:11 +03:00
|
|
|
|
$file1CircleShareOwnerExpected,
|
2019-10-25 07:31:40 +03:00
|
|
|
|
$file1RoomShareOwnerExpected,
|
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
'path' => $folder,
|
|
|
|
|
'subfiles' => 'true',
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
'file1' => [
|
|
|
|
|
IShare::TYPE_USER => [$file1UserShareOwner],
|
|
|
|
|
IShare::TYPE_GROUP => [$file1GroupShareOwner],
|
|
|
|
|
IShare::TYPE_LINK => [$file1LinkShareOwner],
|
|
|
|
|
IShare::TYPE_EMAIL => [$file1EmailShareOwner],
|
2019-10-25 11:40:11 +03:00
|
|
|
|
IShare::TYPE_CIRCLE => [$file1CircleShareOwner],
|
2019-10-25 07:31:40 +03:00
|
|
|
|
IShare::TYPE_ROOM => [$file1RoomShareOwner],
|
|
|
|
|
IShare::TYPE_REMOTE => [$file1RemoteShareOwner],
|
2019-10-25 11:40:11 +03:00
|
|
|
|
IShare::TYPE_REMOTE_GROUP => [$file1RemoteGroupShareOwner],
|
2019-10-25 07:31:40 +03:00
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
IShare::TYPE_REMOTE => true,
|
2019-10-25 11:40:11 +03:00
|
|
|
|
IShare::TYPE_REMOTE_GROUP => true,
|
2019-10-25 07:31:40 +03:00
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
$file1UserShareOwnerExpected,
|
|
|
|
|
$file1GroupShareOwnerExpected,
|
|
|
|
|
$file1LinkShareOwnerExpected,
|
|
|
|
|
$file1EmailShareOwnerExpected,
|
2019-10-25 11:40:11 +03:00
|
|
|
|
$file1CircleShareOwnerExpected,
|
2019-10-25 07:31:40 +03:00
|
|
|
|
$file1RoomShareOwnerExpected,
|
2019-10-25 11:20:32 +03:00
|
|
|
|
$file1RemoteShareOwnerExpected,
|
2019-10-25 11:40:11 +03:00
|
|
|
|
$file1RemoteGroupShareOwnerExpected,
|
2019-10-25 07:31:40 +03:00
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider dataGetShares
|
|
|
|
|
*/
|
|
|
|
|
public function testGetShares(array $getSharesParameters, array $shares, array $extraShareTypes, array $expected) {
|
|
|
|
|
/** @var \OCA\Files_Sharing\Controller\ShareAPIController $ocs */
|
|
|
|
|
$ocs = $this->getMockBuilder(ShareAPIController::class)
|
|
|
|
|
->setConstructorArgs([
|
|
|
|
|
$this->appName,
|
|
|
|
|
$this->request,
|
|
|
|
|
$this->shareManager,
|
|
|
|
|
$this->groupManager,
|
|
|
|
|
$this->userManager,
|
|
|
|
|
$this->rootFolder,
|
|
|
|
|
$this->urlGenerator,
|
|
|
|
|
$this->currentUser,
|
|
|
|
|
$this->l,
|
|
|
|
|
$this->config,
|
|
|
|
|
$this->appManager,
|
|
|
|
|
$this->serverContainer
|
|
|
|
|
])->setMethods(['formatShare'])
|
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
|
|
$ocs->method('formatShare')
|
2020-03-26 00:21:27 +03:00
|
|
|
|
->willReturnCallback(
|
2020-04-09 14:53:40 +03:00
|
|
|
|
function ($share) {
|
2019-10-25 07:31:40 +03:00
|
|
|
|
return [
|
|
|
|
|
'id' => $share->getId(),
|
|
|
|
|
'share_type' => $share->getShareType()
|
|
|
|
|
];
|
|
|
|
|
}
|
2020-03-26 00:21:27 +03:00
|
|
|
|
);
|
2019-10-25 07:31:40 +03:00
|
|
|
|
|
|
|
|
|
$userFolder = $this->getMockBuilder('OCP\Files\Folder')->getMock();
|
|
|
|
|
$userFolder->method('get')
|
|
|
|
|
->with('path')
|
|
|
|
|
->willReturn($getSharesParameters['path']);
|
|
|
|
|
|
|
|
|
|
$this->rootFolder->method('getUserFolder')
|
|
|
|
|
->with($this->currentUser)
|
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
|
|
|
|
$this->shareManager
|
|
|
|
|
->method('getSharesBy')
|
2020-03-26 00:21:27 +03:00
|
|
|
|
->willReturnCallback(
|
2020-04-09 14:53:40 +03:00
|
|
|
|
function ($user, $shareType, $node) use ($shares) {
|
2019-10-25 07:31:40 +03:00
|
|
|
|
if (!isset($shares[$node->getName()]) || !isset($shares[$node->getName()][$shareType])) {
|
|
|
|
|
return [];
|
|
|
|
|
}
|
|
|
|
|
return $shares[$node->getName()][$shareType];
|
|
|
|
|
}
|
2020-03-26 00:21:27 +03:00
|
|
|
|
);
|
2019-10-25 07:31:40 +03:00
|
|
|
|
|
|
|
|
|
$this->shareManager
|
|
|
|
|
->method('outgoingServer2ServerSharesAllowed')
|
|
|
|
|
->willReturn($extraShareTypes[ISHARE::TYPE_REMOTE] ?? false);
|
|
|
|
|
|
2019-10-25 11:02:06 +03:00
|
|
|
|
$this->shareManager
|
|
|
|
|
->method('outgoingServer2ServerGroupSharesAllowed')
|
|
|
|
|
->willReturn($extraShareTypes[ISHARE::TYPE_REMOTE_GROUP] ?? false);
|
|
|
|
|
|
2019-10-25 07:31:40 +03:00
|
|
|
|
$this->groupManager
|
|
|
|
|
->method('isInGroup')
|
2020-03-26 00:21:27 +03:00
|
|
|
|
->willReturnCallback(
|
2020-04-09 14:53:40 +03:00
|
|
|
|
function ($user, $group) {
|
2019-10-25 07:31:40 +03:00
|
|
|
|
return $group === 'currentUserGroup';
|
|
|
|
|
}
|
2020-03-26 00:21:27 +03:00
|
|
|
|
);
|
2019-10-25 07:31:40 +03:00
|
|
|
|
|
|
|
|
|
$result = $ocs->getShares(
|
|
|
|
|
$getSharesParameters['sharedWithMe'] ?? 'false',
|
|
|
|
|
$getSharesParameters['reshares'] ?? 'false',
|
|
|
|
|
$getSharesParameters['subfiles'] ?? 'false',
|
|
|
|
|
'path'
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$this->assertEquals($expected, $result->getData());
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-24 11:37:17 +03:00
|
|
|
|
public function testCanAccessShare() {
|
2017-10-25 01:03:28 +03:00
|
|
|
|
$share = $this->getMockBuilder(IShare::class)->getMock();
|
2016-10-21 21:25:07 +03:00
|
|
|
|
$share->method('getShareOwner')->willReturn($this->currentUser);
|
2015-11-24 11:37:17 +03:00
|
|
|
|
$this->assertTrue($this->invokePrivate($this->ocs, 'canAccessShare', [$share]));
|
|
|
|
|
|
2017-10-25 01:03:28 +03:00
|
|
|
|
$share = $this->getMockBuilder(IShare::class)->getMock();
|
2016-10-21 21:25:07 +03:00
|
|
|
|
$share->method('getSharedBy')->willReturn($this->currentUser);
|
2015-11-24 11:37:17 +03:00
|
|
|
|
$this->assertTrue($this->invokePrivate($this->ocs, 'canAccessShare', [$share]));
|
|
|
|
|
|
2017-10-25 01:03:28 +03:00
|
|
|
|
$share = $this->getMockBuilder(IShare::class)->getMock();
|
2015-11-24 11:37:17 +03:00
|
|
|
|
$share->method('getShareType')->willReturn(\OCP\Share::SHARE_TYPE_USER);
|
2016-10-21 21:25:07 +03:00
|
|
|
|
$share->method('getSharedWith')->willReturn($this->currentUser);
|
2015-11-24 11:37:17 +03:00
|
|
|
|
$this->assertTrue($this->invokePrivate($this->ocs, 'canAccessShare', [$share]));
|
|
|
|
|
|
2019-08-16 16:09:15 +03:00
|
|
|
|
$file = $this->getMockBuilder(File::class)->getMock();
|
|
|
|
|
|
|
|
|
|
$userFolder = $this->getMockBuilder('OCP\Files\Folder')->getMock();
|
|
|
|
|
$this->rootFolder->method('getUserFolder')
|
|
|
|
|
->with($this->currentUser)
|
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
|
|
|
|
$userFolder->method('getById')
|
|
|
|
|
->with($share->getNodeId())
|
|
|
|
|
->willReturn([$file]);
|
|
|
|
|
|
|
|
|
|
$file->method('getPermissions')
|
|
|
|
|
->will($this->onConsecutiveCalls(\OCP\Constants::PERMISSION_SHARE, \OCP\Constants::PERMISSION_READ));
|
|
|
|
|
|
|
|
|
|
// getPermissions -> share
|
|
|
|
|
$share = $this->getMockBuilder(IShare::class)->getMock();
|
|
|
|
|
$share->method('getShareType')->willReturn(\OCP\Share::SHARE_TYPE_USER);
|
|
|
|
|
$share->method('getSharedWith')->willReturn($this->getMockBuilder(IUser::class)->getMock());
|
|
|
|
|
$this->assertTrue($this->invokePrivate($this->ocs, 'canAccessShare', [$share]));
|
|
|
|
|
|
|
|
|
|
// getPermissions -> read
|
2017-10-25 01:03:28 +03:00
|
|
|
|
$share = $this->getMockBuilder(IShare::class)->getMock();
|
2015-11-24 11:37:17 +03:00
|
|
|
|
$share->method('getShareType')->willReturn(\OCP\Share::SHARE_TYPE_USER);
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$share->method('getSharedWith')->willReturn($this->getMockBuilder(IUser::class)->getMock());
|
2015-11-24 11:37:17 +03:00
|
|
|
|
$this->assertFalse($this->invokePrivate($this->ocs, 'canAccessShare', [$share]));
|
|
|
|
|
|
2017-10-25 01:03:28 +03:00
|
|
|
|
$share = $this->getMockBuilder(IShare::class)->getMock();
|
2015-11-24 11:37:17 +03:00
|
|
|
|
$share->method('getShareType')->willReturn(\OCP\Share::SHARE_TYPE_GROUP);
|
2016-02-03 10:14:48 +03:00
|
|
|
|
$share->method('getSharedWith')->willReturn('group');
|
|
|
|
|
|
2016-10-21 21:25:07 +03:00
|
|
|
|
$user = $this->createMock(IUser::class);
|
|
|
|
|
$this->userManager->method('get')
|
|
|
|
|
->with($this->currentUser)
|
|
|
|
|
->willReturn($user);
|
|
|
|
|
|
2016-07-15 13:22:53 +03:00
|
|
|
|
$group = $this->getMockBuilder('OCP\IGroup')->getMock();
|
2016-10-21 21:25:07 +03:00
|
|
|
|
$group->method('inGroup')->with($user)->willReturn(true);
|
2016-07-15 13:22:53 +03:00
|
|
|
|
$group2 = $this->getMockBuilder('OCP\IGroup')->getMock();
|
2016-10-21 21:25:07 +03:00
|
|
|
|
$group2->method('inGroup')->with($user)->willReturn(false);
|
2016-02-03 10:14:48 +03:00
|
|
|
|
|
2020-03-26 00:21:27 +03:00
|
|
|
|
$this->groupManager->method('get')->willReturnMap([
|
2016-02-03 10:14:48 +03:00
|
|
|
|
['group', $group],
|
|
|
|
|
['group2', $group2],
|
2017-01-19 17:02:46 +03:00
|
|
|
|
['groupnull', null],
|
2020-03-26 00:21:27 +03:00
|
|
|
|
]);
|
2015-11-24 11:37:17 +03:00
|
|
|
|
$this->assertTrue($this->invokePrivate($this->ocs, 'canAccessShare', [$share]));
|
|
|
|
|
|
2017-04-20 13:27:32 +03:00
|
|
|
|
$share = $this->createMock(IShare::class);
|
2015-11-24 11:37:17 +03:00
|
|
|
|
$share->method('getShareType')->willReturn(\OCP\Share::SHARE_TYPE_GROUP);
|
2016-02-03 10:14:48 +03:00
|
|
|
|
$share->method('getSharedWith')->willReturn('group2');
|
2017-01-19 17:02:46 +03:00
|
|
|
|
$this->assertFalse($this->invokePrivate($this->ocs, 'canAccessShare', [$share]));
|
2016-02-03 10:14:48 +03:00
|
|
|
|
|
2017-01-19 17:02:46 +03:00
|
|
|
|
// null group
|
2017-04-20 13:27:32 +03:00
|
|
|
|
$share = $this->createMock(IShare::class);
|
2017-01-19 17:02:46 +03:00
|
|
|
|
$share->method('getShareType')->willReturn(\OCP\Share::SHARE_TYPE_GROUP);
|
|
|
|
|
$share->method('getSharedWith')->willReturn('groupnull');
|
2015-11-24 11:37:17 +03:00
|
|
|
|
$this->assertFalse($this->invokePrivate($this->ocs, 'canAccessShare', [$share]));
|
|
|
|
|
|
2017-04-20 13:27:32 +03:00
|
|
|
|
$share = $this->createMock(IShare::class);
|
2015-11-24 11:37:17 +03:00
|
|
|
|
$share->method('getShareType')->willReturn(\OCP\Share::SHARE_TYPE_LINK);
|
|
|
|
|
$this->assertFalse($this->invokePrivate($this->ocs, 'canAccessShare', [$share]));
|
|
|
|
|
}
|
2015-12-15 11:54:50 +03:00
|
|
|
|
|
2018-06-29 14:22:26 +03:00
|
|
|
|
public function dataCanAccessRoomShare() {
|
|
|
|
|
$result = [];
|
|
|
|
|
|
|
|
|
|
$share = $this->createMock(IShare::class);
|
|
|
|
|
$share->method('getShareType')->willReturn(\OCP\Share::SHARE_TYPE_ROOM);
|
|
|
|
|
$share->method('getSharedWith')->willReturn('recipientRoom');
|
|
|
|
|
|
|
|
|
|
$result[] = [
|
|
|
|
|
false, $share, false, false
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$result[] = [
|
|
|
|
|
false, $share, false, true
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$result[] = [
|
|
|
|
|
true, $share, true, true
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$result[] = [
|
|
|
|
|
false, $share, true, false
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider dataCanAccessRoomShare
|
|
|
|
|
*
|
|
|
|
|
* @param bool $expects
|
|
|
|
|
* @param \OCP\Share\IShare $share
|
|
|
|
|
* @param bool helperAvailable
|
|
|
|
|
* @param bool canAccessShareByHelper
|
|
|
|
|
*/
|
|
|
|
|
public function testCanAccessRoomShare(bool $expected, \OCP\Share\IShare $share, bool $helperAvailable, bool $canAccessShareByHelper) {
|
2019-08-16 16:09:15 +03:00
|
|
|
|
$userFolder = $this->getMockBuilder('OCP\Files\Folder')->getMock();
|
|
|
|
|
$this->rootFolder->method('getUserFolder')
|
|
|
|
|
->with($this->currentUser)
|
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
|
|
|
|
$userFolder->method('getById')
|
|
|
|
|
->with($share->getNodeId())
|
|
|
|
|
->willReturn([$share->getNode()]);
|
|
|
|
|
|
2018-06-29 14:22:26 +03:00
|
|
|
|
if (!$helperAvailable) {
|
|
|
|
|
$this->appManager->method('isEnabledForUser')
|
|
|
|
|
->with('spreed')
|
|
|
|
|
->willReturn(false);
|
|
|
|
|
} else {
|
|
|
|
|
$this->appManager->method('isEnabledForUser')
|
|
|
|
|
->with('spreed')
|
|
|
|
|
->willReturn(true);
|
|
|
|
|
|
2019-09-05 16:32:58 +03:00
|
|
|
|
$helper = $this->getMockBuilder('\OCA\Talk\Share\Helper\ShareAPIController')
|
2020-03-26 11:30:18 +03:00
|
|
|
|
->setMethods(['canAccessShare'])
|
2018-06-29 14:22:26 +03:00
|
|
|
|
->getMock();
|
|
|
|
|
$helper->method('canAccessShare')
|
|
|
|
|
->with($share, $this->currentUser)
|
|
|
|
|
->willReturn($canAccessShareByHelper);
|
|
|
|
|
|
|
|
|
|
$this->serverContainer->method('query')
|
2019-09-05 16:32:58 +03:00
|
|
|
|
->with('\OCA\Talk\Share\Helper\ShareAPIController')
|
2018-06-29 14:22:26 +03:00
|
|
|
|
->willReturn($helper);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$this->assertEquals($expected, $this->invokePrivate($this->ocs, 'canAccessShare', [$share]));
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-10 12:03:08 +03:00
|
|
|
|
|
2015-12-15 11:54:50 +03:00
|
|
|
|
public function testCreateShareNoPath() {
|
2019-11-27 17:27:18 +03:00
|
|
|
|
$this->expectException(\OCP\AppFramework\OCS\OCSNotFoundException::class);
|
|
|
|
|
$this->expectExceptionMessage('Please specify a file or folder path');
|
|
|
|
|
|
2016-07-20 15:24:22 +03:00
|
|
|
|
$this->ocs->createShare();
|
2015-12-15 11:54:50 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-10 12:03:08 +03:00
|
|
|
|
|
2015-12-15 11:54:50 +03:00
|
|
|
|
public function testCreateShareInvalidPath() {
|
2019-11-27 17:27:18 +03:00
|
|
|
|
$this->expectException(\OCP\AppFramework\OCS\OCSNotFoundException::class);
|
|
|
|
|
$this->expectExceptionMessage('Wrong path, file/folder doesn\'t exist');
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$userFolder = $this->getMockBuilder(Folder::class)->getMock();
|
2015-12-15 11:54:50 +03:00
|
|
|
|
$this->rootFolder->expects($this->once())
|
|
|
|
|
->method('getUserFolder')
|
|
|
|
|
->with('currentUser')
|
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
|
|
|
|
$userFolder->expects($this->once())
|
|
|
|
|
->method('get')
|
|
|
|
|
->with('invalid-path')
|
|
|
|
|
->will($this->throwException(new \OCP\Files\NotFoundException()));
|
|
|
|
|
|
2016-08-16 23:45:49 +03:00
|
|
|
|
$this->ocs->createShare('invalid-path');
|
2015-12-15 11:54:50 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-10 12:03:08 +03:00
|
|
|
|
|
2015-12-15 11:54:50 +03:00
|
|
|
|
public function testCreateShareInvalidPermissions() {
|
2019-11-27 17:27:18 +03:00
|
|
|
|
$this->expectException(\OCP\AppFramework\OCS\OCSNotFoundException::class);
|
|
|
|
|
$this->expectExceptionMessage('invalid permissions');
|
|
|
|
|
|
2016-03-09 11:11:41 +03:00
|
|
|
|
$share = $this->newShare();
|
2015-12-15 11:54:50 +03:00
|
|
|
|
$this->shareManager->method('newShare')->willReturn($share);
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$userFolder = $this->getMockBuilder(Folder::class)->getMock();
|
2015-12-15 11:54:50 +03:00
|
|
|
|
$this->rootFolder->expects($this->once())
|
|
|
|
|
->method('getUserFolder')
|
|
|
|
|
->with('currentUser')
|
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$path = $this->getMockBuilder(File::class)->getMock();
|
2015-12-15 11:54:50 +03:00
|
|
|
|
$userFolder->expects($this->once())
|
|
|
|
|
->method('get')
|
|
|
|
|
->with('valid-path')
|
|
|
|
|
->willReturn($path);
|
|
|
|
|
|
2016-03-09 11:11:41 +03:00
|
|
|
|
$path->expects($this->once())
|
|
|
|
|
->method('lock')
|
|
|
|
|
->with(\OCP\Lock\ILockingProvider::LOCK_SHARED);
|
|
|
|
|
|
2016-08-16 23:45:49 +03:00
|
|
|
|
$this->ocs->createShare('valid-path', 32);
|
2015-12-15 11:54:50 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-10 12:03:08 +03:00
|
|
|
|
|
2015-12-15 11:54:50 +03:00
|
|
|
|
public function testCreateShareUserNoShareWith() {
|
2019-11-27 17:27:18 +03:00
|
|
|
|
$this->expectException(\OCP\AppFramework\OCS\OCSNotFoundException::class);
|
|
|
|
|
$this->expectExceptionMessage('Please specify a valid user');
|
|
|
|
|
|
2016-03-09 11:11:41 +03:00
|
|
|
|
$share = $this->newShare();
|
2015-12-15 11:54:50 +03:00
|
|
|
|
$this->shareManager->method('newShare')->willReturn($share);
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$userFolder = $this->getMockBuilder(Folder::class)->getMock();
|
2015-12-15 11:54:50 +03:00
|
|
|
|
$this->rootFolder->expects($this->once())
|
|
|
|
|
->method('getUserFolder')
|
|
|
|
|
->with('currentUser')
|
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$path = $this->getMockBuilder(File::class)->getMock();
|
2019-11-22 15:23:56 +03:00
|
|
|
|
$storage = $this->createMock(Storage::class);
|
2016-02-25 12:30:03 +03:00
|
|
|
|
$storage->method('instanceOfStorage')
|
|
|
|
|
->with('OCA\Files_Sharing\External\Storage')
|
|
|
|
|
->willReturn(false);
|
|
|
|
|
$path->method('getStorage')->willReturn($storage);
|
2015-12-15 11:54:50 +03:00
|
|
|
|
$userFolder->expects($this->once())
|
|
|
|
|
->method('get')
|
|
|
|
|
->with('valid-path')
|
|
|
|
|
->willReturn($path);
|
|
|
|
|
|
2016-03-09 11:11:41 +03:00
|
|
|
|
$path->expects($this->once())
|
|
|
|
|
->method('lock')
|
|
|
|
|
->with(\OCP\Lock\ILockingProvider::LOCK_SHARED);
|
|
|
|
|
|
2016-08-16 23:45:49 +03:00
|
|
|
|
$this->ocs->createShare('valid-path', \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_USER);
|
2015-12-15 11:54:50 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-10 12:03:08 +03:00
|
|
|
|
|
2015-12-15 11:54:50 +03:00
|
|
|
|
public function testCreateShareUserNoValidShareWith() {
|
2019-11-27 17:27:18 +03:00
|
|
|
|
$this->expectException(\OCP\AppFramework\OCS\OCSNotFoundException::class);
|
|
|
|
|
$this->expectExceptionMessage('Please specify a valid user');
|
|
|
|
|
|
2016-03-09 11:11:41 +03:00
|
|
|
|
$share = $this->newShare();
|
2015-12-15 11:54:50 +03:00
|
|
|
|
$this->shareManager->method('newShare')->willReturn($share);
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$userFolder = $this->getMockBuilder(Folder::class)->getMock();
|
2015-12-15 11:54:50 +03:00
|
|
|
|
$this->rootFolder->expects($this->once())
|
|
|
|
|
->method('getUserFolder')
|
|
|
|
|
->with('currentUser')
|
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$path = $this->getMockBuilder(File::class)->getMock();
|
2019-11-22 15:23:56 +03:00
|
|
|
|
$storage = $this->createMock(Storage::class);
|
2016-02-25 12:30:03 +03:00
|
|
|
|
$storage->method('instanceOfStorage')
|
|
|
|
|
->with('OCA\Files_Sharing\External\Storage')
|
|
|
|
|
->willReturn(false);
|
|
|
|
|
$path->method('getStorage')->willReturn($storage);
|
2015-12-15 11:54:50 +03:00
|
|
|
|
$userFolder->expects($this->once())
|
|
|
|
|
->method('get')
|
|
|
|
|
->with('valid-path')
|
|
|
|
|
->willReturn($path);
|
2016-03-09 11:11:41 +03:00
|
|
|
|
$path->expects($this->once())
|
|
|
|
|
->method('lock')
|
|
|
|
|
->with(\OCP\Lock\ILockingProvider::LOCK_SHARED);
|
2016-08-16 23:45:49 +03:00
|
|
|
|
$this->userManager->method('userExists')
|
|
|
|
|
->with('invalidUser')
|
|
|
|
|
->willReturn(false);
|
2016-03-09 11:11:41 +03:00
|
|
|
|
|
2016-08-16 23:45:49 +03:00
|
|
|
|
$this->ocs->createShare('valid-path', \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_USER, 'invalidUser');
|
2015-12-15 11:54:50 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testCreateShareUser() {
|
2016-03-09 11:11:41 +03:00
|
|
|
|
$share = $this->newShare();
|
2015-12-15 11:54:50 +03:00
|
|
|
|
$this->shareManager->method('newShare')->willReturn($share);
|
|
|
|
|
|
2016-10-21 21:25:07 +03:00
|
|
|
|
/** @var \OCA\Files_Sharing\Controller\ShareAPIController $ocs */
|
|
|
|
|
$ocs = $this->getMockBuilder(ShareAPIController::class)
|
2015-12-15 11:54:50 +03:00
|
|
|
|
->setConstructorArgs([
|
2016-07-20 15:24:22 +03:00
|
|
|
|
$this->appName,
|
|
|
|
|
$this->request,
|
2015-12-15 11:54:50 +03:00
|
|
|
|
$this->shareManager,
|
|
|
|
|
$this->groupManager,
|
|
|
|
|
$this->userManager,
|
|
|
|
|
$this->rootFolder,
|
|
|
|
|
$this->urlGenerator,
|
2016-04-15 15:05:36 +03:00
|
|
|
|
$this->currentUser,
|
|
|
|
|
$this->l,
|
2018-07-10 14:01:31 +03:00
|
|
|
|
$this->config,
|
2018-06-29 14:22:26 +03:00
|
|
|
|
$this->appManager,
|
|
|
|
|
$this->serverContainer
|
2015-12-15 11:54:50 +03:00
|
|
|
|
])->setMethods(['formatShare'])
|
|
|
|
|
->getMock();
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$userFolder = $this->getMockBuilder(Folder::class)->getMock();
|
2015-12-15 11:54:50 +03:00
|
|
|
|
$this->rootFolder->expects($this->once())
|
|
|
|
|
->method('getUserFolder')
|
|
|
|
|
->with('currentUser')
|
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$path = $this->getMockBuilder(File::class)->getMock();
|
2019-11-22 15:23:56 +03:00
|
|
|
|
$storage = $this->createMock(Storage::class);
|
2016-02-25 12:30:03 +03:00
|
|
|
|
$storage->method('instanceOfStorage')
|
|
|
|
|
->with('OCA\Files_Sharing\External\Storage')
|
|
|
|
|
->willReturn(false);
|
|
|
|
|
$path->method('getStorage')->willReturn($storage);
|
2015-12-15 11:54:50 +03:00
|
|
|
|
$userFolder->expects($this->once())
|
|
|
|
|
->method('get')
|
|
|
|
|
->with('valid-path')
|
|
|
|
|
->willReturn($path);
|
|
|
|
|
|
|
|
|
|
$this->userManager->method('userExists')->with('validUser')->willReturn(true);
|
|
|
|
|
|
2016-03-09 11:11:41 +03:00
|
|
|
|
$path->expects($this->once())
|
|
|
|
|
->method('lock')
|
|
|
|
|
->with(\OCP\Lock\ILockingProvider::LOCK_SHARED);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->method('createShare')
|
|
|
|
|
->with($this->callback(function (\OCP\Share\IShare $share) use ($path) {
|
|
|
|
|
return $share->getNode() === $path &&
|
|
|
|
|
$share->getPermissions() === (
|
|
|
|
|
\OCP\Constants::PERMISSION_ALL &
|
|
|
|
|
~\OCP\Constants::PERMISSION_DELETE &
|
|
|
|
|
~\OCP\Constants::PERMISSION_CREATE
|
|
|
|
|
) &&
|
|
|
|
|
$share->getShareType() === \OCP\Share::SHARE_TYPE_USER &&
|
|
|
|
|
$share->getSharedWith() === 'validUser' &&
|
|
|
|
|
$share->getSharedBy() === 'currentUser';
|
|
|
|
|
}))
|
2020-03-26 00:21:27 +03:00
|
|
|
|
->willReturnArgument(0);
|
2015-12-15 11:54:50 +03:00
|
|
|
|
|
2018-04-24 09:07:25 +03:00
|
|
|
|
$expected = new DataResponse([]);
|
2016-08-16 23:45:49 +03:00
|
|
|
|
$result = $ocs->createShare('valid-path', \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_USER, 'validUser');
|
2015-12-15 11:54:50 +03:00
|
|
|
|
|
2016-07-20 15:24:22 +03:00
|
|
|
|
$this->assertInstanceOf(get_class($expected), $result);
|
2015-12-15 11:54:50 +03:00
|
|
|
|
$this->assertEquals($expected->getData(), $result->getData());
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-10 12:03:08 +03:00
|
|
|
|
|
2015-12-15 11:54:50 +03:00
|
|
|
|
public function testCreateShareGroupNoValidShareWith() {
|
2019-11-27 17:27:18 +03:00
|
|
|
|
$this->expectException(\OCP\AppFramework\OCS\OCSNotFoundException::class);
|
|
|
|
|
$this->expectExceptionMessage('Please specify a valid group');
|
|
|
|
|
|
2016-03-09 11:11:41 +03:00
|
|
|
|
$share = $this->newShare();
|
2015-12-15 11:54:50 +03:00
|
|
|
|
$this->shareManager->method('newShare')->willReturn($share);
|
2020-03-26 00:21:27 +03:00
|
|
|
|
$this->shareManager->method('createShare')->willReturnArgument(0);
|
2016-08-16 23:45:49 +03:00
|
|
|
|
$this->shareManager->method('allowGroupSharing')->willReturn(true);
|
2015-12-15 11:54:50 +03:00
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$userFolder = $this->getMockBuilder(Folder::class)->getMock();
|
2015-12-15 11:54:50 +03:00
|
|
|
|
$this->rootFolder->expects($this->once())
|
|
|
|
|
->method('getUserFolder')
|
|
|
|
|
->with('currentUser')
|
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$path = $this->getMockBuilder(File::class)->getMock();
|
2019-11-22 15:23:56 +03:00
|
|
|
|
$storage = $this->createMock(Storage::class);
|
2016-02-25 12:30:03 +03:00
|
|
|
|
$storage->method('instanceOfStorage')
|
|
|
|
|
->with('OCA\Files_Sharing\External\Storage')
|
|
|
|
|
->willReturn(false);
|
|
|
|
|
$path->method('getStorage')->willReturn($storage);
|
2015-12-15 11:54:50 +03:00
|
|
|
|
$userFolder->expects($this->once())
|
|
|
|
|
->method('get')
|
|
|
|
|
->with('valid-path')
|
|
|
|
|
->willReturn($path);
|
|
|
|
|
|
2016-03-09 11:11:41 +03:00
|
|
|
|
$path->expects($this->once())
|
|
|
|
|
->method('lock')
|
|
|
|
|
->with(\OCP\Lock\ILockingProvider::LOCK_SHARED);
|
|
|
|
|
|
2016-08-16 23:45:49 +03:00
|
|
|
|
$this->ocs->createShare('valid-path', \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_GROUP, 'invalidGroup');
|
2015-12-15 11:54:50 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testCreateShareGroup() {
|
2016-03-09 11:11:41 +03:00
|
|
|
|
$share = $this->newShare();
|
2015-12-15 11:54:50 +03:00
|
|
|
|
$this->shareManager->method('newShare')->willReturn($share);
|
|
|
|
|
|
2016-10-21 21:25:07 +03:00
|
|
|
|
/** @var ShareAPIController|\PHPUnit_Framework_MockObject_MockObject $ocs */
|
|
|
|
|
$ocs = $this->getMockBuilder(ShareAPIController::class)
|
2015-12-15 11:54:50 +03:00
|
|
|
|
->setConstructorArgs([
|
2016-07-20 15:24:22 +03:00
|
|
|
|
$this->appName,
|
|
|
|
|
$this->request,
|
2015-12-15 11:54:50 +03:00
|
|
|
|
$this->shareManager,
|
|
|
|
|
$this->groupManager,
|
|
|
|
|
$this->userManager,
|
|
|
|
|
$this->rootFolder,
|
|
|
|
|
$this->urlGenerator,
|
2016-04-15 15:05:36 +03:00
|
|
|
|
$this->currentUser,
|
|
|
|
|
$this->l,
|
2018-07-10 14:01:31 +03:00
|
|
|
|
$this->config,
|
2018-06-29 14:22:26 +03:00
|
|
|
|
$this->appManager,
|
|
|
|
|
$this->serverContainer
|
2015-12-15 11:54:50 +03:00
|
|
|
|
])->setMethods(['formatShare'])
|
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
|
|
$this->request
|
|
|
|
|
->method('getParam')
|
2020-03-26 00:21:27 +03:00
|
|
|
|
->willReturnMap([
|
2015-12-15 11:54:50 +03:00
|
|
|
|
['path', null, 'valid-path'],
|
|
|
|
|
['permissions', null, \OCP\Constants::PERMISSION_ALL],
|
|
|
|
|
['shareType', '-1', \OCP\Share::SHARE_TYPE_GROUP],
|
|
|
|
|
['shareWith', null, 'validGroup'],
|
2020-03-26 00:21:27 +03:00
|
|
|
|
]);
|
2015-12-15 11:54:50 +03:00
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$userFolder = $this->getMockBuilder(Folder::class)->getMock();
|
2015-12-15 11:54:50 +03:00
|
|
|
|
$this->rootFolder->expects($this->once())
|
2016-07-20 15:24:22 +03:00
|
|
|
|
->method('getUserFolder')
|
|
|
|
|
->with('currentUser')
|
|
|
|
|
->willReturn($userFolder);
|
2015-12-15 11:54:50 +03:00
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$path = $this->getMockBuilder(Folder::class)->getMock();
|
2019-11-22 15:23:56 +03:00
|
|
|
|
$storage = $this->createMock(Storage::class);
|
2016-02-25 12:30:03 +03:00
|
|
|
|
$storage->method('instanceOfStorage')
|
|
|
|
|
->with('OCA\Files_Sharing\External\Storage')
|
|
|
|
|
->willReturn(false);
|
|
|
|
|
$path->method('getStorage')->willReturn($storage);
|
2015-12-15 11:54:50 +03:00
|
|
|
|
$userFolder->expects($this->once())
|
2016-07-20 15:24:22 +03:00
|
|
|
|
->method('get')
|
|
|
|
|
->with('valid-path')
|
|
|
|
|
->willReturn($path);
|
2015-12-15 11:54:50 +03:00
|
|
|
|
|
|
|
|
|
$this->groupManager->method('groupExists')->with('validGroup')->willReturn(true);
|
|
|
|
|
|
2016-03-18 18:36:27 +03:00
|
|
|
|
$this->shareManager->expects($this->once())
|
|
|
|
|
->method('allowGroupSharing')
|
|
|
|
|
->willReturn(true);
|
|
|
|
|
|
2016-03-09 11:11:41 +03:00
|
|
|
|
$path->expects($this->once())
|
|
|
|
|
->method('lock')
|
|
|
|
|
->with(\OCP\Lock\ILockingProvider::LOCK_SHARED);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->method('createShare')
|
|
|
|
|
->with($this->callback(function (\OCP\Share\IShare $share) use ($path) {
|
|
|
|
|
return $share->getNode() === $path &&
|
2016-07-20 15:24:22 +03:00
|
|
|
|
$share->getPermissions() === \OCP\Constants::PERMISSION_ALL &&
|
|
|
|
|
$share->getShareType() === \OCP\Share::SHARE_TYPE_GROUP &&
|
|
|
|
|
$share->getSharedWith() === 'validGroup' &&
|
|
|
|
|
$share->getSharedBy() === 'currentUser';
|
2016-03-09 11:11:41 +03:00
|
|
|
|
}))
|
2020-03-26 00:21:27 +03:00
|
|
|
|
->willReturnArgument(0);
|
2015-12-15 11:54:50 +03:00
|
|
|
|
|
2018-04-24 09:07:25 +03:00
|
|
|
|
$expected = new DataResponse([]);
|
2016-08-16 23:45:49 +03:00
|
|
|
|
$result = $ocs->createShare('valid-path', \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_GROUP, 'validGroup');
|
2015-12-15 11:54:50 +03:00
|
|
|
|
|
2016-07-20 15:24:22 +03:00
|
|
|
|
$this->assertInstanceOf(get_class($expected), $result);
|
2015-12-15 11:54:50 +03:00
|
|
|
|
$this->assertEquals($expected->getData(), $result->getData());
|
|
|
|
|
}
|
2016-01-27 17:42:11 +03:00
|
|
|
|
|
2020-01-10 12:03:08 +03:00
|
|
|
|
|
2016-03-18 18:36:27 +03:00
|
|
|
|
public function testCreateShareGroupNotAllowed() {
|
2019-11-27 17:27:18 +03:00
|
|
|
|
$this->expectException(\OCP\AppFramework\OCS\OCSNotFoundException::class);
|
|
|
|
|
$this->expectExceptionMessage('Group sharing is disabled by the administrator');
|
|
|
|
|
|
2016-03-09 11:11:41 +03:00
|
|
|
|
$share = $this->newShare();
|
2016-03-18 18:36:27 +03:00
|
|
|
|
$this->shareManager->method('newShare')->willReturn($share);
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$userFolder = $this->getMockBuilder(Folder::class)->getMock();
|
2016-03-18 18:36:27 +03:00
|
|
|
|
$this->rootFolder->expects($this->once())
|
|
|
|
|
->method('getUserFolder')
|
|
|
|
|
->with('currentUser')
|
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$path = $this->getMockBuilder(Folder::class)->getMock();
|
2019-11-22 15:23:56 +03:00
|
|
|
|
$storage = $this->createMock(Storage::class);
|
2016-03-18 18:36:27 +03:00
|
|
|
|
$storage->method('instanceOfStorage')
|
|
|
|
|
->with('OCA\Files_Sharing\External\Storage')
|
|
|
|
|
->willReturn(false);
|
|
|
|
|
$path->method('getStorage')->willReturn($storage);
|
|
|
|
|
$userFolder->expects($this->once())
|
|
|
|
|
->method('get')
|
|
|
|
|
->with('valid-path')
|
|
|
|
|
->willReturn($path);
|
|
|
|
|
|
|
|
|
|
$this->groupManager->method('groupExists')->with('validGroup')->willReturn(true);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->expects($this->once())
|
|
|
|
|
->method('allowGroupSharing')
|
|
|
|
|
->willReturn(false);
|
|
|
|
|
|
2016-08-16 23:45:49 +03:00
|
|
|
|
$this->ocs->createShare('valid-path', \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_GROUP, 'invalidGroup');
|
2016-03-18 18:36:27 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-10 12:03:08 +03:00
|
|
|
|
|
2016-01-27 17:42:11 +03:00
|
|
|
|
public function testCreateShareLinkNoLinksAllowed() {
|
2019-11-27 17:27:18 +03:00
|
|
|
|
$this->expectException(\OCP\AppFramework\OCS\OCSNotFoundException::class);
|
|
|
|
|
$this->expectExceptionMessage('Public link sharing is disabled by the administrator');
|
|
|
|
|
|
2016-01-27 17:42:11 +03:00
|
|
|
|
$this->request
|
|
|
|
|
->method('getParam')
|
2020-03-26 00:21:27 +03:00
|
|
|
|
->willReturnMap([
|
2016-01-27 17:42:11 +03:00
|
|
|
|
['path', null, 'valid-path'],
|
|
|
|
|
['shareType', '-1', \OCP\Share::SHARE_TYPE_LINK],
|
2020-03-26 00:21:27 +03:00
|
|
|
|
]);
|
2016-01-27 17:42:11 +03:00
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$path = $this->getMockBuilder(Folder::class)->getMock();
|
2019-11-22 15:23:56 +03:00
|
|
|
|
$storage = $this->createMock(Storage::class);
|
2016-02-25 12:30:03 +03:00
|
|
|
|
$storage->method('instanceOfStorage')
|
|
|
|
|
->with('OCA\Files_Sharing\External\Storage')
|
|
|
|
|
->willReturn(false);
|
|
|
|
|
$path->method('getStorage')->willReturn($storage);
|
2020-03-26 00:21:27 +03:00
|
|
|
|
$this->rootFolder->method('getUserFolder')->with($this->currentUser)->willReturnSelf();
|
2016-01-27 17:42:11 +03:00
|
|
|
|
$this->rootFolder->method('get')->with('valid-path')->willReturn($path);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->method('newShare')->willReturn(\OC::$server->getShareManager()->newShare());
|
|
|
|
|
|
2016-08-16 23:45:49 +03:00
|
|
|
|
$this->ocs->createShare('valid-path', \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_LINK);
|
2016-01-27 17:42:11 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-10 12:03:08 +03:00
|
|
|
|
|
2016-01-27 17:42:11 +03:00
|
|
|
|
public function testCreateShareLinkNoPublicUpload() {
|
2019-11-27 17:27:18 +03:00
|
|
|
|
$this->expectException(\OCP\AppFramework\OCS\OCSForbiddenException::class);
|
|
|
|
|
$this->expectExceptionMessage('Public upload disabled by the administrator');
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$path = $this->getMockBuilder(Folder::class)->getMock();
|
2019-11-22 15:23:56 +03:00
|
|
|
|
$storage = $this->createMock(Storage::class);
|
2016-02-25 12:30:03 +03:00
|
|
|
|
$storage->method('instanceOfStorage')
|
|
|
|
|
->with('OCA\Files_Sharing\External\Storage')
|
|
|
|
|
->willReturn(false);
|
|
|
|
|
$path->method('getStorage')->willReturn($storage);
|
2020-03-26 00:21:27 +03:00
|
|
|
|
$this->rootFolder->method('getUserFolder')->with($this->currentUser)->willReturnSelf();
|
2016-01-27 17:42:11 +03:00
|
|
|
|
$this->rootFolder->method('get')->with('valid-path')->willReturn($path);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->method('newShare')->willReturn(\OC::$server->getShareManager()->newShare());
|
|
|
|
|
$this->shareManager->method('shareApiAllowLinks')->willReturn(true);
|
|
|
|
|
|
2016-08-16 23:45:49 +03:00
|
|
|
|
$this->ocs->createShare('valid-path', \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_LINK, null, 'true');
|
2016-01-27 17:42:11 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-10 12:03:08 +03:00
|
|
|
|
|
2016-01-27 17:42:11 +03:00
|
|
|
|
public function testCreateShareLinkPublicUploadFile() {
|
2019-11-27 17:27:18 +03:00
|
|
|
|
$this->expectException(\OCP\AppFramework\OCS\OCSNotFoundException::class);
|
|
|
|
|
$this->expectExceptionMessage('Public upload is only possible for publicly shared folders');
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$path = $this->getMockBuilder(File::class)->getMock();
|
2019-11-22 15:23:56 +03:00
|
|
|
|
$storage = $this->createMock(Storage::class);
|
2016-02-25 12:30:03 +03:00
|
|
|
|
$storage->method('instanceOfStorage')
|
|
|
|
|
->with('OCA\Files_Sharing\External\Storage')
|
|
|
|
|
->willReturn(false);
|
|
|
|
|
$path->method('getStorage')->willReturn($storage);
|
2020-03-26 00:21:27 +03:00
|
|
|
|
$this->rootFolder->method('getUserFolder')->with($this->currentUser)->willReturnSelf();
|
2016-01-27 17:42:11 +03:00
|
|
|
|
$this->rootFolder->method('get')->with('valid-path')->willReturn($path);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->method('newShare')->willReturn(\OC::$server->getShareManager()->newShare());
|
|
|
|
|
$this->shareManager->method('shareApiAllowLinks')->willReturn(true);
|
|
|
|
|
$this->shareManager->method('shareApiLinkAllowPublicUpload')->willReturn(true);
|
|
|
|
|
|
2016-08-16 23:45:49 +03:00
|
|
|
|
$this->ocs->createShare('valid-path', \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_LINK, null, 'true');
|
2016-01-27 17:42:11 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testCreateShareLinkPublicUploadFolder() {
|
|
|
|
|
$ocs = $this->mockFormatShare();
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$path = $this->getMockBuilder(Folder::class)->getMock();
|
2019-11-22 15:23:56 +03:00
|
|
|
|
$storage = $this->createMock(Storage::class);
|
2016-02-25 12:30:03 +03:00
|
|
|
|
$storage->method('instanceOfStorage')
|
|
|
|
|
->with('OCA\Files_Sharing\External\Storage')
|
|
|
|
|
->willReturn(false);
|
|
|
|
|
$path->method('getStorage')->willReturn($storage);
|
2020-03-26 00:21:27 +03:00
|
|
|
|
$this->rootFolder->method('getUserFolder')->with($this->currentUser)->willReturnSelf();
|
2016-01-27 17:42:11 +03:00
|
|
|
|
$this->rootFolder->method('get')->with('valid-path')->willReturn($path);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->method('newShare')->willReturn(\OC::$server->getShareManager()->newShare());
|
|
|
|
|
$this->shareManager->method('shareApiAllowLinks')->willReturn(true);
|
|
|
|
|
$this->shareManager->method('shareApiLinkAllowPublicUpload')->willReturn(true);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->expects($this->once())->method('createShare')->with(
|
2016-02-03 10:14:48 +03:00
|
|
|
|
$this->callback(function (\OCP\Share\IShare $share) use ($path) {
|
2016-01-28 15:17:16 +03:00
|
|
|
|
return $share->getNode() === $path &&
|
2016-01-27 17:42:11 +03:00
|
|
|
|
$share->getShareType() === \OCP\Share::SHARE_TYPE_LINK &&
|
2016-06-23 16:43:21 +03:00
|
|
|
|
$share->getPermissions() === (\OCP\Constants::PERMISSION_READ | \OCP\Constants::PERMISSION_CREATE | \OCP\Constants::PERMISSION_UPDATE | \OCP\Constants::PERMISSION_DELETE) &&
|
2016-02-03 10:14:48 +03:00
|
|
|
|
$share->getSharedBy() === 'currentUser' &&
|
2016-01-27 17:42:11 +03:00
|
|
|
|
$share->getPassword() === null &&
|
|
|
|
|
$share->getExpirationDate() === null;
|
|
|
|
|
})
|
2020-03-26 00:21:27 +03:00
|
|
|
|
)->willReturnArgument(0);
|
2016-01-27 17:42:11 +03:00
|
|
|
|
|
2018-04-24 09:07:25 +03:00
|
|
|
|
$expected = new DataResponse([]);
|
2018-07-10 14:01:31 +03:00
|
|
|
|
$result = $ocs->createShare('valid-path', \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_LINK, null, 'true', '', null, '');
|
2016-01-27 17:42:11 +03:00
|
|
|
|
|
2016-07-20 15:24:22 +03:00
|
|
|
|
$this->assertInstanceOf(get_class($expected), $result);
|
2016-01-27 17:42:11 +03:00
|
|
|
|
$this->assertEquals($expected->getData(), $result->getData());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testCreateShareLinkPassword() {
|
|
|
|
|
$ocs = $this->mockFormatShare();
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$path = $this->getMockBuilder(Folder::class)->getMock();
|
2019-11-22 15:23:56 +03:00
|
|
|
|
$storage = $this->createMock(Storage::class);
|
2016-02-25 12:30:03 +03:00
|
|
|
|
$storage->method('instanceOfStorage')
|
|
|
|
|
->with('OCA\Files_Sharing\External\Storage')
|
|
|
|
|
->willReturn(false);
|
|
|
|
|
$path->method('getStorage')->willReturn($storage);
|
2020-03-26 00:21:27 +03:00
|
|
|
|
$this->rootFolder->method('getUserFolder')->with($this->currentUser)->willReturnSelf();
|
2016-01-27 17:42:11 +03:00
|
|
|
|
$this->rootFolder->method('get')->with('valid-path')->willReturn($path);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->method('newShare')->willReturn(\OC::$server->getShareManager()->newShare());
|
|
|
|
|
$this->shareManager->method('shareApiAllowLinks')->willReturn(true);
|
|
|
|
|
$this->shareManager->method('shareApiLinkAllowPublicUpload')->willReturn(true);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->expects($this->once())->method('createShare')->with(
|
2016-02-03 10:14:48 +03:00
|
|
|
|
$this->callback(function (\OCP\Share\IShare $share) use ($path) {
|
2016-01-28 15:17:16 +03:00
|
|
|
|
return $share->getNode() === $path &&
|
2016-01-27 17:42:11 +03:00
|
|
|
|
$share->getShareType() === \OCP\Share::SHARE_TYPE_LINK &&
|
|
|
|
|
$share->getPermissions() === \OCP\Constants::PERMISSION_READ &&
|
2016-02-03 10:14:48 +03:00
|
|
|
|
$share->getSharedBy() === 'currentUser' &&
|
2016-01-27 17:42:11 +03:00
|
|
|
|
$share->getPassword() === 'password' &&
|
|
|
|
|
$share->getExpirationDate() === null;
|
|
|
|
|
})
|
2020-03-26 00:21:27 +03:00
|
|
|
|
)->willReturnArgument(0);
|
2016-01-27 17:42:11 +03:00
|
|
|
|
|
2018-04-24 09:07:25 +03:00
|
|
|
|
$expected = new DataResponse([]);
|
2018-07-10 14:01:31 +03:00
|
|
|
|
$result = $ocs->createShare('valid-path', \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_LINK, null, 'false', 'password', null, '');
|
2016-01-27 17:42:11 +03:00
|
|
|
|
|
2016-07-20 15:24:22 +03:00
|
|
|
|
$this->assertInstanceOf(get_class($expected), $result);
|
2016-01-27 17:42:11 +03:00
|
|
|
|
$this->assertEquals($expected->getData(), $result->getData());
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-15 13:27:56 +03:00
|
|
|
|
public function testCreateShareLinkSendPasswordByTalk() {
|
|
|
|
|
$ocs = $this->mockFormatShare();
|
|
|
|
|
|
|
|
|
|
$path = $this->getMockBuilder(Folder::class)->getMock();
|
2019-11-22 15:23:56 +03:00
|
|
|
|
$storage = $this->createMock(Storage::class);
|
2018-10-15 13:27:56 +03:00
|
|
|
|
$storage->method('instanceOfStorage')
|
|
|
|
|
->with('OCA\Files_Sharing\External\Storage')
|
|
|
|
|
->willReturn(false);
|
|
|
|
|
$path->method('getStorage')->willReturn($storage);
|
2020-03-26 00:21:27 +03:00
|
|
|
|
$this->rootFolder->method('getUserFolder')->with($this->currentUser)->willReturnSelf();
|
2018-10-15 13:27:56 +03:00
|
|
|
|
$this->rootFolder->method('get')->with('valid-path')->willReturn($path);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->method('newShare')->willReturn(\OC::$server->getShareManager()->newShare());
|
|
|
|
|
$this->shareManager->method('shareApiAllowLinks')->willReturn(true);
|
|
|
|
|
$this->shareManager->method('shareApiLinkAllowPublicUpload')->willReturn(true);
|
|
|
|
|
|
|
|
|
|
$this->appManager->method('isEnabledForUser')->with('spreed')->willReturn(true);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->expects($this->once())->method('createShare')->with(
|
|
|
|
|
$this->callback(function (\OCP\Share\IShare $share) use ($path) {
|
|
|
|
|
return $share->getNode() === $path &&
|
|
|
|
|
$share->getShareType() === \OCP\Share::SHARE_TYPE_LINK &&
|
|
|
|
|
$share->getPermissions() === \OCP\Constants::PERMISSION_READ &&
|
|
|
|
|
$share->getSharedBy() === 'currentUser' &&
|
|
|
|
|
$share->getPassword() === 'password' &&
|
|
|
|
|
$share->getSendPasswordByTalk() === true &&
|
|
|
|
|
$share->getExpirationDate() === null;
|
|
|
|
|
})
|
2020-03-26 00:21:27 +03:00
|
|
|
|
)->willReturnArgument(0);
|
2018-10-15 13:27:56 +03:00
|
|
|
|
|
|
|
|
|
$expected = new DataResponse([]);
|
|
|
|
|
$result = $ocs->createShare('valid-path', \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_LINK, null, 'false', 'password', 'true', '');
|
|
|
|
|
|
|
|
|
|
$this->assertInstanceOf(get_class($expected), $result);
|
|
|
|
|
$this->assertEquals($expected->getData(), $result->getData());
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-10 12:03:08 +03:00
|
|
|
|
|
2018-10-15 13:27:56 +03:00
|
|
|
|
public function testCreateShareLinkSendPasswordByTalkWithTalkDisabled() {
|
2019-11-27 17:27:18 +03:00
|
|
|
|
$this->expectException(\OCP\AppFramework\OCS\OCSForbiddenException::class);
|
|
|
|
|
$this->expectExceptionMessage('Sharing valid-path sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled');
|
|
|
|
|
|
2018-10-15 13:27:56 +03:00
|
|
|
|
$ocs = $this->mockFormatShare();
|
|
|
|
|
|
|
|
|
|
$path = $this->getMockBuilder(Folder::class)->getMock();
|
2019-11-22 15:23:56 +03:00
|
|
|
|
$storage = $this->createMock(Storage::class);
|
2018-10-15 13:27:56 +03:00
|
|
|
|
$storage->method('instanceOfStorage')
|
|
|
|
|
->with('OCA\Files_Sharing\External\Storage')
|
|
|
|
|
->willReturn(false);
|
|
|
|
|
$path->method('getStorage')->willReturn($storage);
|
|
|
|
|
$path->method('getPath')->willReturn('valid-path');
|
2020-03-26 00:21:27 +03:00
|
|
|
|
$this->rootFolder->method('getUserFolder')->with($this->currentUser)->willReturnSelf();
|
2018-10-15 13:27:56 +03:00
|
|
|
|
$this->rootFolder->method('get')->with('valid-path')->willReturn($path);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->method('newShare')->willReturn(\OC::$server->getShareManager()->newShare());
|
|
|
|
|
$this->shareManager->method('shareApiAllowLinks')->willReturn(true);
|
|
|
|
|
$this->shareManager->method('shareApiLinkAllowPublicUpload')->willReturn(true);
|
|
|
|
|
|
|
|
|
|
$this->appManager->method('isEnabledForUser')->with('spreed')->willReturn(false);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->expects($this->never())->method('createShare');
|
|
|
|
|
|
|
|
|
|
$ocs->createShare('valid-path', \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_LINK, null, 'false', 'password', 'true', '');
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-27 17:42:11 +03:00
|
|
|
|
public function testCreateShareValidExpireDate() {
|
|
|
|
|
$ocs = $this->mockFormatShare();
|
|
|
|
|
|
|
|
|
|
$this->request
|
|
|
|
|
->method('getParam')
|
2020-03-26 00:21:27 +03:00
|
|
|
|
->willReturnMap([
|
2016-01-27 17:42:11 +03:00
|
|
|
|
['path', null, 'valid-path'],
|
|
|
|
|
['shareType', '-1', \OCP\Share::SHARE_TYPE_LINK],
|
|
|
|
|
['publicUpload', null, 'false'],
|
|
|
|
|
['expireDate', '', '2000-01-01'],
|
|
|
|
|
['password', '', ''],
|
2020-03-26 00:21:27 +03:00
|
|
|
|
]);
|
2016-01-27 17:42:11 +03:00
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$path = $this->getMockBuilder(Folder::class)->getMock();
|
2019-11-22 15:23:56 +03:00
|
|
|
|
$storage = $this->createMock(Storage::class);
|
2016-02-25 12:30:03 +03:00
|
|
|
|
$storage->method('instanceOfStorage')
|
|
|
|
|
->with('OCA\Files_Sharing\External\Storage')
|
|
|
|
|
->willReturn(false);
|
|
|
|
|
$path->method('getStorage')->willReturn($storage);
|
2020-03-26 00:21:27 +03:00
|
|
|
|
$this->rootFolder->method('getUserFolder')->with($this->currentUser)->willReturnSelf();
|
2016-01-27 17:42:11 +03:00
|
|
|
|
$this->rootFolder->method('get')->with('valid-path')->willReturn($path);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->method('newShare')->willReturn(\OC::$server->getShareManager()->newShare());
|
|
|
|
|
$this->shareManager->method('shareApiAllowLinks')->willReturn(true);
|
|
|
|
|
$this->shareManager->method('shareApiLinkAllowPublicUpload')->willReturn(true);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->expects($this->once())->method('createShare')->with(
|
2016-02-03 10:14:48 +03:00
|
|
|
|
$this->callback(function (\OCP\Share\IShare $share) use ($path) {
|
2016-01-27 17:42:11 +03:00
|
|
|
|
$date = new \DateTime('2000-01-01');
|
|
|
|
|
$date->setTime(0,0,0);
|
|
|
|
|
|
2016-01-28 15:17:16 +03:00
|
|
|
|
return $share->getNode() === $path &&
|
2016-01-27 17:42:11 +03:00
|
|
|
|
$share->getShareType() === \OCP\Share::SHARE_TYPE_LINK &&
|
|
|
|
|
$share->getPermissions() === \OCP\Constants::PERMISSION_READ &&
|
2016-02-03 10:14:48 +03:00
|
|
|
|
$share->getSharedBy() === 'currentUser' &&
|
2016-01-27 17:42:11 +03:00
|
|
|
|
$share->getPassword() === null &&
|
|
|
|
|
$share->getExpirationDate() == $date;
|
|
|
|
|
})
|
2020-03-26 00:21:27 +03:00
|
|
|
|
)->willReturnArgument(0);
|
2016-01-27 17:42:11 +03:00
|
|
|
|
|
2018-04-24 09:07:25 +03:00
|
|
|
|
$expected = new DataResponse([]);
|
2018-07-10 14:01:31 +03:00
|
|
|
|
$result = $ocs->createShare('valid-path', \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_LINK, null, 'false', '', null, '2000-01-01');
|
2016-01-27 17:42:11 +03:00
|
|
|
|
|
2016-07-20 15:24:22 +03:00
|
|
|
|
$this->assertInstanceOf(get_class($expected), $result);
|
2016-01-27 17:42:11 +03:00
|
|
|
|
$this->assertEquals($expected->getData(), $result->getData());
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-10 12:03:08 +03:00
|
|
|
|
|
2016-01-27 17:42:11 +03:00
|
|
|
|
public function testCreateShareInvalidExpireDate() {
|
2019-11-27 17:27:18 +03:00
|
|
|
|
$this->expectException(\OCP\AppFramework\OCS\OCSNotFoundException::class);
|
|
|
|
|
$this->expectExceptionMessage('Invalid date, date format must be YYYY-MM-DD');
|
|
|
|
|
|
2016-01-27 17:42:11 +03:00
|
|
|
|
$ocs = $this->mockFormatShare();
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$path = $this->getMockBuilder(Folder::class)->getMock();
|
2019-11-22 15:23:56 +03:00
|
|
|
|
$storage = $this->createMock(Storage::class);
|
2016-02-25 12:30:03 +03:00
|
|
|
|
$storage->method('instanceOfStorage')
|
|
|
|
|
->with('OCA\Files_Sharing\External\Storage')
|
|
|
|
|
->willReturn(false);
|
|
|
|
|
$path->method('getStorage')->willReturn($storage);
|
2020-03-26 00:21:27 +03:00
|
|
|
|
$this->rootFolder->method('getUserFolder')->with($this->currentUser)->willReturnSelf();
|
2016-01-27 17:42:11 +03:00
|
|
|
|
$this->rootFolder->method('get')->with('valid-path')->willReturn($path);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->method('newShare')->willReturn(\OC::$server->getShareManager()->newShare());
|
|
|
|
|
$this->shareManager->method('shareApiAllowLinks')->willReturn(true);
|
|
|
|
|
$this->shareManager->method('shareApiLinkAllowPublicUpload')->willReturn(true);
|
|
|
|
|
|
2018-07-10 14:01:31 +03:00
|
|
|
|
$ocs->createShare('valid-path', \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_LINK, null, 'false', '', null, 'a1b2d3');
|
2016-01-27 17:42:11 +03:00
|
|
|
|
}
|
2016-01-27 18:46:48 +03:00
|
|
|
|
|
2018-06-29 14:22:26 +03:00
|
|
|
|
public function testCreateShareRoom() {
|
|
|
|
|
$ocs = $this->mockFormatShare();
|
|
|
|
|
|
|
|
|
|
$share = $this->newShare();
|
|
|
|
|
$this->shareManager->method('newShare')->willReturn($share);
|
|
|
|
|
|
|
|
|
|
$userFolder = $this->getMockBuilder(Folder::class)->getMock();
|
|
|
|
|
$this->rootFolder->expects($this->once())
|
|
|
|
|
->method('getUserFolder')
|
|
|
|
|
->with('currentUser')
|
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
|
|
|
|
$path = $this->getMockBuilder(File::class)->getMock();
|
2019-11-22 15:23:56 +03:00
|
|
|
|
$storage = $this->createMock(Storage::class);
|
2018-06-29 14:22:26 +03:00
|
|
|
|
$storage->method('instanceOfStorage')
|
|
|
|
|
->with('OCA\Files_Sharing\External\Storage')
|
|
|
|
|
->willReturn(false);
|
|
|
|
|
$path->method('getStorage')->willReturn($storage);
|
|
|
|
|
$userFolder->expects($this->once())
|
|
|
|
|
->method('get')
|
|
|
|
|
->with('valid-path')
|
|
|
|
|
->willReturn($path);
|
|
|
|
|
|
|
|
|
|
$path->expects($this->once())
|
|
|
|
|
->method('lock')
|
|
|
|
|
->with(\OCP\Lock\ILockingProvider::LOCK_SHARED);
|
|
|
|
|
|
|
|
|
|
$this->appManager->method('isEnabledForUser')
|
|
|
|
|
->with('spreed')
|
|
|
|
|
->willReturn(true);
|
|
|
|
|
|
2019-09-05 16:32:58 +03:00
|
|
|
|
$helper = $this->getMockBuilder('\OCA\Talk\Share\Helper\ShareAPIController')
|
2020-03-26 11:30:18 +03:00
|
|
|
|
->setMethods(['createShare'])
|
2018-06-29 14:22:26 +03:00
|
|
|
|
->getMock();
|
|
|
|
|
$helper->method('createShare')
|
|
|
|
|
->with(
|
|
|
|
|
$share,
|
|
|
|
|
'recipientRoom',
|
|
|
|
|
\OCP\Constants::PERMISSION_ALL &
|
|
|
|
|
~\OCP\Constants::PERMISSION_DELETE &
|
|
|
|
|
~\OCP\Constants::PERMISSION_CREATE,
|
|
|
|
|
''
|
2020-03-26 00:21:27 +03:00
|
|
|
|
)->willReturnCallback(
|
2018-06-29 14:22:26 +03:00
|
|
|
|
function ($share) {
|
|
|
|
|
$share->setSharedWith('recipientRoom');
|
|
|
|
|
$share->setPermissions(
|
|
|
|
|
\OCP\Constants::PERMISSION_ALL &
|
|
|
|
|
~\OCP\Constants::PERMISSION_DELETE &
|
|
|
|
|
~\OCP\Constants::PERMISSION_CREATE
|
|
|
|
|
);
|
|
|
|
|
}
|
2020-03-26 00:21:27 +03:00
|
|
|
|
);
|
2018-06-29 14:22:26 +03:00
|
|
|
|
|
|
|
|
|
$this->serverContainer->method('query')
|
2019-09-05 16:32:58 +03:00
|
|
|
|
->with('\OCA\Talk\Share\Helper\ShareAPIController')
|
2018-06-29 14:22:26 +03:00
|
|
|
|
->willReturn($helper);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->method('createShare')
|
|
|
|
|
->with($this->callback(function (\OCP\Share\IShare $share) use ($path) {
|
|
|
|
|
return $share->getNode() === $path &&
|
|
|
|
|
$share->getPermissions() === (
|
|
|
|
|
\OCP\Constants::PERMISSION_ALL &
|
|
|
|
|
~\OCP\Constants::PERMISSION_DELETE &
|
|
|
|
|
~\OCP\Constants::PERMISSION_CREATE
|
|
|
|
|
) &&
|
|
|
|
|
$share->getShareType() === \OCP\Share::SHARE_TYPE_ROOM &&
|
|
|
|
|
$share->getSharedWith() === 'recipientRoom' &&
|
|
|
|
|
$share->getSharedBy() === 'currentUser';
|
|
|
|
|
}))
|
2020-03-26 00:21:27 +03:00
|
|
|
|
->willReturnArgument(0);
|
2018-06-29 14:22:26 +03:00
|
|
|
|
|
|
|
|
|
$expected = new DataResponse([]);
|
|
|
|
|
$result = $ocs->createShare('valid-path', \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_ROOM, 'recipientRoom');
|
|
|
|
|
|
|
|
|
|
$this->assertInstanceOf(get_class($expected), $result);
|
|
|
|
|
$this->assertEquals($expected->getData(), $result->getData());
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-10 12:03:08 +03:00
|
|
|
|
|
2018-06-29 14:22:26 +03:00
|
|
|
|
public function testCreateShareRoomHelperNotAvailable() {
|
2019-11-27 17:27:18 +03:00
|
|
|
|
$this->expectException(\OCP\AppFramework\OCS\OCSForbiddenException::class);
|
|
|
|
|
$this->expectExceptionMessage('Sharing valid-path failed because the back end does not support room shares');
|
|
|
|
|
|
2018-06-29 14:22:26 +03:00
|
|
|
|
$ocs = $this->mockFormatShare();
|
|
|
|
|
|
|
|
|
|
$share = $this->newShare();
|
|
|
|
|
$this->shareManager->method('newShare')->willReturn($share);
|
|
|
|
|
|
|
|
|
|
$userFolder = $this->getMockBuilder(Folder::class)->getMock();
|
|
|
|
|
$this->rootFolder->expects($this->once())
|
|
|
|
|
->method('getUserFolder')
|
|
|
|
|
->with('currentUser')
|
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
|
|
|
|
$path = $this->getMockBuilder(File::class)->getMock();
|
2019-11-22 15:23:56 +03:00
|
|
|
|
$storage = $this->createMock(Storage::class);
|
2018-06-29 14:22:26 +03:00
|
|
|
|
$storage->method('instanceOfStorage')
|
|
|
|
|
->with('OCA\Files_Sharing\External\Storage')
|
|
|
|
|
->willReturn(false);
|
|
|
|
|
$path->method('getStorage')->willReturn($storage);
|
|
|
|
|
$path->method('getPath')->willReturn('valid-path');
|
|
|
|
|
$userFolder->expects($this->once())
|
|
|
|
|
->method('get')
|
|
|
|
|
->with('valid-path')
|
|
|
|
|
->willReturn($path);
|
|
|
|
|
|
|
|
|
|
$path->expects($this->once())
|
|
|
|
|
->method('lock')
|
|
|
|
|
->with(\OCP\Lock\ILockingProvider::LOCK_SHARED);
|
|
|
|
|
|
|
|
|
|
$this->appManager->method('isEnabledForUser')
|
|
|
|
|
->with('spreed')
|
|
|
|
|
->willReturn(false);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->expects($this->never())->method('createShare');
|
|
|
|
|
|
|
|
|
|
$ocs->createShare('valid-path', \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_ROOM, 'recipientRoom');
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-10 12:03:08 +03:00
|
|
|
|
|
2018-06-29 14:22:26 +03:00
|
|
|
|
public function testCreateShareRoomHelperThrowException() {
|
2019-11-27 17:27:18 +03:00
|
|
|
|
$this->expectException(\OCP\AppFramework\OCS\OCSNotFoundException::class);
|
|
|
|
|
$this->expectExceptionMessage('Exception thrown by the helper');
|
|
|
|
|
|
2018-06-29 14:22:26 +03:00
|
|
|
|
$ocs = $this->mockFormatShare();
|
|
|
|
|
|
|
|
|
|
$share = $this->newShare();
|
|
|
|
|
$this->shareManager->method('newShare')->willReturn($share);
|
|
|
|
|
|
|
|
|
|
$userFolder = $this->getMockBuilder(Folder::class)->getMock();
|
|
|
|
|
$this->rootFolder->expects($this->once())
|
|
|
|
|
->method('getUserFolder')
|
|
|
|
|
->with('currentUser')
|
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
|
|
|
|
$path = $this->getMockBuilder(File::class)->getMock();
|
2019-11-22 15:23:56 +03:00
|
|
|
|
$storage = $this->createMock(Storage::class);
|
2018-06-29 14:22:26 +03:00
|
|
|
|
$storage->method('instanceOfStorage')
|
|
|
|
|
->with('OCA\Files_Sharing\External\Storage')
|
|
|
|
|
->willReturn(false);
|
|
|
|
|
$path->method('getStorage')->willReturn($storage);
|
|
|
|
|
$userFolder->expects($this->once())
|
|
|
|
|
->method('get')
|
|
|
|
|
->with('valid-path')
|
|
|
|
|
->willReturn($path);
|
|
|
|
|
|
|
|
|
|
$path->expects($this->once())
|
|
|
|
|
->method('lock')
|
|
|
|
|
->with(\OCP\Lock\ILockingProvider::LOCK_SHARED);
|
|
|
|
|
|
|
|
|
|
$this->appManager->method('isEnabledForUser')
|
|
|
|
|
->with('spreed')
|
|
|
|
|
->willReturn(true);
|
|
|
|
|
|
2019-09-05 16:32:58 +03:00
|
|
|
|
$helper = $this->getMockBuilder('\OCA\Talk\Share\Helper\ShareAPIController')
|
2020-03-26 11:30:18 +03:00
|
|
|
|
->setMethods(['createShare'])
|
2018-06-29 14:22:26 +03:00
|
|
|
|
->getMock();
|
|
|
|
|
$helper->method('createShare')
|
|
|
|
|
->with(
|
|
|
|
|
$share,
|
|
|
|
|
'recipientRoom',
|
|
|
|
|
\OCP\Constants::PERMISSION_ALL &
|
|
|
|
|
~\OCP\Constants::PERMISSION_DELETE &
|
|
|
|
|
~\OCP\Constants::PERMISSION_CREATE,
|
|
|
|
|
''
|
2020-03-26 00:21:27 +03:00
|
|
|
|
)->willReturnCallback(
|
2018-06-29 14:22:26 +03:00
|
|
|
|
function ($share) {
|
|
|
|
|
throw new OCSNotFoundException("Exception thrown by the helper");
|
|
|
|
|
}
|
2020-03-26 00:21:27 +03:00
|
|
|
|
);
|
2018-06-29 14:22:26 +03:00
|
|
|
|
|
|
|
|
|
$this->serverContainer->method('query')
|
2019-09-05 16:32:58 +03:00
|
|
|
|
->with('\OCA\Talk\Share\Helper\ShareAPIController')
|
2018-06-29 14:22:26 +03:00
|
|
|
|
->willReturn($helper);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->expects($this->never())->method('createShare');
|
|
|
|
|
|
|
|
|
|
$ocs->createShare('valid-path', \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_ROOM, 'recipientRoom');
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-25 12:30:03 +03:00
|
|
|
|
/**
|
|
|
|
|
* Test for https://github.com/owncloud/core/issues/22587
|
|
|
|
|
* TODO: Remove once proper solution is in place
|
|
|
|
|
*/
|
|
|
|
|
public function testCreateReshareOfFederatedMountNoDeletePermissions() {
|
|
|
|
|
$share = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$this->shareManager->method('newShare')->willReturn($share);
|
|
|
|
|
|
2016-10-21 21:25:07 +03:00
|
|
|
|
/** @var ShareAPIController|\PHPUnit_Framework_MockObject_MockObject $ocs */
|
|
|
|
|
$ocs = $this->getMockBuilder(ShareAPIController::class)
|
2016-02-25 12:30:03 +03:00
|
|
|
|
->setConstructorArgs([
|
2016-07-20 15:24:22 +03:00
|
|
|
|
$this->appName,
|
|
|
|
|
$this->request,
|
2016-02-25 12:30:03 +03:00
|
|
|
|
$this->shareManager,
|
|
|
|
|
$this->groupManager,
|
|
|
|
|
$this->userManager,
|
|
|
|
|
$this->rootFolder,
|
|
|
|
|
$this->urlGenerator,
|
2016-04-15 15:05:36 +03:00
|
|
|
|
$this->currentUser,
|
|
|
|
|
$this->l,
|
2018-07-10 14:01:31 +03:00
|
|
|
|
$this->config,
|
2018-06-29 14:22:26 +03:00
|
|
|
|
$this->appManager,
|
|
|
|
|
$this->serverContainer
|
2016-02-25 12:30:03 +03:00
|
|
|
|
])->setMethods(['formatShare'])
|
|
|
|
|
->getMock();
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$userFolder = $this->getMockBuilder(Folder::class)->getMock();
|
2016-02-25 12:30:03 +03:00
|
|
|
|
$this->rootFolder->expects($this->once())
|
|
|
|
|
->method('getUserFolder')
|
|
|
|
|
->with('currentUser')
|
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$path = $this->getMockBuilder(Folder::class)->getMock();
|
2019-11-22 15:23:56 +03:00
|
|
|
|
$storage = $this->createMock(Storage::class);
|
2016-02-25 12:30:03 +03:00
|
|
|
|
$storage->method('instanceOfStorage')
|
|
|
|
|
->with('OCA\Files_Sharing\External\Storage')
|
|
|
|
|
->willReturn(true);
|
|
|
|
|
$path->method('getStorage')->willReturn($storage);
|
|
|
|
|
$path->method('getPermissions')->willReturn(\OCP\Constants::PERMISSION_READ);
|
|
|
|
|
$userFolder->expects($this->once())
|
|
|
|
|
->method('get')
|
|
|
|
|
->with('valid-path')
|
|
|
|
|
->willReturn($path);
|
|
|
|
|
|
|
|
|
|
$this->userManager->method('userExists')->with('validUser')->willReturn(true);
|
|
|
|
|
|
|
|
|
|
$this->shareManager
|
|
|
|
|
->expects($this->once())
|
|
|
|
|
->method('createShare')
|
|
|
|
|
->with($this->callback(function (\OCP\Share\IShare $share) {
|
|
|
|
|
return $share->getPermissions() === \OCP\Constants::PERMISSION_READ;
|
|
|
|
|
}))
|
2020-03-26 00:21:27 +03:00
|
|
|
|
->willReturnArgument(0);
|
2016-02-25 12:30:03 +03:00
|
|
|
|
|
2016-08-16 23:45:49 +03:00
|
|
|
|
$ocs->createShare('valid-path', \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_USER, 'validUser');
|
2016-02-25 12:30:03 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-10 12:03:08 +03:00
|
|
|
|
|
2016-01-27 18:46:48 +03:00
|
|
|
|
public function testUpdateShareCantAccess() {
|
2019-11-27 17:27:18 +03:00
|
|
|
|
$this->expectException(\OCP\AppFramework\OCS\OCSNotFoundException::class);
|
|
|
|
|
$this->expectExceptionMessage('Wrong share ID, share doesn\'t exist');
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$node = $this->getMockBuilder(Folder::class)->getMock();
|
2016-03-09 11:11:41 +03:00
|
|
|
|
$share = $this->newShare();
|
|
|
|
|
$share->setNode($node);
|
|
|
|
|
|
|
|
|
|
$node->expects($this->once())
|
|
|
|
|
->method('lock')
|
|
|
|
|
->with(\OCP\Lock\ILockingProvider::LOCK_SHARED);
|
2016-01-27 18:46:48 +03:00
|
|
|
|
|
|
|
|
|
$this->shareManager->method('getShareById')->with('ocinternal:42')->willReturn($share);
|
|
|
|
|
|
2019-08-16 16:09:15 +03:00
|
|
|
|
$userFolder = $this->getMockBuilder('OCP\Files\Folder')->getMock();
|
|
|
|
|
$this->rootFolder->method('getUserFolder')
|
|
|
|
|
->with($this->currentUser)
|
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
|
|
|
|
$userFolder->method('getById')
|
|
|
|
|
->with($share->getNodeId())
|
|
|
|
|
->willReturn([$share->getNode()]);
|
|
|
|
|
|
2016-07-20 15:24:22 +03:00
|
|
|
|
$this->ocs->updateShare(42);
|
2016-01-27 18:46:48 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-10 12:03:08 +03:00
|
|
|
|
|
2016-01-27 18:46:48 +03:00
|
|
|
|
public function testUpdateNoParametersLink() {
|
2019-11-27 17:27:18 +03:00
|
|
|
|
$this->expectException(\OCP\AppFramework\OCS\OCSBadRequestException::class);
|
|
|
|
|
$this->expectExceptionMessage('Wrong or no update parameter given');
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$node = $this->getMockBuilder(Folder::class)->getMock();
|
2016-03-09 11:11:41 +03:00
|
|
|
|
$share = $this->newShare();
|
2016-01-27 18:46:48 +03:00
|
|
|
|
$share->setPermissions(\OCP\Constants::PERMISSION_ALL)
|
2016-10-21 21:25:07 +03:00
|
|
|
|
->setSharedBy($this->currentUser)
|
2016-03-09 11:11:41 +03:00
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_LINK)
|
|
|
|
|
->setNode($node);
|
|
|
|
|
|
|
|
|
|
$node->expects($this->once())
|
|
|
|
|
->method('lock')
|
|
|
|
|
->with(\OCP\Lock\ILockingProvider::LOCK_SHARED);
|
2016-01-27 18:46:48 +03:00
|
|
|
|
|
|
|
|
|
$this->shareManager->method('getShareById')->with('ocinternal:42')->willReturn($share);
|
|
|
|
|
|
2016-07-20 15:24:22 +03:00
|
|
|
|
$this->ocs->updateShare(42);
|
2016-01-27 18:46:48 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-10 12:03:08 +03:00
|
|
|
|
|
2016-01-27 18:46:48 +03:00
|
|
|
|
public function testUpdateNoParametersOther() {
|
2019-11-27 17:27:18 +03:00
|
|
|
|
$this->expectException(\OCP\AppFramework\OCS\OCSBadRequestException::class);
|
|
|
|
|
$this->expectExceptionMessage('Wrong or no update parameter given');
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$node = $this->getMockBuilder(Folder::class)->getMock();
|
2016-03-09 11:11:41 +03:00
|
|
|
|
$share = $this->newShare();
|
2016-01-27 18:46:48 +03:00
|
|
|
|
$share->setPermissions(\OCP\Constants::PERMISSION_ALL)
|
2016-10-21 21:25:07 +03:00
|
|
|
|
->setSharedBy($this->currentUser)
|
2016-03-09 11:11:41 +03:00
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_GROUP)
|
|
|
|
|
->setNode($node);
|
|
|
|
|
|
|
|
|
|
$node->expects($this->once())
|
|
|
|
|
->method('lock')
|
|
|
|
|
->with(\OCP\Lock\ILockingProvider::LOCK_SHARED);
|
2016-01-27 18:46:48 +03:00
|
|
|
|
|
|
|
|
|
$this->shareManager->method('getShareById')->with('ocinternal:42')->willReturn($share);
|
|
|
|
|
|
2016-07-20 15:24:22 +03:00
|
|
|
|
$this->ocs->updateShare(42);
|
2016-01-27 18:46:48 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testUpdateLinkShareClear() {
|
|
|
|
|
$ocs = $this->mockFormatShare();
|
|
|
|
|
|
2016-11-13 22:29:34 +03:00
|
|
|
|
$node = $this->getMockBuilder(Folder::class)->getMock();
|
2019-06-27 16:27:21 +03:00
|
|
|
|
$node->method('getId')
|
|
|
|
|
->willReturn(42);
|
2016-03-09 11:11:41 +03:00
|
|
|
|
$share = $this->newShare();
|
2016-01-27 18:46:48 +03:00
|
|
|
|
$share->setPermissions(\OCP\Constants::PERMISSION_ALL)
|
2016-10-21 21:25:07 +03:00
|
|
|
|
->setSharedBy($this->currentUser)
|
2016-01-27 18:46:48 +03:00
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_LINK)
|
|
|
|
|
->setPassword('password')
|
|
|
|
|
->setExpirationDate(new \DateTime())
|
2018-11-01 20:18:06 +03:00
|
|
|
|
->setNote('note')
|
|
|
|
|
->setLabel('label')
|
|
|
|
|
->setHideDownload(true)
|
2016-03-09 11:11:41 +03:00
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_ALL)
|
|
|
|
|
->setNode($node);
|
|
|
|
|
|
|
|
|
|
$node->expects($this->once())
|
|
|
|
|
->method('lock')
|
|
|
|
|
->with(\OCP\Lock\ILockingProvider::LOCK_SHARED);
|
2016-01-27 18:46:48 +03:00
|
|
|
|
|
|
|
|
|
$this->shareManager->method('getShareById')->with('ocinternal:42')->willReturn($share);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->expects($this->once())->method('updateShare')->with(
|
2016-01-28 15:17:16 +03:00
|
|
|
|
$this->callback(function (\OCP\Share\IShare $share) {
|
2016-01-27 18:46:48 +03:00
|
|
|
|
return $share->getPermissions() === \OCP\Constants::PERMISSION_READ &&
|
|
|
|
|
$share->getPassword() === null &&
|
2018-11-01 20:18:06 +03:00
|
|
|
|
$share->getExpirationDate() === null &&
|
|
|
|
|
// Once set a note or a label are never back to null, only to an
|
|
|
|
|
// empty string.
|
|
|
|
|
$share->getNote() === '' &&
|
|
|
|
|
$share->getLabel() === '' &&
|
|
|
|
|
$share->getHideDownload() === false;
|
2016-01-27 18:46:48 +03:00
|
|
|
|
})
|
2020-03-26 00:21:27 +03:00
|
|
|
|
)->willReturnArgument(0);
|
2016-01-27 18:46:48 +03:00
|
|
|
|
|
2016-11-13 22:29:34 +03:00
|
|
|
|
$this->shareManager->method('getSharedWith')
|
|
|
|
|
->willReturn([]);
|
|
|
|
|
|
2019-06-27 16:27:21 +03:00
|
|
|
|
$userFolder = $this->createMock(Folder::class);
|
|
|
|
|
$this->rootFolder->method('getUserFolder')
|
|
|
|
|
->with($this->currentUser)
|
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
|
|
|
|
$userFolder->method('getById')
|
|
|
|
|
->with(42)
|
|
|
|
|
->willReturn([$node]);
|
|
|
|
|
|
|
|
|
|
$mountPoint = $this->createMock(IMountPoint::class);
|
|
|
|
|
$node->method('getMountPoint')
|
|
|
|
|
->willReturn($mountPoint);
|
|
|
|
|
$mountPoint->method('getStorageRootId')
|
|
|
|
|
->willReturn(42);
|
|
|
|
|
|
2018-04-24 09:07:25 +03:00
|
|
|
|
$expected = new DataResponse([]);
|
2018-11-01 20:18:06 +03:00
|
|
|
|
$result = $ocs->updateShare(42, null, '', null, 'false', '', '', '', 'false');
|
2016-01-27 18:46:48 +03:00
|
|
|
|
|
2016-07-20 15:24:22 +03:00
|
|
|
|
$this->assertInstanceOf(get_class($expected), $result);
|
2016-01-27 18:46:48 +03:00
|
|
|
|
$this->assertEquals($expected->getData(), $result->getData());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testUpdateLinkShareSet() {
|
|
|
|
|
$ocs = $this->mockFormatShare();
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$folder = $this->getMockBuilder(Folder::class)->getMock();
|
2019-06-27 16:27:21 +03:00
|
|
|
|
$folder->method('getId')
|
|
|
|
|
->willReturn(42);
|
2016-01-27 18:46:48 +03:00
|
|
|
|
|
|
|
|
|
$share = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$share->setPermissions(\OCP\Constants::PERMISSION_ALL)
|
2016-10-21 21:25:07 +03:00
|
|
|
|
->setSharedBy($this->currentUser)
|
2016-01-27 18:46:48 +03:00
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_LINK)
|
2016-01-28 15:17:16 +03:00
|
|
|
|
->setNode($folder);
|
2016-01-27 18:46:48 +03:00
|
|
|
|
|
|
|
|
|
$this->shareManager->method('getShareById')->with('ocinternal:42')->willReturn($share);
|
|
|
|
|
$this->shareManager->method('shareApiLinkAllowPublicUpload')->willReturn(true);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->expects($this->once())->method('updateShare')->with(
|
2016-01-28 15:17:16 +03:00
|
|
|
|
$this->callback(function (\OCP\Share\IShare $share) {
|
2016-01-27 18:46:48 +03:00
|
|
|
|
$date = new \DateTime('2000-01-01');
|
|
|
|
|
$date->setTime(0,0,0);
|
|
|
|
|
|
2016-06-23 16:43:21 +03:00
|
|
|
|
return $share->getPermissions() === (\OCP\Constants::PERMISSION_READ | \OCP\Constants::PERMISSION_CREATE | \OCP\Constants::PERMISSION_UPDATE | \OCP\Constants::PERMISSION_DELETE) &&
|
2016-01-27 18:46:48 +03:00
|
|
|
|
$share->getPassword() === 'password' &&
|
2018-11-01 20:18:06 +03:00
|
|
|
|
$share->getExpirationDate() == $date &&
|
|
|
|
|
$share->getNote() === 'note' &&
|
|
|
|
|
$share->getLabel() === 'label' &&
|
|
|
|
|
$share->getHideDownload() === true;
|
2016-01-27 18:46:48 +03:00
|
|
|
|
})
|
2020-03-26 00:21:27 +03:00
|
|
|
|
)->willReturnArgument(0);
|
2016-01-27 18:46:48 +03:00
|
|
|
|
|
2016-11-13 22:29:34 +03:00
|
|
|
|
$this->shareManager->method('getSharedWith')
|
|
|
|
|
->willReturn([]);
|
|
|
|
|
|
2019-06-27 16:27:21 +03:00
|
|
|
|
$userFolder = $this->createMock(Folder::class);
|
|
|
|
|
$this->rootFolder->method('getUserFolder')
|
|
|
|
|
->with($this->currentUser)
|
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
|
|
|
|
$userFolder->method('getById')
|
|
|
|
|
->with(42)
|
|
|
|
|
->willReturn([$folder]);
|
|
|
|
|
|
|
|
|
|
$mountPoint = $this->createMock(IMountPoint::class);
|
|
|
|
|
$folder->method('getMountPoint')
|
|
|
|
|
->willReturn($mountPoint);
|
|
|
|
|
$mountPoint->method('getStorageRootId')
|
|
|
|
|
->willReturn(42);
|
|
|
|
|
|
2018-04-24 09:07:25 +03:00
|
|
|
|
$expected = new DataResponse([]);
|
2018-11-01 20:18:06 +03:00
|
|
|
|
$result = $ocs->updateShare(42, null, 'password', null, 'true', '2000-01-01', 'note', 'label', 'true');
|
2016-01-27 18:46:48 +03:00
|
|
|
|
|
2016-07-20 15:24:22 +03:00
|
|
|
|
$this->assertInstanceOf(get_class($expected), $result);
|
2016-01-27 18:46:48 +03:00
|
|
|
|
$this->assertEquals($expected->getData(), $result->getData());
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-23 16:43:21 +03:00
|
|
|
|
/**
|
|
|
|
|
* @dataProvider publicUploadParamsProvider
|
|
|
|
|
*/
|
2016-08-17 11:05:09 +03:00
|
|
|
|
public function testUpdateLinkShareEnablePublicUpload($permissions, $publicUpload, $expireDate, $password) {
|
2016-06-23 16:43:21 +03:00
|
|
|
|
$ocs = $this->mockFormatShare();
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$folder = $this->getMockBuilder(Folder::class)->getMock();
|
2019-06-27 16:27:21 +03:00
|
|
|
|
$folder->method('getId')
|
|
|
|
|
->willReturn(42);
|
2016-06-23 16:43:21 +03:00
|
|
|
|
|
|
|
|
|
$share = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$share->setPermissions(\OCP\Constants::PERMISSION_ALL)
|
2016-10-21 21:25:07 +03:00
|
|
|
|
->setSharedBy($this->currentUser)
|
2016-06-23 16:43:21 +03:00
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_LINK)
|
|
|
|
|
->setPassword('password')
|
|
|
|
|
->setNode($folder);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->method('getShareById')->with('ocinternal:42')->willReturn($share);
|
|
|
|
|
$this->shareManager->method('shareApiLinkAllowPublicUpload')->willReturn(true);
|
|
|
|
|
$this->shareManager->method('getSharedWith')->willReturn([]);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->expects($this->once())->method('updateShare')->with(
|
|
|
|
|
$this->callback(function (\OCP\Share\IShare $share) {
|
|
|
|
|
return $share->getPermissions() === (\OCP\Constants::PERMISSION_READ | \OCP\Constants::PERMISSION_CREATE | \OCP\Constants::PERMISSION_UPDATE | \OCP\Constants::PERMISSION_DELETE) &&
|
|
|
|
|
$share->getPassword() === 'password' &&
|
|
|
|
|
$share->getExpirationDate() === null;
|
|
|
|
|
})
|
2020-03-26 00:21:27 +03:00
|
|
|
|
)->willReturnArgument(0);
|
2016-06-23 16:43:21 +03:00
|
|
|
|
|
2019-06-27 16:27:21 +03:00
|
|
|
|
$userFolder = $this->createMock(Folder::class);
|
|
|
|
|
$this->rootFolder->method('getUserFolder')
|
|
|
|
|
->with($this->currentUser)
|
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
|
|
|
|
$userFolder->method('getById')
|
|
|
|
|
->with(42)
|
|
|
|
|
->willReturn([$folder]);
|
|
|
|
|
|
|
|
|
|
$mountPoint = $this->createMock(IMountPoint::class);
|
|
|
|
|
$folder->method('getMountPoint')
|
|
|
|
|
->willReturn($mountPoint);
|
|
|
|
|
$mountPoint->method('getStorageRootId')
|
|
|
|
|
->willReturn(42);
|
|
|
|
|
|
2018-04-24 09:07:25 +03:00
|
|
|
|
$expected = new DataResponse([]);
|
2018-07-10 14:01:31 +03:00
|
|
|
|
$result = $ocs->updateShare(42, $permissions, $password, null, $publicUpload, $expireDate);
|
2016-06-23 16:43:21 +03:00
|
|
|
|
|
2016-07-20 15:24:22 +03:00
|
|
|
|
$this->assertInstanceOf(get_class($expected), $result);
|
2016-06-23 16:43:21 +03:00
|
|
|
|
$this->assertEquals($expected->getData(), $result->getData());
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-10 12:03:08 +03:00
|
|
|
|
|
2016-01-27 18:46:48 +03:00
|
|
|
|
public function testUpdateLinkShareInvalidDate() {
|
2019-11-27 17:27:18 +03:00
|
|
|
|
$this->expectException(\OCP\AppFramework\OCS\OCSBadRequestException::class);
|
|
|
|
|
$this->expectExceptionMessage('Invalid date. Format must be YYYY-MM-DD');
|
|
|
|
|
|
2016-01-27 18:46:48 +03:00
|
|
|
|
$ocs = $this->mockFormatShare();
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$folder = $this->getMockBuilder(Folder::class)->getMock();
|
2016-01-27 18:46:48 +03:00
|
|
|
|
|
|
|
|
|
$share = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$share->setPermissions(\OCP\Constants::PERMISSION_ALL)
|
2016-10-21 21:25:07 +03:00
|
|
|
|
->setSharedBy($this->currentUser)
|
2016-01-27 18:46:48 +03:00
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_LINK)
|
2016-01-28 15:17:16 +03:00
|
|
|
|
->setNode($folder);
|
2016-01-27 18:46:48 +03:00
|
|
|
|
|
|
|
|
|
$this->shareManager->method('getShareById')->with('ocinternal:42')->willReturn($share);
|
|
|
|
|
$this->shareManager->method('shareApiLinkAllowPublicUpload')->willReturn(true);
|
|
|
|
|
|
2018-07-10 14:01:31 +03:00
|
|
|
|
$ocs->updateShare(42, null, 'password', null, 'true', '2000-01-a');
|
2016-01-27 18:46:48 +03:00
|
|
|
|
}
|
|
|
|
|
|
2016-06-23 16:43:21 +03:00
|
|
|
|
public function publicUploadParamsProvider() {
|
|
|
|
|
return [
|
2016-08-17 11:05:09 +03:00
|
|
|
|
[null, 'true', null, 'password'],
|
|
|
|
|
// legacy had no delete
|
|
|
|
|
[
|
|
|
|
|
\OCP\Constants::PERMISSION_READ | \OCP\Constants::PERMISSION_CREATE | \OCP\Constants::PERMISSION_UPDATE,
|
|
|
|
|
null, null, 'password'
|
|
|
|
|
],
|
|
|
|
|
// correct
|
|
|
|
|
[
|
|
|
|
|
\OCP\Constants::PERMISSION_READ | \OCP\Constants::PERMISSION_CREATE | \OCP\Constants::PERMISSION_UPDATE | \OCP\Constants::PERMISSION_DELETE,
|
|
|
|
|
null, null, 'password'
|
|
|
|
|
],
|
2016-06-23 16:43:21 +03:00
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider publicUploadParamsProvider
|
|
|
|
|
*/
|
2016-08-17 11:05:09 +03:00
|
|
|
|
public function testUpdateLinkSharePublicUploadNotAllowed($permissions, $publicUpload, $expireDate, $password) {
|
2019-11-27 17:27:18 +03:00
|
|
|
|
$this->expectException(\OCP\AppFramework\OCS\OCSForbiddenException::class);
|
|
|
|
|
$this->expectExceptionMessage('Public upload disabled by the administrator');
|
|
|
|
|
|
2016-01-27 18:46:48 +03:00
|
|
|
|
$ocs = $this->mockFormatShare();
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$folder = $this->getMockBuilder(Folder::class)->getMock();
|
2016-01-27 18:46:48 +03:00
|
|
|
|
|
|
|
|
|
$share = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$share->setPermissions(\OCP\Constants::PERMISSION_ALL)
|
2016-10-21 21:25:07 +03:00
|
|
|
|
->setSharedBy($this->currentUser)
|
2016-01-27 18:46:48 +03:00
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_LINK)
|
2016-01-28 15:17:16 +03:00
|
|
|
|
->setNode($folder);
|
2016-01-27 18:46:48 +03:00
|
|
|
|
|
|
|
|
|
$this->shareManager->method('getShareById')->with('ocinternal:42')->willReturn($share);
|
|
|
|
|
$this->shareManager->method('shareApiLinkAllowPublicUpload')->willReturn(false);
|
|
|
|
|
|
2018-07-10 14:01:31 +03:00
|
|
|
|
$ocs->updateShare(42, $permissions, $password, null, $publicUpload, $expireDate);
|
2016-01-27 18:46:48 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-10 12:03:08 +03:00
|
|
|
|
|
2016-01-27 18:46:48 +03:00
|
|
|
|
public function testUpdateLinkSharePublicUploadOnFile() {
|
2019-11-27 17:27:18 +03:00
|
|
|
|
$this->expectException(\OCP\AppFramework\OCS\OCSBadRequestException::class);
|
|
|
|
|
$this->expectExceptionMessage('Public upload is only possible for publicly shared folders');
|
|
|
|
|
|
2016-01-27 18:46:48 +03:00
|
|
|
|
$ocs = $this->mockFormatShare();
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$file = $this->getMockBuilder(File::class)->getMock();
|
2016-01-27 18:46:48 +03:00
|
|
|
|
|
|
|
|
|
$share = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$share->setPermissions(\OCP\Constants::PERMISSION_ALL)
|
2016-10-21 21:25:07 +03:00
|
|
|
|
->setSharedBy($this->currentUser)
|
2016-01-27 18:46:48 +03:00
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_LINK)
|
2016-01-28 15:17:16 +03:00
|
|
|
|
->setNode($file);
|
2016-01-27 18:46:48 +03:00
|
|
|
|
|
|
|
|
|
$this->shareManager->method('getShareById')->with('ocinternal:42')->willReturn($share);
|
|
|
|
|
$this->shareManager->method('shareApiLinkAllowPublicUpload')->willReturn(true);
|
|
|
|
|
|
2018-07-10 14:01:31 +03:00
|
|
|
|
$ocs->updateShare(42, null, 'password', null, 'true', '');
|
2016-01-27 18:46:48 +03:00
|
|
|
|
}
|
|
|
|
|
|
2016-01-27 19:09:02 +03:00
|
|
|
|
public function testUpdateLinkSharePasswordDoesNotChangeOther() {
|
|
|
|
|
$ocs = $this->mockFormatShare();
|
|
|
|
|
|
|
|
|
|
$date = new \DateTime('2000-01-01');
|
|
|
|
|
$date->setTime(0,0,0);
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$node = $this->getMockBuilder(File::class)->getMock();
|
2016-03-09 11:11:41 +03:00
|
|
|
|
$share = $this->newShare();
|
2016-01-27 19:09:02 +03:00
|
|
|
|
$share->setPermissions(\OCP\Constants::PERMISSION_ALL)
|
2016-10-21 21:25:07 +03:00
|
|
|
|
->setSharedBy($this->currentUser)
|
2016-01-27 19:09:02 +03:00
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_LINK)
|
|
|
|
|
->setPassword('password')
|
2018-10-15 13:27:56 +03:00
|
|
|
|
->setSendPasswordByTalk(true)
|
2016-01-27 19:09:02 +03:00
|
|
|
|
->setExpirationDate($date)
|
2018-11-01 20:18:06 +03:00
|
|
|
|
->setNote('note')
|
|
|
|
|
->setLabel('label')
|
|
|
|
|
->setHideDownload(true)
|
2016-03-09 11:11:41 +03:00
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_ALL)
|
|
|
|
|
->setNode($node);
|
|
|
|
|
|
|
|
|
|
$node->expects($this->once())
|
|
|
|
|
->method('lock')
|
|
|
|
|
->with(\OCP\Lock\ILockingProvider::LOCK_SHARED);
|
2016-01-27 19:09:02 +03:00
|
|
|
|
|
|
|
|
|
$this->shareManager->method('getShareById')->with('ocinternal:42')->willReturn($share);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->expects($this->once())->method('updateShare')->with(
|
2016-01-28 15:17:16 +03:00
|
|
|
|
$this->callback(function (\OCP\Share\IShare $share) use ($date) {
|
2016-01-27 19:09:02 +03:00
|
|
|
|
return $share->getPermissions() === \OCP\Constants::PERMISSION_ALL &&
|
|
|
|
|
$share->getPassword() === 'newpassword' &&
|
2018-10-15 13:27:56 +03:00
|
|
|
|
$share->getSendPasswordByTalk() === true &&
|
2018-11-01 20:18:06 +03:00
|
|
|
|
$share->getExpirationDate() === $date &&
|
|
|
|
|
$share->getNote() === 'note' &&
|
|
|
|
|
$share->getLabel() === 'label' &&
|
|
|
|
|
$share->getHideDownload() === true;
|
2016-01-27 19:09:02 +03:00
|
|
|
|
})
|
2020-03-26 00:21:27 +03:00
|
|
|
|
)->willReturnArgument(0);
|
2016-01-27 19:09:02 +03:00
|
|
|
|
|
2018-04-24 09:07:25 +03:00
|
|
|
|
$expected = new DataResponse([]);
|
2018-11-01 20:18:06 +03:00
|
|
|
|
$result = $ocs->updateShare(42, null, 'newpassword', null, null, null, null, null, null);
|
2016-01-27 19:09:02 +03:00
|
|
|
|
|
2016-07-20 15:24:22 +03:00
|
|
|
|
$this->assertInstanceOf(get_class($expected), $result);
|
2016-01-27 19:09:02 +03:00
|
|
|
|
$this->assertEquals($expected->getData(), $result->getData());
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-15 13:27:56 +03:00
|
|
|
|
public function testUpdateLinkShareSendPasswordByTalkDoesNotChangeOther() {
|
|
|
|
|
$ocs = $this->mockFormatShare();
|
|
|
|
|
|
|
|
|
|
$date = new \DateTime('2000-01-01');
|
|
|
|
|
$date->setTime(0,0,0);
|
|
|
|
|
|
|
|
|
|
$node = $this->getMockBuilder(File::class)->getMock();
|
|
|
|
|
$share = $this->newShare();
|
|
|
|
|
$share->setPermissions(\OCP\Constants::PERMISSION_ALL)
|
|
|
|
|
->setSharedBy($this->currentUser)
|
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_LINK)
|
|
|
|
|
->setPassword('password')
|
|
|
|
|
->setSendPasswordByTalk(false)
|
|
|
|
|
->setExpirationDate($date)
|
|
|
|
|
->setNote('note')
|
|
|
|
|
->setLabel('label')
|
|
|
|
|
->setHideDownload(true)
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_ALL)
|
|
|
|
|
->setNode($node);
|
|
|
|
|
|
|
|
|
|
$node->expects($this->once())
|
|
|
|
|
->method('lock')
|
|
|
|
|
->with(\OCP\Lock\ILockingProvider::LOCK_SHARED);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->method('getShareById')->with('ocinternal:42')->willReturn($share);
|
|
|
|
|
|
|
|
|
|
$this->appManager->method('isEnabledForUser')->with('spreed')->willReturn(true);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->expects($this->once())->method('updateShare')->with(
|
|
|
|
|
$this->callback(function (\OCP\Share\IShare $share) use ($date) {
|
|
|
|
|
return $share->getPermissions() === \OCP\Constants::PERMISSION_ALL &&
|
|
|
|
|
$share->getPassword() === 'password' &&
|
|
|
|
|
$share->getSendPasswordByTalk() === true &&
|
|
|
|
|
$share->getExpirationDate() === $date &&
|
|
|
|
|
$share->getNote() === 'note' &&
|
|
|
|
|
$share->getLabel() === 'label' &&
|
|
|
|
|
$share->getHideDownload() === true;
|
|
|
|
|
})
|
2020-03-26 00:21:27 +03:00
|
|
|
|
)->willReturnArgument(0);
|
2018-10-15 13:27:56 +03:00
|
|
|
|
|
|
|
|
|
$expected = new DataResponse([]);
|
|
|
|
|
$result = $ocs->updateShare(42, null, null, 'true', null, null, null, null, null);
|
|
|
|
|
|
|
|
|
|
$this->assertInstanceOf(get_class($expected), $result);
|
|
|
|
|
$this->assertEquals($expected->getData(), $result->getData());
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-10 12:03:08 +03:00
|
|
|
|
|
2018-10-15 13:27:56 +03:00
|
|
|
|
public function testUpdateLinkShareSendPasswordByTalkWithTalkDisabledDoesNotChangeOther() {
|
2019-11-27 17:27:18 +03:00
|
|
|
|
$this->expectException(\OCP\AppFramework\OCS\OCSForbiddenException::class);
|
|
|
|
|
$this->expectExceptionMessage('Sharing sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled');
|
|
|
|
|
|
2018-10-15 13:27:56 +03:00
|
|
|
|
$ocs = $this->mockFormatShare();
|
|
|
|
|
|
|
|
|
|
$date = new \DateTime('2000-01-01');
|
|
|
|
|
$date->setTime(0,0,0);
|
|
|
|
|
|
|
|
|
|
$node = $this->getMockBuilder(File::class)->getMock();
|
|
|
|
|
$share = $this->newShare();
|
|
|
|
|
$share->setPermissions(\OCP\Constants::PERMISSION_ALL)
|
|
|
|
|
->setSharedBy($this->currentUser)
|
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_LINK)
|
|
|
|
|
->setPassword('password')
|
|
|
|
|
->setSendPasswordByTalk(false)
|
|
|
|
|
->setExpirationDate($date)
|
|
|
|
|
->setNote('note')
|
|
|
|
|
->setLabel('label')
|
|
|
|
|
->setHideDownload(true)
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_ALL)
|
|
|
|
|
->setNode($node);
|
|
|
|
|
|
|
|
|
|
$node->expects($this->once())
|
|
|
|
|
->method('lock')
|
|
|
|
|
->with(\OCP\Lock\ILockingProvider::LOCK_SHARED);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->method('getShareById')->with('ocinternal:42')->willReturn($share);
|
|
|
|
|
|
|
|
|
|
$this->appManager->method('isEnabledForUser')->with('spreed')->willReturn(false);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->expects($this->never())->method('updateShare');
|
|
|
|
|
|
|
|
|
|
$ocs->updateShare(42, null, null, 'true', null, null, null, null, null);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testUpdateLinkShareDoNotSendPasswordByTalkDoesNotChangeOther() {
|
|
|
|
|
$ocs = $this->mockFormatShare();
|
|
|
|
|
|
|
|
|
|
$date = new \DateTime('2000-01-01');
|
|
|
|
|
$date->setTime(0,0,0);
|
|
|
|
|
|
|
|
|
|
$node = $this->getMockBuilder(File::class)->getMock();
|
|
|
|
|
$share = $this->newShare();
|
|
|
|
|
$share->setPermissions(\OCP\Constants::PERMISSION_ALL)
|
|
|
|
|
->setSharedBy($this->currentUser)
|
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_LINK)
|
|
|
|
|
->setPassword('password')
|
|
|
|
|
->setSendPasswordByTalk(true)
|
|
|
|
|
->setExpirationDate($date)
|
|
|
|
|
->setNote('note')
|
|
|
|
|
->setLabel('label')
|
|
|
|
|
->setHideDownload(true)
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_ALL)
|
|
|
|
|
->setNode($node);
|
|
|
|
|
|
|
|
|
|
$node->expects($this->once())
|
|
|
|
|
->method('lock')
|
|
|
|
|
->with(\OCP\Lock\ILockingProvider::LOCK_SHARED);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->method('getShareById')->with('ocinternal:42')->willReturn($share);
|
|
|
|
|
|
|
|
|
|
$this->appManager->method('isEnabledForUser')->with('spreed')->willReturn(true);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->expects($this->once())->method('updateShare')->with(
|
|
|
|
|
$this->callback(function (\OCP\Share\IShare $share) use ($date) {
|
|
|
|
|
return $share->getPermissions() === \OCP\Constants::PERMISSION_ALL &&
|
|
|
|
|
$share->getPassword() === 'password' &&
|
|
|
|
|
$share->getSendPasswordByTalk() === false &&
|
|
|
|
|
$share->getExpirationDate() === $date &&
|
|
|
|
|
$share->getNote() === 'note' &&
|
|
|
|
|
$share->getLabel() === 'label' &&
|
|
|
|
|
$share->getHideDownload() === true;
|
|
|
|
|
})
|
2020-03-26 00:21:27 +03:00
|
|
|
|
)->willReturnArgument(0);
|
2018-10-15 13:27:56 +03:00
|
|
|
|
|
|
|
|
|
$expected = new DataResponse([]);
|
|
|
|
|
$result = $ocs->updateShare(42, null, null, 'false', null, null, null, null, null);
|
|
|
|
|
|
|
|
|
|
$this->assertInstanceOf(get_class($expected), $result);
|
|
|
|
|
$this->assertEquals($expected->getData(), $result->getData());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testUpdateLinkShareDoNotSendPasswordByTalkWithTalkDisabledDoesNotChangeOther() {
|
|
|
|
|
$ocs = $this->mockFormatShare();
|
|
|
|
|
|
|
|
|
|
$date = new \DateTime('2000-01-01');
|
|
|
|
|
$date->setTime(0,0,0);
|
|
|
|
|
|
|
|
|
|
$node = $this->getMockBuilder(File::class)->getMock();
|
2019-06-27 16:27:21 +03:00
|
|
|
|
$node->method('getId')
|
|
|
|
|
->willReturn(42);
|
|
|
|
|
|
2018-10-15 13:27:56 +03:00
|
|
|
|
$share = $this->newShare();
|
|
|
|
|
$share->setPermissions(\OCP\Constants::PERMISSION_ALL)
|
|
|
|
|
->setSharedBy($this->currentUser)
|
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_LINK)
|
|
|
|
|
->setPassword('password')
|
|
|
|
|
->setSendPasswordByTalk(true)
|
|
|
|
|
->setExpirationDate($date)
|
|
|
|
|
->setNote('note')
|
|
|
|
|
->setLabel('label')
|
|
|
|
|
->setHideDownload(true)
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_ALL)
|
|
|
|
|
->setNode($node);
|
|
|
|
|
|
|
|
|
|
$node->expects($this->once())
|
|
|
|
|
->method('lock')
|
|
|
|
|
->with(\OCP\Lock\ILockingProvider::LOCK_SHARED);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->method('getShareById')->with('ocinternal:42')->willReturn($share);
|
|
|
|
|
|
|
|
|
|
$this->appManager->method('isEnabledForUser')->with('spreed')->willReturn(false);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->expects($this->once())->method('updateShare')->with(
|
|
|
|
|
$this->callback(function (\OCP\Share\IShare $share) use ($date) {
|
|
|
|
|
return $share->getPermissions() === \OCP\Constants::PERMISSION_ALL &&
|
|
|
|
|
$share->getPassword() === 'password' &&
|
|
|
|
|
$share->getSendPasswordByTalk() === false &&
|
|
|
|
|
$share->getExpirationDate() === $date &&
|
|
|
|
|
$share->getNote() === 'note' &&
|
|
|
|
|
$share->getLabel() === 'label' &&
|
|
|
|
|
$share->getHideDownload() === true;
|
|
|
|
|
})
|
2020-03-26 00:21:27 +03:00
|
|
|
|
)->willReturnArgument(0);
|
2018-10-15 13:27:56 +03:00
|
|
|
|
|
2019-06-27 16:27:21 +03:00
|
|
|
|
$userFolder = $this->createMock(Folder::class);
|
|
|
|
|
$this->rootFolder->method('getUserFolder')
|
|
|
|
|
->with($this->currentUser)
|
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
|
|
|
|
$userFolder->method('getById')
|
|
|
|
|
->with(42)
|
|
|
|
|
->willReturn([$node]);
|
|
|
|
|
|
|
|
|
|
$mountPoint = $this->createMock(IMountPoint::class);
|
|
|
|
|
$node->method('getMountPoint')
|
|
|
|
|
->willReturn($mountPoint);
|
|
|
|
|
$mountPoint->method('getStorageRootId')
|
|
|
|
|
->willReturn(42);
|
|
|
|
|
|
|
|
|
|
$mountPoint = $this->createMock(IMountPoint::class);
|
|
|
|
|
$node->method('getMountPoint')
|
|
|
|
|
->willReturn($mountPoint);
|
|
|
|
|
$mountPoint->method('getStorageRootId')
|
|
|
|
|
->willReturn(42);
|
|
|
|
|
|
2018-10-15 13:27:56 +03:00
|
|
|
|
$expected = new DataResponse([]);
|
|
|
|
|
$result = $ocs->updateShare(42, null, null, 'false', null, null, null, null, null);
|
|
|
|
|
|
|
|
|
|
$this->assertInstanceOf(get_class($expected), $result);
|
|
|
|
|
$this->assertEquals($expected->getData(), $result->getData());
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-27 19:09:02 +03:00
|
|
|
|
public function testUpdateLinkShareExpireDateDoesNotChangeOther() {
|
|
|
|
|
$ocs = $this->mockFormatShare();
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$node = $this->getMockBuilder(File::class)->getMock();
|
2019-06-27 16:27:21 +03:00
|
|
|
|
$node->method('getId')
|
|
|
|
|
->willReturn(42);
|
|
|
|
|
|
2016-03-09 11:11:41 +03:00
|
|
|
|
$share = $this->newShare();
|
2016-01-27 19:09:02 +03:00
|
|
|
|
$share->setPermissions(\OCP\Constants::PERMISSION_ALL)
|
2016-10-21 21:25:07 +03:00
|
|
|
|
->setSharedBy($this->currentUser)
|
2016-01-27 19:09:02 +03:00
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_LINK)
|
|
|
|
|
->setPassword('password')
|
2018-10-15 13:27:56 +03:00
|
|
|
|
->setSendPasswordByTalk(true)
|
2016-01-27 19:09:02 +03:00
|
|
|
|
->setExpirationDate(new \DateTime())
|
2018-11-01 20:18:06 +03:00
|
|
|
|
->setNote('note')
|
|
|
|
|
->setLabel('label')
|
|
|
|
|
->setHideDownload(true)
|
2016-03-09 11:11:41 +03:00
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_ALL)
|
|
|
|
|
->setNode($node);
|
2016-01-27 19:09:02 +03:00
|
|
|
|
|
2016-03-09 11:11:41 +03:00
|
|
|
|
$node->expects($this->once())
|
|
|
|
|
->method('lock')
|
|
|
|
|
->with(\OCP\Lock\ILockingProvider::LOCK_SHARED);
|
|
|
|
|
|
2016-01-27 19:09:02 +03:00
|
|
|
|
$this->shareManager->method('getShareById')->with('ocinternal:42')->willReturn($share);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->expects($this->once())->method('updateShare')->with(
|
2016-01-28 15:17:16 +03:00
|
|
|
|
$this->callback(function (\OCP\Share\IShare $share) {
|
2016-01-27 19:09:02 +03:00
|
|
|
|
$date = new \DateTime('2010-12-23');
|
|
|
|
|
$date->setTime(0,0,0);
|
|
|
|
|
|
|
|
|
|
return $share->getPermissions() === \OCP\Constants::PERMISSION_ALL &&
|
|
|
|
|
$share->getPassword() === 'password' &&
|
2018-10-15 13:27:56 +03:00
|
|
|
|
$share->getSendPasswordByTalk() === true &&
|
2018-11-01 20:18:06 +03:00
|
|
|
|
$share->getExpirationDate() == $date &&
|
|
|
|
|
$share->getNote() === 'note' &&
|
|
|
|
|
$share->getLabel() === 'label' &&
|
|
|
|
|
$share->getHideDownload() === true;
|
2016-01-27 19:09:02 +03:00
|
|
|
|
})
|
2020-03-26 00:21:27 +03:00
|
|
|
|
)->willReturnArgument(0);
|
2016-01-27 19:09:02 +03:00
|
|
|
|
|
2019-06-27 16:27:21 +03:00
|
|
|
|
$userFolder = $this->createMock(Folder::class);
|
|
|
|
|
$this->rootFolder->method('getUserFolder')
|
|
|
|
|
->with($this->currentUser)
|
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
|
|
|
|
$userFolder->method('getById')
|
|
|
|
|
->with(42)
|
|
|
|
|
->willReturn([$node]);
|
|
|
|
|
|
|
|
|
|
$mountPoint = $this->createMock(IMountPoint::class);
|
|
|
|
|
$node->method('getMountPoint')
|
|
|
|
|
->willReturn($mountPoint);
|
|
|
|
|
$mountPoint->method('getStorageRootId')
|
|
|
|
|
->willReturn(42);
|
|
|
|
|
|
2018-04-24 09:07:25 +03:00
|
|
|
|
$expected = new DataResponse([]);
|
2018-11-01 20:18:06 +03:00
|
|
|
|
$result = $ocs->updateShare(42, null, null, null, null, '2010-12-23', null, null, null);
|
2016-01-27 19:09:02 +03:00
|
|
|
|
|
2016-07-20 15:24:22 +03:00
|
|
|
|
$this->assertInstanceOf(get_class($expected), $result);
|
2016-01-27 19:09:02 +03:00
|
|
|
|
$this->assertEquals($expected->getData(), $result->getData());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testUpdateLinkSharePublicUploadDoesNotChangeOther() {
|
|
|
|
|
$ocs = $this->mockFormatShare();
|
|
|
|
|
|
|
|
|
|
$date = new \DateTime('2000-01-01');
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$folder = $this->getMockBuilder(Folder::class)->getMock();
|
2019-06-27 16:27:21 +03:00
|
|
|
|
$folder->method('getId')
|
|
|
|
|
->willReturn(42);
|
2016-01-27 19:09:02 +03:00
|
|
|
|
|
|
|
|
|
$share = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$share->setPermissions(\OCP\Constants::PERMISSION_ALL)
|
2016-10-21 21:25:07 +03:00
|
|
|
|
->setSharedBy($this->currentUser)
|
2016-01-27 19:09:02 +03:00
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_LINK)
|
|
|
|
|
->setPassword('password')
|
2018-10-15 13:27:56 +03:00
|
|
|
|
->setSendPasswordByTalk(true)
|
2016-01-27 19:09:02 +03:00
|
|
|
|
->setExpirationDate($date)
|
2018-11-01 20:18:06 +03:00
|
|
|
|
->setNote('note')
|
|
|
|
|
->setLabel('label')
|
|
|
|
|
->setHideDownload(true)
|
2016-01-27 19:09:02 +03:00
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_ALL)
|
2016-01-28 15:17:16 +03:00
|
|
|
|
->setNode($folder);
|
2016-01-27 19:09:02 +03:00
|
|
|
|
|
|
|
|
|
$this->shareManager->method('getShareById')->with('ocinternal:42')->willReturn($share);
|
|
|
|
|
$this->shareManager->method('shareApiLinkAllowPublicUpload')->willReturn(true);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->expects($this->once())->method('updateShare')->with(
|
2016-01-28 15:17:16 +03:00
|
|
|
|
$this->callback(function (\OCP\Share\IShare $share) use ($date) {
|
2016-06-23 16:43:21 +03:00
|
|
|
|
return $share->getPermissions() === (\OCP\Constants::PERMISSION_READ | \OCP\Constants::PERMISSION_CREATE | \OCP\Constants::PERMISSION_UPDATE | \OCP\Constants::PERMISSION_DELETE) &&
|
2016-01-27 19:09:02 +03:00
|
|
|
|
$share->getPassword() === 'password' &&
|
2018-10-15 13:27:56 +03:00
|
|
|
|
$share->getSendPasswordByTalk() === true &&
|
2018-11-01 20:18:06 +03:00
|
|
|
|
$share->getExpirationDate() === $date &&
|
|
|
|
|
$share->getNote() === 'note' &&
|
|
|
|
|
$share->getLabel() === 'label' &&
|
|
|
|
|
$share->getHideDownload() === true;
|
2016-01-27 19:09:02 +03:00
|
|
|
|
})
|
2020-03-26 00:21:27 +03:00
|
|
|
|
)->willReturnArgument(0);
|
2016-01-27 19:09:02 +03:00
|
|
|
|
|
2016-11-13 22:29:34 +03:00
|
|
|
|
$this->shareManager->method('getSharedWith')
|
|
|
|
|
->willReturn([]);
|
|
|
|
|
|
2019-06-27 16:27:21 +03:00
|
|
|
|
$userFolder = $this->createMock(Folder::class);
|
|
|
|
|
$this->rootFolder->method('getUserFolder')
|
|
|
|
|
->with($this->currentUser)
|
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
|
|
|
|
$userFolder->method('getById')
|
|
|
|
|
->with(42)
|
|
|
|
|
->willReturn([$folder]);
|
|
|
|
|
|
|
|
|
|
$mountPoint = $this->createMock(IMountPoint::class);
|
|
|
|
|
$folder->method('getMountPoint')
|
|
|
|
|
->willReturn($mountPoint);
|
|
|
|
|
$mountPoint->method('getStorageRootId')
|
|
|
|
|
->willReturn(42);
|
|
|
|
|
|
2018-04-24 09:07:25 +03:00
|
|
|
|
$expected = new DataResponse([]);
|
2018-11-01 20:18:06 +03:00
|
|
|
|
$result = $ocs->updateShare(42, null, null, null, 'true', null, null, null, null);
|
2016-01-27 19:09:02 +03:00
|
|
|
|
|
2016-07-20 15:24:22 +03:00
|
|
|
|
$this->assertInstanceOf(get_class($expected), $result);
|
2016-01-27 19:09:02 +03:00
|
|
|
|
$this->assertEquals($expected->getData(), $result->getData());
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-27 22:32:04 +03:00
|
|
|
|
public function testUpdateLinkSharePermissions() {
|
|
|
|
|
$ocs = $this->mockFormatShare();
|
|
|
|
|
|
|
|
|
|
$date = new \DateTime('2000-01-01');
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$folder = $this->getMockBuilder(Folder::class)->getMock();
|
2019-06-27 16:27:21 +03:00
|
|
|
|
$folder->method('getId')
|
|
|
|
|
->willReturn(42);
|
2016-01-27 22:32:04 +03:00
|
|
|
|
|
|
|
|
|
$share = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$share->setPermissions(\OCP\Constants::PERMISSION_ALL)
|
2016-10-21 21:25:07 +03:00
|
|
|
|
->setSharedBy($this->currentUser)
|
2016-01-27 22:32:04 +03:00
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_LINK)
|
|
|
|
|
->setPassword('password')
|
2018-10-15 13:27:56 +03:00
|
|
|
|
->setSendPasswordByTalk(true)
|
2016-01-27 22:32:04 +03:00
|
|
|
|
->setExpirationDate($date)
|
2018-11-01 20:18:06 +03:00
|
|
|
|
->setNote('note')
|
|
|
|
|
->setLabel('label')
|
|
|
|
|
->setHideDownload(true)
|
2016-01-27 22:32:04 +03:00
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_ALL)
|
2016-01-28 15:17:16 +03:00
|
|
|
|
->setNode($folder);
|
2016-01-27 22:32:04 +03:00
|
|
|
|
|
|
|
|
|
$this->shareManager->method('getShareById')->with('ocinternal:42')->willReturn($share);
|
|
|
|
|
$this->shareManager->method('shareApiLinkAllowPublicUpload')->willReturn(true);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->expects($this->once())->method('updateShare')->with(
|
2016-01-28 15:17:16 +03:00
|
|
|
|
$this->callback(function (\OCP\Share\IShare $share) use ($date) {
|
2016-06-23 16:43:21 +03:00
|
|
|
|
return $share->getPermissions() === (\OCP\Constants::PERMISSION_READ | \OCP\Constants::PERMISSION_CREATE | \OCP\Constants::PERMISSION_UPDATE | \OCP\Constants::PERMISSION_DELETE) &&
|
2016-01-27 22:32:04 +03:00
|
|
|
|
$share->getPassword() === 'password' &&
|
2018-10-15 13:27:56 +03:00
|
|
|
|
$share->getSendPasswordByTalk() === true &&
|
2018-11-01 20:18:06 +03:00
|
|
|
|
$share->getExpirationDate() === $date &&
|
|
|
|
|
$share->getNote() === 'note' &&
|
|
|
|
|
$share->getLabel() === 'label' &&
|
|
|
|
|
$share->getHideDownload() === true;
|
2016-01-27 22:32:04 +03:00
|
|
|
|
})
|
2020-03-26 00:21:27 +03:00
|
|
|
|
)->willReturnArgument(0);
|
2016-01-27 22:32:04 +03:00
|
|
|
|
|
2016-02-29 21:12:19 +03:00
|
|
|
|
$this->shareManager->method('getSharedWith')->willReturn([]);
|
|
|
|
|
|
2019-06-27 16:27:21 +03:00
|
|
|
|
$userFolder = $this->createMock(Folder::class);
|
|
|
|
|
$this->rootFolder->method('getUserFolder')
|
|
|
|
|
->with($this->currentUser)
|
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
|
|
|
|
$userFolder->method('getById')
|
|
|
|
|
->with(42)
|
|
|
|
|
->willReturn([$folder]);
|
|
|
|
|
|
|
|
|
|
$mountPoint = $this->createMock(IMountPoint::class);
|
|
|
|
|
$folder->method('getMountPoint')
|
|
|
|
|
->willReturn($mountPoint);
|
|
|
|
|
$mountPoint->method('getStorageRootId')
|
|
|
|
|
->willReturn(42);
|
|
|
|
|
|
2018-04-24 09:07:25 +03:00
|
|
|
|
$expected = new DataResponse([]);
|
2018-11-01 20:18:06 +03:00
|
|
|
|
$result = $ocs->updateShare(42, 7, null, null, null, null, null, null, null);
|
2016-01-27 22:32:04 +03:00
|
|
|
|
|
2016-07-20 15:24:22 +03:00
|
|
|
|
$this->assertInstanceOf(get_class($expected), $result);
|
2016-01-27 22:32:04 +03:00
|
|
|
|
$this->assertEquals($expected->getData(), $result->getData());
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-16 22:21:50 +03:00
|
|
|
|
public function testUpdateLinkSharePermissionsShare() {
|
2016-01-27 22:32:04 +03:00
|
|
|
|
$ocs = $this->mockFormatShare();
|
|
|
|
|
|
|
|
|
|
$date = new \DateTime('2000-01-01');
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$folder = $this->getMockBuilder(Folder::class)->getMock();
|
2019-06-27 16:27:21 +03:00
|
|
|
|
$folder->method('getId')
|
|
|
|
|
->willReturn(42);
|
2016-01-27 22:32:04 +03:00
|
|
|
|
|
|
|
|
|
$share = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$share->setPermissions(\OCP\Constants::PERMISSION_ALL)
|
2016-10-21 21:25:07 +03:00
|
|
|
|
->setSharedBy($this->currentUser)
|
2016-01-27 22:32:04 +03:00
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_LINK)
|
|
|
|
|
->setPassword('password')
|
2018-10-15 13:27:56 +03:00
|
|
|
|
->setSendPasswordByTalk(true)
|
2016-01-27 22:32:04 +03:00
|
|
|
|
->setExpirationDate($date)
|
2018-11-01 20:18:06 +03:00
|
|
|
|
->setNote('note')
|
|
|
|
|
->setLabel('label')
|
|
|
|
|
->setHideDownload(true)
|
2017-08-16 22:21:50 +03:00
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
2016-01-28 15:17:16 +03:00
|
|
|
|
->setNode($folder);
|
2016-01-27 22:32:04 +03:00
|
|
|
|
|
|
|
|
|
$this->shareManager->method('getShareById')->with('ocinternal:42')->willReturn($share);
|
|
|
|
|
$this->shareManager->method('shareApiLinkAllowPublicUpload')->willReturn(true);
|
|
|
|
|
|
2017-08-16 22:21:50 +03:00
|
|
|
|
$this->shareManager->expects($this->once())->method('updateShare')->with(
|
|
|
|
|
$this->callback(function (\OCP\Share\IShare $share) use ($date) {
|
|
|
|
|
return $share->getPermissions() === (\OCP\Constants::PERMISSION_READ | \OCP\Constants::PERMISSION_CREATE | \OCP\Constants::PERMISSION_UPDATE | \OCP\Constants::PERMISSION_DELETE) &&
|
|
|
|
|
$share->getPassword() === 'password' &&
|
2018-10-15 13:27:56 +03:00
|
|
|
|
$share->getSendPasswordByTalk() === true &&
|
2018-11-01 20:18:06 +03:00
|
|
|
|
$share->getExpirationDate() === $date &&
|
|
|
|
|
$share->getNote() === 'note' &&
|
|
|
|
|
$share->getLabel() === 'label' &&
|
|
|
|
|
$share->getHideDownload() === true;
|
2017-08-16 22:21:50 +03:00
|
|
|
|
})
|
2020-03-26 00:21:27 +03:00
|
|
|
|
)->willReturnArgument(0);
|
2017-08-16 22:21:50 +03:00
|
|
|
|
|
2019-06-27 16:27:21 +03:00
|
|
|
|
$userFolder = $this->createMock(Folder::class);
|
|
|
|
|
$this->rootFolder->method('getUserFolder')
|
|
|
|
|
->with($this->currentUser)
|
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
|
|
|
|
$userFolder->method('getById')
|
|
|
|
|
->with(42)
|
|
|
|
|
->willReturn([$folder]);
|
|
|
|
|
|
|
|
|
|
$mountPoint = $this->createMock(IMountPoint::class);
|
|
|
|
|
$folder->method('getMountPoint')
|
|
|
|
|
->willReturn($mountPoint);
|
|
|
|
|
$mountPoint->method('getStorageRootId')
|
|
|
|
|
->willReturn(42);
|
|
|
|
|
|
2017-08-16 22:21:50 +03:00
|
|
|
|
$this->shareManager->method('getSharedWith')->willReturn([]);
|
|
|
|
|
|
2018-04-24 09:07:25 +03:00
|
|
|
|
$expected = new DataResponse([]);
|
2018-11-01 20:18:06 +03:00
|
|
|
|
$result = $ocs->updateShare(42, 31, null, null, null, null, null, null, null);
|
2017-08-16 22:21:50 +03:00
|
|
|
|
|
|
|
|
|
$this->assertInstanceOf(get_class($expected), $result);
|
|
|
|
|
$this->assertEquals($expected->getData(), $result->getData());
|
2016-01-27 22:32:04 +03:00
|
|
|
|
}
|
|
|
|
|
|
2016-01-27 18:46:48 +03:00
|
|
|
|
public function testUpdateOtherPermissions() {
|
|
|
|
|
$ocs = $this->mockFormatShare();
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$file = $this->getMockBuilder(File::class)->getMock();
|
2019-06-27 16:27:21 +03:00
|
|
|
|
$file->method('getId')
|
|
|
|
|
->willReturn(42);
|
2016-01-27 18:46:48 +03:00
|
|
|
|
|
|
|
|
|
$share = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$share->setPermissions(\OCP\Constants::PERMISSION_ALL)
|
2016-10-21 21:25:07 +03:00
|
|
|
|
->setSharedBy($this->currentUser)
|
2016-01-27 18:46:48 +03:00
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_USER)
|
2016-01-28 15:17:16 +03:00
|
|
|
|
->setNode($file);
|
2016-01-27 18:46:48 +03:00
|
|
|
|
|
|
|
|
|
$this->shareManager->method('getShareById')->with('ocinternal:42')->willReturn($share);
|
|
|
|
|
$this->shareManager->method('shareApiLinkAllowPublicUpload')->willReturn(true);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->expects($this->once())->method('updateShare')->with(
|
2016-01-28 15:17:16 +03:00
|
|
|
|
$this->callback(function (\OCP\Share\IShare $share) {
|
2016-01-27 18:46:48 +03:00
|
|
|
|
return $share->getPermissions() === \OCP\Constants::PERMISSION_ALL;
|
|
|
|
|
})
|
2020-03-26 00:21:27 +03:00
|
|
|
|
)->willReturnArgument(0);
|
2016-01-27 18:46:48 +03:00
|
|
|
|
|
2016-02-29 21:12:19 +03:00
|
|
|
|
$this->shareManager->method('getSharedWith')->willReturn([]);
|
|
|
|
|
|
2019-06-27 16:27:21 +03:00
|
|
|
|
$userFolder = $this->createMock(Folder::class);
|
|
|
|
|
$this->rootFolder->method('getUserFolder')
|
|
|
|
|
->with($this->currentUser)
|
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
|
|
|
|
$userFolder->method('getById')
|
|
|
|
|
->with(42)
|
|
|
|
|
->willReturn([$file]);
|
|
|
|
|
|
|
|
|
|
$mountPoint = $this->createMock(IMountPoint::class);
|
|
|
|
|
$file->method('getMountPoint')
|
|
|
|
|
->willReturn($mountPoint);
|
|
|
|
|
$mountPoint->method('getStorageRootId')
|
|
|
|
|
->willReturn(42);
|
|
|
|
|
|
2018-04-24 09:07:25 +03:00
|
|
|
|
$expected = new DataResponse([]);
|
2018-07-10 14:01:31 +03:00
|
|
|
|
$result = $ocs->updateShare(42, 31, null, null, null, null);
|
2016-01-27 18:46:48 +03:00
|
|
|
|
|
2016-07-20 15:24:22 +03:00
|
|
|
|
$this->assertInstanceOf(get_class($expected), $result);
|
2016-01-27 18:46:48 +03:00
|
|
|
|
$this->assertEquals($expected->getData(), $result->getData());
|
|
|
|
|
}
|
2016-02-17 15:50:08 +03:00
|
|
|
|
|
2016-08-29 12:21:44 +03:00
|
|
|
|
public function testUpdateShareCannotIncreasePermissions() {
|
|
|
|
|
$ocs = $this->mockFormatShare();
|
|
|
|
|
|
2016-09-13 10:26:00 +03:00
|
|
|
|
$folder = $this->createMock(Folder::class);
|
2019-06-27 16:27:21 +03:00
|
|
|
|
$folder->method('getId')
|
|
|
|
|
->willReturn(42);
|
2016-08-29 12:21:44 +03:00
|
|
|
|
|
|
|
|
|
$share = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$share
|
|
|
|
|
->setId(42)
|
2016-10-21 21:25:07 +03:00
|
|
|
|
->setSharedBy($this->currentUser)
|
2016-08-29 12:21:44 +03:00
|
|
|
|
->setShareOwner('anotheruser')
|
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_GROUP)
|
|
|
|
|
->setSharedWith('group1')
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
|
->setNode($folder);
|
|
|
|
|
|
|
|
|
|
// note: updateShare will modify the received instance but getSharedWith will reread from the database,
|
|
|
|
|
// so their values will be different
|
|
|
|
|
$incomingShare = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$incomingShare
|
|
|
|
|
->setId(42)
|
2016-10-21 21:25:07 +03:00
|
|
|
|
->setSharedBy($this->currentUser)
|
2016-08-29 12:21:44 +03:00
|
|
|
|
->setShareOwner('anotheruser')
|
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_GROUP)
|
|
|
|
|
->setSharedWith('group1')
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
|
->setNode($folder);
|
|
|
|
|
|
|
|
|
|
$this->request
|
|
|
|
|
->method('getParam')
|
2020-03-26 00:21:27 +03:00
|
|
|
|
->willReturnMap([
|
2016-08-29 12:21:44 +03:00
|
|
|
|
['permissions', null, '31'],
|
2020-03-26 00:21:27 +03:00
|
|
|
|
]);
|
2016-08-29 12:21:44 +03:00
|
|
|
|
|
|
|
|
|
$this->shareManager->method('getShareById')->with('ocinternal:42')->willReturn($share);
|
|
|
|
|
|
2016-10-21 21:25:07 +03:00
|
|
|
|
$this->shareManager->expects($this->any())
|
2016-08-29 12:21:44 +03:00
|
|
|
|
->method('getSharedWith')
|
2020-03-26 00:21:27 +03:00
|
|
|
|
->willReturnMap([
|
2016-08-29 12:21:44 +03:00
|
|
|
|
['currentUser', \OCP\Share::SHARE_TYPE_USER, $share->getNode(), -1, 0, []],
|
2018-06-29 14:22:26 +03:00
|
|
|
|
['currentUser', \OCP\Share::SHARE_TYPE_GROUP, $share->getNode(), -1, 0, [$incomingShare]],
|
|
|
|
|
['currentUser', \OCP\Share::SHARE_TYPE_ROOM, $share->getNode(), -1, 0, []]
|
2020-03-26 00:21:27 +03:00
|
|
|
|
]);
|
2016-08-29 12:21:44 +03:00
|
|
|
|
|
2019-06-27 16:27:21 +03:00
|
|
|
|
$userFolder = $this->createMock(Folder::class);
|
|
|
|
|
$this->rootFolder->method('getUserFolder')
|
|
|
|
|
->with($this->currentUser)
|
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
|
|
|
|
$userFolder->method('getById')
|
|
|
|
|
->with(42)
|
|
|
|
|
->willReturn([$folder]);
|
|
|
|
|
|
|
|
|
|
$mountPoint = $this->createMock(IMountPoint::class);
|
|
|
|
|
$folder->method('getMountPoint')
|
|
|
|
|
->willReturn($mountPoint);
|
|
|
|
|
$mountPoint->method('getStorageRootId')
|
|
|
|
|
->willReturn(42);
|
|
|
|
|
|
2019-07-03 17:32:45 +03:00
|
|
|
|
$this->shareManager->expects($this->once())
|
|
|
|
|
->method('updateShare')
|
|
|
|
|
->with($share)
|
|
|
|
|
->willThrowException(new GenericShareException('Can’t increase permissions of path/file', 'Can’t increase permissions of path/file', 404));
|
2016-08-29 12:21:44 +03:00
|
|
|
|
|
2016-09-13 10:26:00 +03:00
|
|
|
|
try {
|
|
|
|
|
$ocs->updateShare(42, 31);
|
|
|
|
|
$this->fail();
|
2019-07-03 17:32:45 +03:00
|
|
|
|
} catch (OCSException $e) {
|
|
|
|
|
$this->assertEquals('Can’t increase permissions of path/file', $e->getMessage());
|
2016-09-13 10:26:00 +03:00
|
|
|
|
}
|
2016-08-29 12:21:44 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testUpdateShareCanIncreasePermissionsIfOwner() {
|
|
|
|
|
$ocs = $this->mockFormatShare();
|
|
|
|
|
|
2016-09-13 10:26:00 +03:00
|
|
|
|
$folder = $this->createMock(Folder::class);
|
2019-06-27 16:27:21 +03:00
|
|
|
|
$folder->method('getId')
|
|
|
|
|
->willReturn(42);
|
2016-08-29 12:21:44 +03:00
|
|
|
|
|
|
|
|
|
$share = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$share
|
|
|
|
|
->setId(42)
|
2016-10-21 21:25:07 +03:00
|
|
|
|
->setSharedBy($this->currentUser)
|
|
|
|
|
->setShareOwner($this->currentUser)
|
2016-08-29 12:21:44 +03:00
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_GROUP)
|
|
|
|
|
->setSharedWith('group1')
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
|
->setNode($folder);
|
|
|
|
|
|
|
|
|
|
// note: updateShare will modify the received instance but getSharedWith will reread from the database,
|
|
|
|
|
// so their values will be different
|
|
|
|
|
$incomingShare = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$incomingShare
|
|
|
|
|
->setId(42)
|
2016-10-21 21:25:07 +03:00
|
|
|
|
->setSharedBy($this->currentUser)
|
|
|
|
|
->setShareOwner($this->currentUser)
|
2016-08-29 12:21:44 +03:00
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_GROUP)
|
|
|
|
|
->setSharedWith('group1')
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
|
->setNode($folder);
|
|
|
|
|
|
|
|
|
|
$this->shareManager->method('getShareById')->with('ocinternal:42')->willReturn($share);
|
|
|
|
|
|
2016-10-21 21:25:07 +03:00
|
|
|
|
$this->shareManager->expects($this->any())
|
2016-08-29 12:21:44 +03:00
|
|
|
|
->method('getSharedWith')
|
2020-03-26 00:21:27 +03:00
|
|
|
|
->willReturnMap([
|
2016-08-29 12:21:44 +03:00
|
|
|
|
['currentUser', \OCP\Share::SHARE_TYPE_USER, $share->getNode(), -1, 0, []],
|
|
|
|
|
['currentUser', \OCP\Share::SHARE_TYPE_GROUP, $share->getNode(), -1, 0, [$incomingShare]]
|
2020-03-26 00:21:27 +03:00
|
|
|
|
]);
|
2016-08-29 12:21:44 +03:00
|
|
|
|
|
|
|
|
|
$this->shareManager->expects($this->once())
|
|
|
|
|
->method('updateShare')
|
|
|
|
|
->with($share)
|
|
|
|
|
->willReturn($share);
|
|
|
|
|
|
2019-06-27 16:27:21 +03:00
|
|
|
|
$userFolder = $this->createMock(Folder::class);
|
|
|
|
|
$this->rootFolder->method('getUserFolder')
|
|
|
|
|
->with($this->currentUser)
|
|
|
|
|
->willReturn($userFolder);
|
|
|
|
|
|
|
|
|
|
$userFolder->method('getById')
|
|
|
|
|
->with(42)
|
|
|
|
|
->willReturn([$folder]);
|
|
|
|
|
|
|
|
|
|
$mountPoint = $this->createMock(IMountPoint::class);
|
|
|
|
|
$folder->method('getMountPoint')
|
|
|
|
|
->willReturn($mountPoint);
|
|
|
|
|
$mountPoint->method('getStorageRootId')
|
|
|
|
|
->willReturn(42);
|
|
|
|
|
|
2016-09-13 10:26:00 +03:00
|
|
|
|
$result = $ocs->updateShare(42, 31);
|
|
|
|
|
$this->assertInstanceOf(DataResponse::class, $result);
|
2016-08-29 12:21:44 +03:00
|
|
|
|
}
|
2016-09-13 10:26:00 +03:00
|
|
|
|
|
2016-02-17 15:50:08 +03:00
|
|
|
|
public function dataFormatShare() {
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$file = $this->getMockBuilder(File::class)->getMock();
|
|
|
|
|
$folder = $this->getMockBuilder(Folder::class)->getMock();
|
|
|
|
|
$parent = $this->getMockBuilder(Folder::class)->getMock();
|
2016-02-17 15:50:08 +03:00
|
|
|
|
|
2016-03-09 22:20:37 +03:00
|
|
|
|
$file->method('getMimeType')->willReturn('myMimeType');
|
|
|
|
|
$folder->method('getMimeType')->willReturn('myFolderMimeType');
|
|
|
|
|
|
2016-02-17 15:50:08 +03:00
|
|
|
|
$file->method('getPath')->willReturn('file');
|
|
|
|
|
$folder->method('getPath')->willReturn('folder');
|
|
|
|
|
|
|
|
|
|
$parent->method('getId')->willReturn(1);
|
|
|
|
|
$folder->method('getId')->willReturn(2);
|
|
|
|
|
$file->method('getId')->willReturn(3);
|
|
|
|
|
|
|
|
|
|
$file->method('getParent')->willReturn($parent);
|
|
|
|
|
$folder->method('getParent')->willReturn($parent);
|
|
|
|
|
|
2016-07-15 13:22:53 +03:00
|
|
|
|
$cache = $this->getMockBuilder('OCP\Files\Cache\ICache')->getMock();
|
2016-02-17 15:50:08 +03:00
|
|
|
|
$cache->method('getNumericStorageId')->willReturn(100);
|
2019-11-22 15:23:56 +03:00
|
|
|
|
$storage = $this->createMock(Storage::class);
|
2016-02-17 15:50:08 +03:00
|
|
|
|
$storage->method('getId')->willReturn('storageId');
|
|
|
|
|
$storage->method('getCache')->willReturn($cache);
|
|
|
|
|
|
|
|
|
|
$file->method('getStorage')->willReturn($storage);
|
|
|
|
|
$folder->method('getStorage')->willReturn($storage);
|
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$owner = $this->getMockBuilder(IUser::class)->getMock();
|
2016-02-17 15:50:08 +03:00
|
|
|
|
$owner->method('getDisplayName')->willReturn('ownerDN');
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$initiator = $this->getMockBuilder(IUser::class)->getMock();
|
2016-02-17 15:50:08 +03:00
|
|
|
|
$initiator->method('getDisplayName')->willReturn('initiatorDN');
|
2017-10-24 16:26:53 +03:00
|
|
|
|
$recipient = $this->getMockBuilder(IUser::class)->getMock();
|
2016-02-17 15:50:08 +03:00
|
|
|
|
$recipient->method('getDisplayName')->willReturn('recipientDN');
|
|
|
|
|
|
|
|
|
|
$result = [];
|
|
|
|
|
|
|
|
|
|
$share = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$share->setShareType(\OCP\Share::SHARE_TYPE_USER)
|
|
|
|
|
->setSharedWith('recipient')
|
|
|
|
|
->setSharedBy('initiator')
|
|
|
|
|
->setShareOwner('owner')
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
|
->setNode($file)
|
|
|
|
|
->setShareTime(new \DateTime('2000-01-01T00:01:02'))
|
|
|
|
|
->setTarget('myTarget')
|
2018-07-13 19:39:44 +03:00
|
|
|
|
->setNote('personal note')
|
2016-02-17 15:50:08 +03:00
|
|
|
|
->setId(42);
|
|
|
|
|
|
2018-07-19 10:26:08 +03:00
|
|
|
|
// User backend down
|
2016-02-17 15:50:08 +03:00
|
|
|
|
$result[] = [
|
|
|
|
|
[
|
|
|
|
|
'id' => 42,
|
|
|
|
|
'share_type' => \OCP\Share::SHARE_TYPE_USER,
|
|
|
|
|
'uid_owner' => 'initiator',
|
|
|
|
|
'displayname_owner' => 'initiator',
|
|
|
|
|
'permissions' => 1,
|
|
|
|
|
'stime' => 946684862,
|
|
|
|
|
'parent' => null,
|
|
|
|
|
'expiration' => null,
|
|
|
|
|
'token' => null,
|
|
|
|
|
'uid_file_owner' => 'owner',
|
|
|
|
|
'displayname_file_owner' => 'owner',
|
|
|
|
|
'path' => 'file',
|
|
|
|
|
'item_type' => 'file',
|
|
|
|
|
'storage_id' => 'storageId',
|
|
|
|
|
'storage' => 100,
|
|
|
|
|
'item_source' => 3,
|
|
|
|
|
'file_source' => 3,
|
|
|
|
|
'file_parent' => 1,
|
|
|
|
|
'file_target' => 'myTarget',
|
|
|
|
|
'share_with' => 'recipient',
|
|
|
|
|
'share_with_displayname' => 'recipient',
|
2018-07-13 19:39:44 +03:00
|
|
|
|
'note' => 'personal note',
|
2018-10-31 22:10:05 +03:00
|
|
|
|
'label' => null,
|
2016-02-17 15:50:08 +03:00
|
|
|
|
'mail_send' => 0,
|
2016-03-09 22:20:37 +03:00
|
|
|
|
'mimetype' => 'myMimeType',
|
2018-10-18 13:38:07 +03:00
|
|
|
|
'hide_download' => 0,
|
2019-10-24 16:51:56 +03:00
|
|
|
|
'can_edit' => false,
|
|
|
|
|
'can_delete' => false,
|
2016-02-17 15:50:08 +03:00
|
|
|
|
], $share, [], false
|
|
|
|
|
];
|
2018-07-19 10:26:08 +03:00
|
|
|
|
// User backend up
|
2016-02-17 15:50:08 +03:00
|
|
|
|
$result[] = [
|
|
|
|
|
[
|
|
|
|
|
'id' => 42,
|
|
|
|
|
'share_type' => \OCP\Share::SHARE_TYPE_USER,
|
|
|
|
|
'uid_owner' => 'initiator',
|
|
|
|
|
'displayname_owner' => 'initiatorDN',
|
|
|
|
|
'permissions' => 1,
|
|
|
|
|
'stime' => 946684862,
|
|
|
|
|
'parent' => null,
|
|
|
|
|
'expiration' => null,
|
|
|
|
|
'token' => null,
|
|
|
|
|
'uid_file_owner' => 'owner',
|
|
|
|
|
'displayname_file_owner' => 'ownerDN',
|
2018-07-13 19:39:44 +03:00
|
|
|
|
'note' => 'personal note',
|
2018-10-31 22:10:05 +03:00
|
|
|
|
'label' => null,
|
2016-02-17 15:50:08 +03:00
|
|
|
|
'path' => 'file',
|
|
|
|
|
'item_type' => 'file',
|
|
|
|
|
'storage_id' => 'storageId',
|
|
|
|
|
'storage' => 100,
|
|
|
|
|
'item_source' => 3,
|
|
|
|
|
'file_source' => 3,
|
|
|
|
|
'file_parent' => 1,
|
|
|
|
|
'file_target' => 'myTarget',
|
|
|
|
|
'share_with' => 'recipient',
|
|
|
|
|
'share_with_displayname' => 'recipientDN',
|
|
|
|
|
'mail_send' => 0,
|
2016-03-09 22:20:37 +03:00
|
|
|
|
'mimetype' => 'myMimeType',
|
2018-10-18 13:38:07 +03:00
|
|
|
|
'hide_download' => 0,
|
2019-10-24 16:51:56 +03:00
|
|
|
|
'can_edit' => false,
|
|
|
|
|
'can_delete' => false,
|
2016-02-17 15:50:08 +03:00
|
|
|
|
], $share, [
|
|
|
|
|
['owner', $owner],
|
|
|
|
|
['initiator', $initiator],
|
|
|
|
|
['recipient', $recipient],
|
|
|
|
|
], false
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$share = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$share->setShareType(\OCP\Share::SHARE_TYPE_USER)
|
|
|
|
|
->setSharedWith('recipient')
|
|
|
|
|
->setSharedBy('initiator')
|
|
|
|
|
->setShareOwner('owner')
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
|
->setNode($file)
|
|
|
|
|
->setShareTime(new \DateTime('2000-01-01T00:01:02'))
|
|
|
|
|
->setTarget('myTarget')
|
2018-07-13 19:39:44 +03:00
|
|
|
|
->setNote('personal note')
|
2016-02-17 15:50:08 +03:00
|
|
|
|
->setId(42);
|
2018-07-19 10:26:08 +03:00
|
|
|
|
// User backend down
|
2016-02-17 15:50:08 +03:00
|
|
|
|
$result[] = [
|
|
|
|
|
[
|
|
|
|
|
'id' => 42,
|
|
|
|
|
'share_type' => \OCP\Share::SHARE_TYPE_USER,
|
|
|
|
|
'uid_owner' => 'initiator',
|
|
|
|
|
'displayname_owner' => 'initiator',
|
|
|
|
|
'permissions' => 1,
|
|
|
|
|
'stime' => 946684862,
|
|
|
|
|
'parent' => null,
|
|
|
|
|
'expiration' => null,
|
|
|
|
|
'token' => null,
|
|
|
|
|
'uid_file_owner' => 'owner',
|
|
|
|
|
'displayname_file_owner' => 'owner',
|
2018-07-13 19:39:44 +03:00
|
|
|
|
'note' => 'personal note',
|
2018-10-31 22:10:05 +03:00
|
|
|
|
'label' => null,
|
2016-02-17 15:50:08 +03:00
|
|
|
|
'path' => 'file',
|
|
|
|
|
'item_type' => 'file',
|
|
|
|
|
'storage_id' => 'storageId',
|
|
|
|
|
'storage' => 100,
|
|
|
|
|
'item_source' => 3,
|
|
|
|
|
'file_source' => 3,
|
|
|
|
|
'file_parent' => 1,
|
|
|
|
|
'file_target' => 'myTarget',
|
|
|
|
|
'share_with' => 'recipient',
|
|
|
|
|
'share_with_displayname' => 'recipient',
|
|
|
|
|
'mail_send' => 0,
|
2016-03-09 22:20:37 +03:00
|
|
|
|
'mimetype' => 'myMimeType',
|
2018-10-18 13:38:07 +03:00
|
|
|
|
'hide_download' => 0,
|
2019-10-24 16:51:56 +03:00
|
|
|
|
'can_edit' => false,
|
|
|
|
|
'can_delete' => false,
|
|
|
|
|
], $share, [], false
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$share = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$share->setShareType(\OCP\Share::SHARE_TYPE_USER)
|
|
|
|
|
->setSharedWith('recipient')
|
|
|
|
|
->setSharedBy('initiator')
|
|
|
|
|
->setShareOwner('currentUser')
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
|
->setNode($file)
|
|
|
|
|
->setShareTime(new \DateTime('2000-01-01T00:01:02'))
|
|
|
|
|
->setTarget('myTarget')
|
|
|
|
|
->setNote('personal note')
|
|
|
|
|
->setId(42);
|
|
|
|
|
// User backend down
|
|
|
|
|
$result[] = [
|
|
|
|
|
[
|
|
|
|
|
'id' => 42,
|
|
|
|
|
'share_type' => \OCP\Share::SHARE_TYPE_USER,
|
|
|
|
|
'uid_owner' => 'initiator',
|
|
|
|
|
'displayname_owner' => 'initiator',
|
|
|
|
|
'permissions' => 1,
|
|
|
|
|
'stime' => 946684862,
|
|
|
|
|
'parent' => null,
|
|
|
|
|
'expiration' => null,
|
|
|
|
|
'token' => null,
|
|
|
|
|
'uid_file_owner' => 'currentUser',
|
|
|
|
|
'displayname_file_owner' => 'currentUser',
|
|
|
|
|
'note' => 'personal note',
|
|
|
|
|
'label' => null,
|
|
|
|
|
'path' => 'file',
|
|
|
|
|
'item_type' => 'file',
|
|
|
|
|
'storage_id' => 'storageId',
|
|
|
|
|
'storage' => 100,
|
|
|
|
|
'item_source' => 3,
|
|
|
|
|
'file_source' => 3,
|
|
|
|
|
'file_parent' => 1,
|
|
|
|
|
'file_target' => 'myTarget',
|
|
|
|
|
'share_with' => 'recipient',
|
|
|
|
|
'share_with_displayname' => 'recipient',
|
|
|
|
|
'mail_send' => 0,
|
|
|
|
|
'mimetype' => 'myMimeType',
|
|
|
|
|
'hide_download' => 0,
|
|
|
|
|
'can_edit' => true,
|
|
|
|
|
'can_delete' => true,
|
2016-02-17 15:50:08 +03:00
|
|
|
|
], $share, [], false
|
|
|
|
|
];
|
|
|
|
|
|
2016-11-30 22:56:10 +03:00
|
|
|
|
// with existing group
|
2018-07-19 10:26:08 +03:00
|
|
|
|
|
2016-02-17 15:50:08 +03:00
|
|
|
|
$share = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$share->setShareType(\OCP\Share::SHARE_TYPE_GROUP)
|
2016-11-30 22:56:10 +03:00
|
|
|
|
->setSharedWith('recipientGroup')
|
2016-02-17 15:50:08 +03:00
|
|
|
|
->setSharedBy('initiator')
|
|
|
|
|
->setShareOwner('owner')
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
|
->setNode($file)
|
|
|
|
|
->setShareTime(new \DateTime('2000-01-01T00:01:02'))
|
|
|
|
|
->setTarget('myTarget')
|
2018-07-13 19:39:44 +03:00
|
|
|
|
->setNote('personal note')
|
2016-02-17 15:50:08 +03:00
|
|
|
|
->setId(42);
|
|
|
|
|
|
|
|
|
|
$result[] = [
|
|
|
|
|
[
|
|
|
|
|
'id' => 42,
|
|
|
|
|
'share_type' => \OCP\Share::SHARE_TYPE_GROUP,
|
|
|
|
|
'uid_owner' => 'initiator',
|
|
|
|
|
'displayname_owner' => 'initiator',
|
|
|
|
|
'permissions' => 1,
|
|
|
|
|
'stime' => 946684862,
|
|
|
|
|
'parent' => null,
|
|
|
|
|
'expiration' => null,
|
|
|
|
|
'token' => null,
|
|
|
|
|
'uid_file_owner' => 'owner',
|
|
|
|
|
'displayname_file_owner' => 'owner',
|
2018-07-13 19:39:44 +03:00
|
|
|
|
'note' => 'personal note',
|
2018-10-31 22:10:05 +03:00
|
|
|
|
'label' => null,
|
2016-02-17 15:50:08 +03:00
|
|
|
|
'path' => 'file',
|
|
|
|
|
'item_type' => 'file',
|
|
|
|
|
'storage_id' => 'storageId',
|
|
|
|
|
'storage' => 100,
|
|
|
|
|
'item_source' => 3,
|
|
|
|
|
'file_source' => 3,
|
|
|
|
|
'file_parent' => 1,
|
|
|
|
|
'file_target' => 'myTarget',
|
2016-11-30 22:56:10 +03:00
|
|
|
|
'share_with' => 'recipientGroup',
|
|
|
|
|
'share_with_displayname' => 'recipientGroupDisplayName',
|
|
|
|
|
'mail_send' => 0,
|
|
|
|
|
'mimetype' => 'myMimeType',
|
2018-10-18 13:38:07 +03:00
|
|
|
|
'hide_download' => 0,
|
2019-10-24 16:51:56 +03:00
|
|
|
|
'can_edit' => false,
|
|
|
|
|
'can_delete' => false,
|
2016-11-30 22:56:10 +03:00
|
|
|
|
], $share, [], false
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
// with unknown group / no group backend
|
|
|
|
|
$share = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$share->setShareType(Share::SHARE_TYPE_GROUP)
|
|
|
|
|
->setSharedWith('recipientGroup2')
|
|
|
|
|
->setSharedBy('initiator')
|
|
|
|
|
->setShareOwner('owner')
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
|
->setNode($file)
|
|
|
|
|
->setShareTime(new \DateTime('2000-01-01T00:01:02'))
|
|
|
|
|
->setTarget('myTarget')
|
2018-07-13 19:39:44 +03:00
|
|
|
|
->setNote('personal note')
|
2016-11-30 22:56:10 +03:00
|
|
|
|
->setId(42);
|
|
|
|
|
$result[] = [
|
|
|
|
|
[
|
|
|
|
|
'id' => 42,
|
|
|
|
|
'share_type' => Share::SHARE_TYPE_GROUP,
|
|
|
|
|
'uid_owner' => 'initiator',
|
|
|
|
|
'displayname_owner' => 'initiator',
|
|
|
|
|
'permissions' => 1,
|
|
|
|
|
'stime' => 946684862,
|
|
|
|
|
'parent' => null,
|
|
|
|
|
'expiration' => null,
|
|
|
|
|
'token' => null,
|
|
|
|
|
'uid_file_owner' => 'owner',
|
|
|
|
|
'displayname_file_owner' => 'owner',
|
2018-07-13 19:39:44 +03:00
|
|
|
|
'note' => 'personal note',
|
2018-10-31 22:10:05 +03:00
|
|
|
|
'label' => null,
|
2016-11-30 22:56:10 +03:00
|
|
|
|
'path' => 'file',
|
|
|
|
|
'item_type' => 'file',
|
|
|
|
|
'storage_id' => 'storageId',
|
|
|
|
|
'storage' => 100,
|
|
|
|
|
'item_source' => 3,
|
|
|
|
|
'file_source' => 3,
|
|
|
|
|
'file_parent' => 1,
|
|
|
|
|
'file_target' => 'myTarget',
|
|
|
|
|
'share_with' => 'recipientGroup2',
|
|
|
|
|
'share_with_displayname' => 'recipientGroup2',
|
2016-02-17 15:50:08 +03:00
|
|
|
|
'mail_send' => 0,
|
2016-03-09 22:20:37 +03:00
|
|
|
|
'mimetype' => 'myMimeType',
|
2018-10-18 13:38:07 +03:00
|
|
|
|
'hide_download' => 0,
|
2019-10-24 16:51:56 +03:00
|
|
|
|
'can_edit' => false,
|
|
|
|
|
'can_delete' => false,
|
2016-02-17 15:50:08 +03:00
|
|
|
|
], $share, [], false
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$share = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$share->setShareType(\OCP\Share::SHARE_TYPE_LINK)
|
|
|
|
|
->setSharedBy('initiator')
|
|
|
|
|
->setShareOwner('owner')
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
|
->setNode($file)
|
|
|
|
|
->setShareTime(new \DateTime('2000-01-01T00:01:02'))
|
|
|
|
|
->setTarget('myTarget')
|
|
|
|
|
->setPassword('mypassword')
|
|
|
|
|
->setExpirationDate(new \DateTime('2001-01-02T00:00:00'))
|
|
|
|
|
->setToken('myToken')
|
2018-07-13 19:39:44 +03:00
|
|
|
|
->setNote('personal note')
|
2018-10-31 22:10:05 +03:00
|
|
|
|
->setLabel('new link share')
|
2016-02-17 15:50:08 +03:00
|
|
|
|
->setId(42);
|
|
|
|
|
|
|
|
|
|
$result[] = [
|
|
|
|
|
[
|
|
|
|
|
'id' => 42,
|
|
|
|
|
'share_type' => \OCP\Share::SHARE_TYPE_LINK,
|
|
|
|
|
'uid_owner' => 'initiator',
|
|
|
|
|
'displayname_owner' => 'initiator',
|
|
|
|
|
'permissions' => 1,
|
|
|
|
|
'stime' => 946684862,
|
|
|
|
|
'parent' => null,
|
|
|
|
|
'expiration' => '2001-01-02 00:00:00',
|
|
|
|
|
'token' => 'myToken',
|
|
|
|
|
'uid_file_owner' => 'owner',
|
|
|
|
|
'displayname_file_owner' => 'owner',
|
2018-07-13 19:39:44 +03:00
|
|
|
|
'note' => 'personal note',
|
2018-10-31 22:10:05 +03:00
|
|
|
|
'label' => 'new link share',
|
2016-02-17 15:50:08 +03:00
|
|
|
|
'path' => 'file',
|
|
|
|
|
'item_type' => 'file',
|
|
|
|
|
'storage_id' => 'storageId',
|
|
|
|
|
'storage' => 100,
|
|
|
|
|
'item_source' => 3,
|
|
|
|
|
'file_source' => 3,
|
|
|
|
|
'file_parent' => 1,
|
|
|
|
|
'file_target' => 'myTarget',
|
2018-11-07 01:48:28 +03:00
|
|
|
|
'password' => 'mypassword',
|
2016-02-17 15:50:08 +03:00
|
|
|
|
'share_with' => 'mypassword',
|
2020-01-10 12:03:08 +03:00
|
|
|
|
'share_with_displayname' => '(Shared link)',
|
2018-10-15 13:27:56 +03:00
|
|
|
|
'send_password_by_talk' => false,
|
|
|
|
|
'mail_send' => 0,
|
|
|
|
|
'url' => 'myLink',
|
|
|
|
|
'mimetype' => 'myMimeType',
|
|
|
|
|
'hide_download' => 0,
|
2019-10-24 16:51:56 +03:00
|
|
|
|
'can_edit' => false,
|
|
|
|
|
'can_delete' => false,
|
2018-10-15 13:27:56 +03:00
|
|
|
|
], $share, [], false
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$share = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$share->setShareType(\OCP\Share::SHARE_TYPE_LINK)
|
|
|
|
|
->setSharedBy('initiator')
|
|
|
|
|
->setShareOwner('owner')
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
|
->setNode($file)
|
|
|
|
|
->setShareTime(new \DateTime('2000-01-01T00:01:02'))
|
|
|
|
|
->setTarget('myTarget')
|
|
|
|
|
->setPassword('mypassword')
|
|
|
|
|
->setSendPasswordByTalk(true)
|
|
|
|
|
->setExpirationDate(new \DateTime('2001-01-02T00:00:00'))
|
|
|
|
|
->setToken('myToken')
|
|
|
|
|
->setNote('personal note')
|
|
|
|
|
->setLabel('new link share')
|
|
|
|
|
->setId(42);
|
|
|
|
|
|
|
|
|
|
$result[] = [
|
|
|
|
|
[
|
|
|
|
|
'id' => 42,
|
|
|
|
|
'share_type' => \OCP\Share::SHARE_TYPE_LINK,
|
|
|
|
|
'uid_owner' => 'initiator',
|
|
|
|
|
'displayname_owner' => 'initiator',
|
|
|
|
|
'permissions' => 1,
|
|
|
|
|
'stime' => 946684862,
|
|
|
|
|
'parent' => null,
|
|
|
|
|
'expiration' => '2001-01-02 00:00:00',
|
|
|
|
|
'token' => 'myToken',
|
|
|
|
|
'uid_file_owner' => 'owner',
|
|
|
|
|
'displayname_file_owner' => 'owner',
|
|
|
|
|
'note' => 'personal note',
|
|
|
|
|
'label' => 'new link share',
|
|
|
|
|
'path' => 'file',
|
|
|
|
|
'item_type' => 'file',
|
|
|
|
|
'storage_id' => 'storageId',
|
|
|
|
|
'storage' => 100,
|
|
|
|
|
'item_source' => 3,
|
|
|
|
|
'file_source' => 3,
|
|
|
|
|
'file_parent' => 1,
|
|
|
|
|
'file_target' => 'myTarget',
|
2018-11-07 01:48:28 +03:00
|
|
|
|
'password' => 'mypassword',
|
2018-10-15 13:27:56 +03:00
|
|
|
|
'share_with' => 'mypassword',
|
2020-01-10 12:03:08 +03:00
|
|
|
|
'share_with_displayname' => '(Shared link)',
|
2018-10-15 13:27:56 +03:00
|
|
|
|
'send_password_by_talk' => true,
|
2016-02-17 15:50:08 +03:00
|
|
|
|
'mail_send' => 0,
|
2016-03-09 22:20:37 +03:00
|
|
|
|
'url' => 'myLink',
|
|
|
|
|
'mimetype' => 'myMimeType',
|
2018-10-18 13:38:07 +03:00
|
|
|
|
'hide_download' => 0,
|
2019-10-24 16:51:56 +03:00
|
|
|
|
'can_edit' => false,
|
|
|
|
|
'can_delete' => false,
|
2016-02-17 15:50:08 +03:00
|
|
|
|
], $share, [], false
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$share = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$share->setShareType(\OCP\Share::SHARE_TYPE_REMOTE)
|
|
|
|
|
->setSharedBy('initiator')
|
|
|
|
|
->setSharedWith('user@server.com')
|
|
|
|
|
->setShareOwner('owner')
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
|
->setNode($folder)
|
|
|
|
|
->setShareTime(new \DateTime('2000-01-01T00:01:02'))
|
|
|
|
|
->setTarget('myTarget')
|
2018-07-13 19:39:44 +03:00
|
|
|
|
->setNote('personal note')
|
2016-02-17 15:50:08 +03:00
|
|
|
|
->setId(42);
|
|
|
|
|
|
|
|
|
|
$result[] = [
|
|
|
|
|
[
|
|
|
|
|
'id' => 42,
|
|
|
|
|
'share_type' => \OCP\Share::SHARE_TYPE_REMOTE,
|
|
|
|
|
'uid_owner' => 'initiator',
|
|
|
|
|
'displayname_owner' => 'initiator',
|
|
|
|
|
'permissions' => 1,
|
|
|
|
|
'stime' => 946684862,
|
|
|
|
|
'parent' => null,
|
|
|
|
|
'expiration' => null,
|
|
|
|
|
'token' => null,
|
|
|
|
|
'uid_file_owner' => 'owner',
|
|
|
|
|
'displayname_file_owner' => 'owner',
|
2018-07-13 19:39:44 +03:00
|
|
|
|
'note' => 'personal note',
|
2018-10-31 22:10:05 +03:00
|
|
|
|
'label' => null,
|
2016-02-17 15:50:08 +03:00
|
|
|
|
'path' => 'folder',
|
|
|
|
|
'item_type' => 'folder',
|
|
|
|
|
'storage_id' => 'storageId',
|
|
|
|
|
'storage' => 100,
|
|
|
|
|
'item_source' => 2,
|
|
|
|
|
'file_source' => 2,
|
|
|
|
|
'file_parent' => 1,
|
|
|
|
|
'file_target' => 'myTarget',
|
|
|
|
|
'share_with' => 'user@server.com',
|
2018-03-14 00:18:38 +03:00
|
|
|
|
'share_with_displayname' => 'foobar',
|
2016-02-17 15:50:08 +03:00
|
|
|
|
'mail_send' => 0,
|
2016-03-09 22:20:37 +03:00
|
|
|
|
'mimetype' => 'myFolderMimeType',
|
2018-10-18 13:38:07 +03:00
|
|
|
|
'hide_download' => 0,
|
2019-10-24 16:51:56 +03:00
|
|
|
|
'can_edit' => false,
|
|
|
|
|
'can_delete' => false,
|
2016-02-17 15:50:08 +03:00
|
|
|
|
], $share, [], false
|
|
|
|
|
];
|
|
|
|
|
|
2017-06-06 14:21:42 +03:00
|
|
|
|
// Circle with id, display name and avatar set by the Circles app
|
|
|
|
|
$share = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$share->setShareType(\OCP\Share::SHARE_TYPE_CIRCLE)
|
|
|
|
|
->setSharedBy('initiator')
|
|
|
|
|
->setSharedWith('Circle (Public circle, circleOwner) [4815162342]')
|
|
|
|
|
->setSharedWithDisplayName('The display name')
|
|
|
|
|
->setSharedWithAvatar('path/to/the/avatar')
|
|
|
|
|
->setShareOwner('owner')
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
|
->setNode($folder)
|
|
|
|
|
->setShareTime(new \DateTime('2000-01-01T00:01:02'))
|
|
|
|
|
->setTarget('myTarget')
|
|
|
|
|
->setId(42);
|
|
|
|
|
|
|
|
|
|
$result[] = [
|
|
|
|
|
[
|
|
|
|
|
'id' => 42,
|
|
|
|
|
'share_type' => \OCP\Share::SHARE_TYPE_CIRCLE,
|
|
|
|
|
'uid_owner' => 'initiator',
|
|
|
|
|
'displayname_owner' => 'initiator',
|
|
|
|
|
'permissions' => 1,
|
|
|
|
|
'stime' => 946684862,
|
|
|
|
|
'parent' => null,
|
|
|
|
|
'expiration' => null,
|
|
|
|
|
'token' => null,
|
|
|
|
|
'uid_file_owner' => 'owner',
|
|
|
|
|
'displayname_file_owner' => 'owner',
|
2018-07-19 10:26:08 +03:00
|
|
|
|
'note' => '',
|
2018-10-31 22:10:05 +03:00
|
|
|
|
'label' => null,
|
2017-06-06 14:21:42 +03:00
|
|
|
|
'path' => 'folder',
|
|
|
|
|
'item_type' => 'folder',
|
|
|
|
|
'storage_id' => 'storageId',
|
|
|
|
|
'storage' => 100,
|
|
|
|
|
'item_source' => 2,
|
|
|
|
|
'file_source' => 2,
|
|
|
|
|
'file_parent' => 1,
|
|
|
|
|
'file_target' => 'myTarget',
|
|
|
|
|
'share_with' => '4815162342',
|
|
|
|
|
'share_with_displayname' => 'The display name',
|
|
|
|
|
'share_with_avatar' => 'path/to/the/avatar',
|
|
|
|
|
'mail_send' => 0,
|
|
|
|
|
'mimetype' => 'myFolderMimeType',
|
2018-10-18 13:38:07 +03:00
|
|
|
|
'hide_download' => 0,
|
2019-10-24 16:51:56 +03:00
|
|
|
|
'can_edit' => false,
|
|
|
|
|
'can_delete' => false,
|
2017-06-06 14:21:42 +03:00
|
|
|
|
], $share, [], false
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
// Circle with id set by the Circles app
|
|
|
|
|
$share = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$share->setShareType(\OCP\Share::SHARE_TYPE_CIRCLE)
|
|
|
|
|
->setSharedBy('initiator')
|
|
|
|
|
->setSharedWith('Circle (Public circle, circleOwner) [4815162342]')
|
|
|
|
|
->setShareOwner('owner')
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
|
->setNode($folder)
|
|
|
|
|
->setShareTime(new \DateTime('2000-01-01T00:01:02'))
|
|
|
|
|
->setTarget('myTarget')
|
|
|
|
|
->setId(42);
|
|
|
|
|
|
|
|
|
|
$result[] = [
|
|
|
|
|
[
|
|
|
|
|
'id' => 42,
|
|
|
|
|
'share_type' => \OCP\Share::SHARE_TYPE_CIRCLE,
|
|
|
|
|
'uid_owner' => 'initiator',
|
|
|
|
|
'displayname_owner' => 'initiator',
|
|
|
|
|
'permissions' => 1,
|
|
|
|
|
'stime' => 946684862,
|
|
|
|
|
'parent' => null,
|
|
|
|
|
'expiration' => null,
|
|
|
|
|
'token' => null,
|
|
|
|
|
'uid_file_owner' => 'owner',
|
|
|
|
|
'displayname_file_owner' => 'owner',
|
2018-07-19 10:26:08 +03:00
|
|
|
|
'note' => '',
|
2018-10-31 22:10:05 +03:00
|
|
|
|
'label' => null,
|
2017-06-06 14:21:42 +03:00
|
|
|
|
'path' => 'folder',
|
|
|
|
|
'item_type' => 'folder',
|
|
|
|
|
'storage_id' => 'storageId',
|
|
|
|
|
'storage' => 100,
|
|
|
|
|
'item_source' => 2,
|
|
|
|
|
'file_source' => 2,
|
|
|
|
|
'file_parent' => 1,
|
|
|
|
|
'file_target' => 'myTarget',
|
|
|
|
|
'share_with' => '4815162342',
|
|
|
|
|
'share_with_displayname' => 'Circle (Public circle, circleOwner)',
|
|
|
|
|
'share_with_avatar' => '',
|
|
|
|
|
'mail_send' => 0,
|
|
|
|
|
'mimetype' => 'myFolderMimeType',
|
2018-10-18 13:38:07 +03:00
|
|
|
|
'hide_download' => 0,
|
2019-10-24 16:51:56 +03:00
|
|
|
|
'can_edit' => false,
|
|
|
|
|
'can_delete' => false,
|
2017-06-06 14:21:42 +03:00
|
|
|
|
], $share, [], false
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
// Circle with id not set by the Circles app
|
|
|
|
|
$share = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$share->setShareType(\OCP\Share::SHARE_TYPE_CIRCLE)
|
|
|
|
|
->setSharedBy('initiator')
|
|
|
|
|
->setSharedWith('Circle (Public circle, circleOwner)')
|
|
|
|
|
->setShareOwner('owner')
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
|
->setNode($folder)
|
|
|
|
|
->setShareTime(new \DateTime('2000-01-01T00:01:02'))
|
|
|
|
|
->setTarget('myTarget')
|
|
|
|
|
->setId(42);
|
|
|
|
|
|
|
|
|
|
$result[] = [
|
|
|
|
|
[
|
|
|
|
|
'id' => 42,
|
|
|
|
|
'share_type' => \OCP\Share::SHARE_TYPE_CIRCLE,
|
|
|
|
|
'uid_owner' => 'initiator',
|
|
|
|
|
'displayname_owner' => 'initiator',
|
|
|
|
|
'permissions' => 1,
|
|
|
|
|
'stime' => 946684862,
|
|
|
|
|
'parent' => null,
|
|
|
|
|
'expiration' => null,
|
|
|
|
|
'token' => null,
|
|
|
|
|
'uid_file_owner' => 'owner',
|
|
|
|
|
'displayname_file_owner' => 'owner',
|
2018-07-19 10:26:08 +03:00
|
|
|
|
'note' => '',
|
2018-10-31 22:10:05 +03:00
|
|
|
|
'label' => null,
|
2017-06-06 14:21:42 +03:00
|
|
|
|
'path' => 'folder',
|
|
|
|
|
'item_type' => 'folder',
|
|
|
|
|
'storage_id' => 'storageId',
|
|
|
|
|
'storage' => 100,
|
|
|
|
|
'item_source' => 2,
|
|
|
|
|
'file_source' => 2,
|
|
|
|
|
'file_parent' => 1,
|
|
|
|
|
'file_target' => 'myTarget',
|
|
|
|
|
'share_with' => 'Circle',
|
|
|
|
|
'share_with_displayname' => 'Circle (Public circle, circleOwner)',
|
|
|
|
|
'share_with_avatar' => '',
|
|
|
|
|
'mail_send' => 0,
|
|
|
|
|
'mimetype' => 'myFolderMimeType',
|
2018-10-18 13:38:07 +03:00
|
|
|
|
'hide_download' => 0,
|
2019-10-24 16:51:56 +03:00
|
|
|
|
'can_edit' => false,
|
|
|
|
|
'can_delete' => false,
|
2017-06-06 14:21:42 +03:00
|
|
|
|
], $share, [], false
|
|
|
|
|
];
|
|
|
|
|
|
2016-02-17 15:50:08 +03:00
|
|
|
|
$share = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$share->setShareType(\OCP\Share::SHARE_TYPE_USER)
|
|
|
|
|
->setSharedBy('initiator')
|
|
|
|
|
->setSharedWith('recipient')
|
|
|
|
|
->setShareOwner('owner')
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
|
->setShareTime(new \DateTime('2000-01-01T00:01:02'))
|
|
|
|
|
->setTarget('myTarget')
|
2018-07-13 19:39:44 +03:00
|
|
|
|
->setNote('personal note')
|
2016-02-17 15:50:08 +03:00
|
|
|
|
->setId(42);
|
|
|
|
|
|
|
|
|
|
$result[] = [
|
|
|
|
|
[], $share, [], true
|
|
|
|
|
];
|
|
|
|
|
|
2018-07-12 21:51:41 +03:00
|
|
|
|
$share = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$share->setShareType(\OCP\Share::SHARE_TYPE_EMAIL)
|
|
|
|
|
->setSharedBy('initiator')
|
|
|
|
|
->setSharedWith('user@server.com')
|
|
|
|
|
->setShareOwner('owner')
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
|
->setNode($folder)
|
|
|
|
|
->setShareTime(new \DateTime('2000-01-01T00:01:02'))
|
|
|
|
|
->setTarget('myTarget')
|
|
|
|
|
->setId(42)
|
|
|
|
|
->setPassword('password');
|
|
|
|
|
|
|
|
|
|
$result[] = [
|
|
|
|
|
[
|
|
|
|
|
'id' => 42,
|
|
|
|
|
'share_type' => \OCP\Share::SHARE_TYPE_EMAIL,
|
|
|
|
|
'uid_owner' => 'initiator',
|
|
|
|
|
'displayname_owner' => 'initiator',
|
|
|
|
|
'permissions' => 1,
|
|
|
|
|
'stime' => 946684862,
|
|
|
|
|
'parent' => null,
|
|
|
|
|
'expiration' => null,
|
|
|
|
|
'token' => null,
|
|
|
|
|
'uid_file_owner' => 'owner',
|
|
|
|
|
'displayname_file_owner' => 'owner',
|
2018-07-19 10:26:08 +03:00
|
|
|
|
'note' => '',
|
2018-10-31 22:10:05 +03:00
|
|
|
|
'label' => null,
|
2018-07-12 21:51:41 +03:00
|
|
|
|
'path' => 'folder',
|
|
|
|
|
'item_type' => 'folder',
|
|
|
|
|
'storage_id' => 'storageId',
|
|
|
|
|
'storage' => 100,
|
|
|
|
|
'item_source' => 2,
|
|
|
|
|
'file_source' => 2,
|
|
|
|
|
'file_parent' => 1,
|
|
|
|
|
'file_target' => 'myTarget',
|
|
|
|
|
'share_with' => 'user@server.com',
|
|
|
|
|
'share_with_displayname' => 'mail display name',
|
|
|
|
|
'mail_send' => 0,
|
|
|
|
|
'mimetype' => 'myFolderMimeType',
|
2018-07-10 14:01:31 +03:00
|
|
|
|
'password' => 'password',
|
2018-10-18 13:38:07 +03:00
|
|
|
|
'send_password_by_talk' => false,
|
|
|
|
|
'hide_download' => 0,
|
2019-10-24 16:51:56 +03:00
|
|
|
|
'can_edit' => false,
|
|
|
|
|
'can_delete' => false,
|
2018-07-10 14:01:31 +03:00
|
|
|
|
], $share, [], false
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$share = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$share->setShareType(\OCP\Share::SHARE_TYPE_EMAIL)
|
|
|
|
|
->setSharedBy('initiator')
|
|
|
|
|
->setSharedWith('user@server.com')
|
|
|
|
|
->setShareOwner('owner')
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
|
->setNode($folder)
|
|
|
|
|
->setShareTime(new \DateTime('2000-01-01T00:01:02'))
|
|
|
|
|
->setTarget('myTarget')
|
|
|
|
|
->setId(42)
|
|
|
|
|
->setPassword('password')
|
|
|
|
|
->setSendPasswordByTalk(true);
|
|
|
|
|
|
|
|
|
|
$result[] = [
|
|
|
|
|
[
|
|
|
|
|
'id' => 42,
|
|
|
|
|
'share_type' => \OCP\Share::SHARE_TYPE_EMAIL,
|
|
|
|
|
'uid_owner' => 'initiator',
|
|
|
|
|
'displayname_owner' => 'initiator',
|
|
|
|
|
'permissions' => 1,
|
|
|
|
|
'stime' => 946684862,
|
|
|
|
|
'parent' => null,
|
|
|
|
|
'expiration' => null,
|
|
|
|
|
'token' => null,
|
|
|
|
|
'uid_file_owner' => 'owner',
|
|
|
|
|
'displayname_file_owner' => 'owner',
|
|
|
|
|
'note' => '',
|
2018-10-31 22:10:05 +03:00
|
|
|
|
'label' => null,
|
2018-07-10 14:01:31 +03:00
|
|
|
|
'path' => 'folder',
|
|
|
|
|
'item_type' => 'folder',
|
|
|
|
|
'storage_id' => 'storageId',
|
|
|
|
|
'storage' => 100,
|
|
|
|
|
'item_source' => 2,
|
|
|
|
|
'file_source' => 2,
|
|
|
|
|
'file_parent' => 1,
|
|
|
|
|
'file_target' => 'myTarget',
|
|
|
|
|
'share_with' => 'user@server.com',
|
|
|
|
|
'share_with_displayname' => 'mail display name',
|
|
|
|
|
'mail_send' => 0,
|
|
|
|
|
'mimetype' => 'myFolderMimeType',
|
|
|
|
|
'password' => 'password',
|
2018-10-18 13:38:07 +03:00
|
|
|
|
'send_password_by_talk' => true,
|
|
|
|
|
'hide_download' => 0,
|
2019-10-24 16:51:56 +03:00
|
|
|
|
'can_edit' => false,
|
|
|
|
|
'can_delete' => false,
|
2018-07-12 21:51:41 +03:00
|
|
|
|
], $share, [], false
|
|
|
|
|
];
|
|
|
|
|
|
2016-02-17 15:50:08 +03:00
|
|
|
|
return $result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider dataFormatShare
|
|
|
|
|
*
|
|
|
|
|
* @param array $expects
|
|
|
|
|
* @param \OCP\Share\IShare $share
|
|
|
|
|
* @param array $users
|
|
|
|
|
* @param $exception
|
|
|
|
|
*/
|
|
|
|
|
public function testFormatShare(array $expects, \OCP\Share\IShare $share, array $users, $exception) {
|
2020-03-26 00:21:27 +03:00
|
|
|
|
$this->userManager->method('get')->willReturnMap($users);
|
2016-11-30 22:56:10 +03:00
|
|
|
|
|
|
|
|
|
$recipientGroup = $this->createMock('\OCP\IGroup');
|
|
|
|
|
$recipientGroup->method('getDisplayName')->willReturn('recipientGroupDisplayName');
|
2020-03-26 00:21:27 +03:00
|
|
|
|
$this->groupManager->method('get')->willReturnMap([
|
2020-04-09 10:22:29 +03:00
|
|
|
|
['recipientGroup', $recipientGroup],
|
2020-03-26 00:21:27 +03:00
|
|
|
|
]);
|
2016-11-30 22:56:10 +03:00
|
|
|
|
|
2016-02-17 15:50:08 +03:00
|
|
|
|
$this->urlGenerator->method('linkToRouteAbsolute')
|
|
|
|
|
->with('files_sharing.sharecontroller.showShare', ['token' => 'myToken'])
|
|
|
|
|
->willReturn('myLink');
|
|
|
|
|
|
|
|
|
|
|
2016-06-07 15:17:22 +03:00
|
|
|
|
$this->rootFolder->method('getUserFolder')
|
2016-10-21 21:25:07 +03:00
|
|
|
|
->with($this->currentUser)
|
2020-03-26 00:21:27 +03:00
|
|
|
|
->willReturnSelf();
|
2016-06-07 15:17:22 +03:00
|
|
|
|
|
|
|
|
|
if (!$exception) {
|
|
|
|
|
$this->rootFolder->method('getById')
|
|
|
|
|
->with($share->getNodeId())
|
|
|
|
|
->willReturn([$share->getNode()]);
|
|
|
|
|
|
|
|
|
|
$this->rootFolder->method('getRelativePath')
|
|
|
|
|
->with($share->getNode()->getPath())
|
2020-03-26 00:21:27 +03:00
|
|
|
|
->willReturnArgument(0);
|
2016-06-07 15:17:22 +03:00
|
|
|
|
}
|
2016-02-17 15:50:08 +03:00
|
|
|
|
|
2018-03-14 00:18:38 +03:00
|
|
|
|
$cm = $this->createMock(\OCP\Contacts\IManager::class);
|
|
|
|
|
$this->overwriteService(\OCP\Contacts\IManager::class, $cm);
|
|
|
|
|
|
|
|
|
|
$cm->method('search')
|
2020-03-26 00:21:27 +03:00
|
|
|
|
->willReturnMap([
|
2018-07-12 21:51:41 +03:00
|
|
|
|
['user@server.com', ['CLOUD'], [],
|
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
'CLOUD' => [
|
|
|
|
|
'user@server.com',
|
|
|
|
|
],
|
|
|
|
|
'FN' => 'foobar',
|
|
|
|
|
],
|
2018-03-14 00:18:38 +03:00
|
|
|
|
],
|
|
|
|
|
],
|
2018-07-12 21:51:41 +03:00
|
|
|
|
['user@server.com', ['EMAIL'], [],
|
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
'EMAIL' => [
|
|
|
|
|
'user@server.com',
|
|
|
|
|
],
|
|
|
|
|
'FN' => 'mail display name',
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
],
|
2020-03-26 00:21:27 +03:00
|
|
|
|
]);
|
2018-03-14 00:18:38 +03:00
|
|
|
|
|
2016-02-17 15:50:08 +03:00
|
|
|
|
try {
|
|
|
|
|
$result = $this->invokePrivate($this->ocs, 'formatShare', [$share]);
|
|
|
|
|
$this->assertFalse($exception);
|
|
|
|
|
$this->assertEquals($expects, $result);
|
|
|
|
|
} catch (NotFoundException $e) {
|
|
|
|
|
$this->assertTrue($exception);
|
|
|
|
|
}
|
2016-02-26 16:58:41 +03:00
|
|
|
|
}
|
2018-06-29 14:22:26 +03:00
|
|
|
|
|
|
|
|
|
public function dataFormatRoomShare() {
|
|
|
|
|
$file = $this->getMockBuilder(File::class)->getMock();
|
|
|
|
|
$parent = $this->getMockBuilder(Folder::class)->getMock();
|
|
|
|
|
|
|
|
|
|
$file->method('getMimeType')->willReturn('myMimeType');
|
|
|
|
|
|
|
|
|
|
$file->method('getPath')->willReturn('file');
|
|
|
|
|
|
|
|
|
|
$parent->method('getId')->willReturn(1);
|
|
|
|
|
$file->method('getId')->willReturn(3);
|
|
|
|
|
|
|
|
|
|
$file->method('getParent')->willReturn($parent);
|
|
|
|
|
|
|
|
|
|
$cache = $this->getMockBuilder('OCP\Files\Cache\ICache')->getMock();
|
|
|
|
|
$cache->method('getNumericStorageId')->willReturn(100);
|
2019-11-22 15:23:56 +03:00
|
|
|
|
$storage = $this->createMock(Storage::class);
|
2018-06-29 14:22:26 +03:00
|
|
|
|
$storage->method('getId')->willReturn('storageId');
|
|
|
|
|
$storage->method('getCache')->willReturn($cache);
|
|
|
|
|
|
|
|
|
|
$file->method('getStorage')->willReturn($storage);
|
|
|
|
|
|
|
|
|
|
$result = [];
|
|
|
|
|
|
|
|
|
|
$share = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$share->setShareType(\OCP\Share::SHARE_TYPE_ROOM)
|
|
|
|
|
->setSharedWith('recipientRoom')
|
|
|
|
|
->setSharedBy('initiator')
|
|
|
|
|
->setShareOwner('owner')
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
|
->setNode($file)
|
|
|
|
|
->setShareTime(new \DateTime('2000-01-01T00:01:02'))
|
|
|
|
|
->setTarget('myTarget')
|
|
|
|
|
->setNote('personal note')
|
|
|
|
|
->setId(42);
|
|
|
|
|
|
|
|
|
|
$result[] = [
|
|
|
|
|
[
|
|
|
|
|
'id' => 42,
|
|
|
|
|
'share_type' => \OCP\Share::SHARE_TYPE_ROOM,
|
|
|
|
|
'uid_owner' => 'initiator',
|
|
|
|
|
'displayname_owner' => 'initiator',
|
|
|
|
|
'permissions' => 1,
|
|
|
|
|
'stime' => 946684862,
|
|
|
|
|
'parent' => null,
|
|
|
|
|
'expiration' => null,
|
|
|
|
|
'token' => null,
|
|
|
|
|
'uid_file_owner' => 'owner',
|
|
|
|
|
'displayname_file_owner' => 'owner',
|
|
|
|
|
'note' => 'personal note',
|
|
|
|
|
'path' => 'file',
|
|
|
|
|
'item_type' => 'file',
|
|
|
|
|
'storage_id' => 'storageId',
|
|
|
|
|
'storage' => 100,
|
|
|
|
|
'item_source' => 3,
|
|
|
|
|
'file_source' => 3,
|
|
|
|
|
'file_parent' => 1,
|
|
|
|
|
'file_target' => 'myTarget',
|
|
|
|
|
'share_with' => 'recipientRoom',
|
|
|
|
|
'share_with_displayname' => '',
|
|
|
|
|
'mail_send' => 0,
|
|
|
|
|
'mimetype' => 'myMimeType',
|
2018-10-18 13:38:07 +03:00
|
|
|
|
'hide_download' => 0,
|
2018-10-31 22:10:05 +03:00
|
|
|
|
'label' => '',
|
2019-10-24 16:51:56 +03:00
|
|
|
|
'can_edit' => false,
|
|
|
|
|
'can_delete' => false,
|
2018-06-29 14:22:26 +03:00
|
|
|
|
], $share, false, []
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$share = \OC::$server->getShareManager()->newShare();
|
|
|
|
|
$share->setShareType(\OCP\Share::SHARE_TYPE_ROOM)
|
|
|
|
|
->setSharedWith('recipientRoom')
|
|
|
|
|
->setSharedBy('initiator')
|
|
|
|
|
->setShareOwner('owner')
|
|
|
|
|
->setPermissions(\OCP\Constants::PERMISSION_READ)
|
|
|
|
|
->setNode($file)
|
|
|
|
|
->setShareTime(new \DateTime('2000-01-01T00:01:02'))
|
|
|
|
|
->setTarget('myTarget')
|
|
|
|
|
->setNote('personal note')
|
|
|
|
|
->setId(42);
|
|
|
|
|
|
|
|
|
|
$result[] = [
|
|
|
|
|
[
|
|
|
|
|
'id' => 42,
|
|
|
|
|
'share_type' => \OCP\Share::SHARE_TYPE_ROOM,
|
|
|
|
|
'uid_owner' => 'initiator',
|
|
|
|
|
'displayname_owner' => 'initiator',
|
|
|
|
|
'permissions' => 1,
|
|
|
|
|
'stime' => 946684862,
|
|
|
|
|
'parent' => null,
|
|
|
|
|
'expiration' => null,
|
|
|
|
|
'token' => null,
|
|
|
|
|
'uid_file_owner' => 'owner',
|
|
|
|
|
'displayname_file_owner' => 'owner',
|
|
|
|
|
'note' => 'personal note',
|
|
|
|
|
'path' => 'file',
|
|
|
|
|
'item_type' => 'file',
|
|
|
|
|
'storage_id' => 'storageId',
|
|
|
|
|
'storage' => 100,
|
|
|
|
|
'item_source' => 3,
|
|
|
|
|
'file_source' => 3,
|
|
|
|
|
'file_parent' => 1,
|
|
|
|
|
'file_target' => 'myTarget',
|
|
|
|
|
'share_with' => 'recipientRoom',
|
|
|
|
|
'share_with_displayname' => 'recipientRoomName',
|
|
|
|
|
'mail_send' => 0,
|
|
|
|
|
'mimetype' => 'myMimeType',
|
2018-10-18 13:38:07 +03:00
|
|
|
|
'hide_download' => 0,
|
2018-10-31 22:10:05 +03:00
|
|
|
|
'label' => '',
|
2019-10-24 16:51:56 +03:00
|
|
|
|
'can_edit' => false,
|
|
|
|
|
'can_delete' => false,
|
2018-06-29 14:22:26 +03:00
|
|
|
|
], $share, true, [
|
|
|
|
|
'share_with_displayname' => 'recipientRoomName'
|
|
|
|
|
]
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider dataFormatRoomShare
|
|
|
|
|
*
|
|
|
|
|
* @param array $expects
|
|
|
|
|
* @param \OCP\Share\IShare $share
|
|
|
|
|
* @param bool $helperAvailable
|
|
|
|
|
* @param array $formatShareByHelper
|
|
|
|
|
*/
|
|
|
|
|
public function testFormatRoomShare(array $expects, \OCP\Share\IShare $share, bool $helperAvailable, array $formatShareByHelper) {
|
|
|
|
|
$this->rootFolder->method('getUserFolder')
|
|
|
|
|
->with($this->currentUser)
|
2020-03-26 00:21:27 +03:00
|
|
|
|
->willReturnSelf();
|
2018-06-29 14:22:26 +03:00
|
|
|
|
|
|
|
|
|
$this->rootFolder->method('getById')
|
|
|
|
|
->with($share->getNodeId())
|
|
|
|
|
->willReturn([$share->getNode()]);
|
|
|
|
|
|
|
|
|
|
$this->rootFolder->method('getRelativePath')
|
|
|
|
|
->with($share->getNode()->getPath())
|
2020-03-26 00:21:27 +03:00
|
|
|
|
->willReturnArgument(0);
|
2018-06-29 14:22:26 +03:00
|
|
|
|
|
|
|
|
|
if (!$helperAvailable) {
|
|
|
|
|
$this->appManager->method('isEnabledForUser')
|
|
|
|
|
->with('spreed')
|
|
|
|
|
->willReturn(false);
|
|
|
|
|
} else {
|
|
|
|
|
$this->appManager->method('isEnabledForUser')
|
|
|
|
|
->with('spreed')
|
|
|
|
|
->willReturn(true);
|
|
|
|
|
|
2019-09-05 16:32:58 +03:00
|
|
|
|
$helper = $this->getMockBuilder('\OCA\Talk\Share\Helper\ShareAPIController')
|
2020-03-26 11:30:18 +03:00
|
|
|
|
->setMethods(['formatShare'])
|
2018-06-29 14:22:26 +03:00
|
|
|
|
->getMock();
|
|
|
|
|
$helper->method('formatShare')
|
|
|
|
|
->with($share)
|
|
|
|
|
->willReturn($formatShareByHelper);
|
|
|
|
|
|
|
|
|
|
$this->serverContainer->method('query')
|
2019-09-05 16:32:58 +03:00
|
|
|
|
->with('\OCA\Talk\Share\Helper\ShareAPIController')
|
2018-06-29 14:22:26 +03:00
|
|
|
|
->willReturn($helper);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$result = $this->invokePrivate($this->ocs, 'formatShare', [$share]);
|
|
|
|
|
$this->assertEquals($expects, $result);
|
|
|
|
|
}
|
2015-10-30 15:10:08 +03:00
|
|
|
|
}
|