2015-08-09 22:19:35 +03:00
|
|
|
<?php
|
2015-08-11 16:43:44 +03:00
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
|
|
|
* @author Bjoern Schiessle <bjoern@schiessle.org>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2020-03-31 11:49:10 +03:00
|
|
|
* @author Julius Härtl <jus@bitgrid.net>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2020-08-24 15:54:25 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2015-08-11 16:43:44 +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-08-11 16:43:44 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-08-26 11:52:06 +03:00
|
|
|
namespace OCA\Files_Sharing\Tests\Controller;
|
2015-08-09 22:19:35 +03:00
|
|
|
|
2016-08-26 11:52:06 +03:00
|
|
|
use OCA\Files_Sharing\Controller\ShareesAPIController;
|
2016-05-17 12:42:03 +03:00
|
|
|
use OCA\Files_Sharing\Tests\TestCase;
|
2015-09-15 16:51:54 +03:00
|
|
|
use OCP\AppFramework\Http;
|
2016-08-26 11:52:06 +03:00
|
|
|
use OCP\AppFramework\OCS\OCSBadRequestException;
|
2017-09-13 17:21:23 +03:00
|
|
|
use OCP\Collaboration\Collaborators\ISearch;
|
|
|
|
use OCP\IConfig;
|
|
|
|
use OCP\IRequest;
|
|
|
|
use OCP\IURLGenerator;
|
2020-06-24 17:49:16 +03:00
|
|
|
use OCP\Share\IShare;
|
2017-09-13 17:21:23 +03:00
|
|
|
use OCP\Share\IManager;
|
2015-08-09 22:19:35 +03:00
|
|
|
|
2015-11-03 03:52:41 +03:00
|
|
|
/**
|
|
|
|
* Class ShareesTest
|
|
|
|
*
|
|
|
|
* @group DB
|
|
|
|
*
|
|
|
|
* @package OCA\Files_Sharing\Tests\API
|
|
|
|
*/
|
2016-08-26 11:52:06 +03:00
|
|
|
class ShareesAPIControllerTest extends TestCase {
|
2016-10-24 14:16:05 +03:00
|
|
|
/** @var ShareesAPIController */
|
2015-08-11 16:43:44 +03:00
|
|
|
protected $sharees;
|
2015-08-09 22:19:35 +03:00
|
|
|
|
2019-02-13 19:16:01 +03:00
|
|
|
/** @var string */
|
|
|
|
protected $uid;
|
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var IRequest|\PHPUnit\Framework\MockObject\MockObject */
|
2015-08-26 11:51:26 +03:00
|
|
|
protected $request;
|
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var IManager|\PHPUnit\Framework\MockObject\MockObject */
|
2016-03-18 18:39:03 +03:00
|
|
|
protected $shareManager;
|
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var ISearch|\PHPUnit\Framework\MockObject\MockObject */
|
2017-09-13 17:21:23 +03:00
|
|
|
protected $collaboratorSearch;
|
2017-01-27 14:52:17 +03:00
|
|
|
|
2019-11-21 18:40:38 +03:00
|
|
|
protected function setUp(): void {
|
2015-08-11 16:43:44 +03:00
|
|
|
parent::setUp();
|
2015-08-09 22:19:35 +03:00
|
|
|
|
2019-02-13 19:16:01 +03:00
|
|
|
$this->uid = 'test123';
|
2017-09-13 17:21:23 +03:00
|
|
|
$this->request = $this->createMock(IRequest::class);
|
|
|
|
$this->shareManager = $this->createMock(IManager::class);
|
2015-08-09 22:19:35 +03:00
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var IConfig|\PHPUnit\Framework\MockObject\MockObject $configMock */
|
2017-09-13 17:21:23 +03:00
|
|
|
$configMock = $this->createMock(IConfig::class);
|
2016-03-18 18:39:03 +03:00
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var IURLGenerator|\PHPUnit\Framework\MockObject\MockObject $urlGeneratorMock */
|
2017-09-13 17:21:23 +03:00
|
|
|
$urlGeneratorMock = $this->createMock(IURLGenerator::class);
|
2016-11-18 19:39:08 +03:00
|
|
|
|
2017-09-13 17:21:23 +03:00
|
|
|
$this->collaboratorSearch = $this->createMock(ISearch::class);
|
2017-01-27 14:52:17 +03:00
|
|
|
|
2016-08-26 11:52:06 +03:00
|
|
|
$this->sharees = new ShareesAPIController(
|
2019-02-13 19:16:01 +03:00
|
|
|
$this->uid,
|
2016-08-26 11:52:06 +03:00
|
|
|
'files_sharing',
|
|
|
|
$this->request,
|
2017-09-13 17:21:23 +03:00
|
|
|
$configMock,
|
|
|
|
$urlGeneratorMock,
|
2016-11-18 19:39:08 +03:00
|
|
|
$this->shareManager,
|
2017-09-13 17:21:23 +03:00
|
|
|
$this->collaboratorSearch
|
2015-08-11 16:43:44 +03:00
|
|
|
);
|
2015-08-09 22:19:35 +03:00
|
|
|
}
|
|
|
|
|
2015-08-12 16:03:50 +03:00
|
|
|
public function dataSearch() {
|
2020-06-24 17:49:16 +03:00
|
|
|
$noRemote = [IShare::TYPE_USER, IShare::TYPE_GROUP, IShare::TYPE_EMAIL];
|
|
|
|
$allTypes = [IShare::TYPE_USER, IShare::TYPE_GROUP, IShare::TYPE_REMOTE, IShare::TYPE_REMOTE_GROUP, IShare::TYPE_EMAIL];
|
2015-08-12 18:05:20 +03:00
|
|
|
|
2015-08-12 16:03:50 +03:00
|
|
|
return [
|
2018-07-04 11:39:13 +03:00
|
|
|
[[], '', 'yes', true, true, true, $noRemote, false, true, true],
|
2015-08-12 16:03:50 +03:00
|
|
|
|
|
|
|
// Test itemType
|
|
|
|
[[
|
|
|
|
'search' => '',
|
2018-07-04 11:39:13 +03:00
|
|
|
], '', 'yes', true, true, true, $noRemote, false, true, true],
|
2015-08-12 16:03:50 +03:00
|
|
|
[[
|
|
|
|
'search' => 'foobar',
|
2018-07-04 11:39:13 +03:00
|
|
|
], '', 'yes', true, true, true, $noRemote, false, true, true],
|
2015-08-12 16:03:50 +03:00
|
|
|
[[
|
|
|
|
'search' => 0,
|
2018-07-04 11:39:13 +03:00
|
|
|
], '', 'yes', true, true, true, $noRemote, false, true, true],
|
2015-08-12 16:03:50 +03:00
|
|
|
|
|
|
|
// Test itemType
|
|
|
|
[[
|
|
|
|
'itemType' => '',
|
2018-07-04 11:39:13 +03:00
|
|
|
], '', 'yes', true, true, true, $noRemote, false, true, true],
|
2015-08-12 16:03:50 +03:00
|
|
|
[[
|
|
|
|
'itemType' => 'folder',
|
2018-07-04 11:39:13 +03:00
|
|
|
], '', 'yes', true, true, true, $allTypes, false, true, true],
|
2015-08-12 16:03:50 +03:00
|
|
|
[[
|
|
|
|
'itemType' => 0,
|
2018-07-04 11:39:13 +03:00
|
|
|
], '', 'yes', true, true , true, $noRemote, false, true, true],
|
2015-08-12 16:03:50 +03:00
|
|
|
// Test shareType
|
|
|
|
[[
|
2016-11-10 16:16:35 +03:00
|
|
|
'itemType' => 'call',
|
2018-07-04 11:39:13 +03:00
|
|
|
], '', 'yes', true, true, true, $noRemote, false, true, true],
|
2016-11-10 16:16:35 +03:00
|
|
|
[[
|
|
|
|
'itemType' => 'folder',
|
2018-07-04 11:39:13 +03:00
|
|
|
], '', 'yes', true, true, true, $allTypes, false, true, true],
|
2015-08-12 16:03:50 +03:00
|
|
|
[[
|
2016-11-10 16:16:35 +03:00
|
|
|
'itemType' => 'folder',
|
2015-08-12 16:03:50 +03:00
|
|
|
'shareType' => 0,
|
2018-07-04 11:39:13 +03:00
|
|
|
], '', 'yes', true, true, false, [0], false, true, true],
|
2015-08-12 16:03:50 +03:00
|
|
|
[[
|
2016-11-10 16:16:35 +03:00
|
|
|
'itemType' => 'folder',
|
2015-08-12 16:03:50 +03:00
|
|
|
'shareType' => '0',
|
2018-07-04 11:39:13 +03:00
|
|
|
], '', 'yes', true, true, false, [0], false, true, true],
|
2015-08-12 16:03:50 +03:00
|
|
|
[[
|
2016-11-10 16:16:35 +03:00
|
|
|
'itemType' => 'folder',
|
2015-08-12 16:03:50 +03:00
|
|
|
'shareType' => 1,
|
2018-07-04 11:39:13 +03:00
|
|
|
], '', 'yes', true, true, false, [1], false, true, true],
|
2015-08-12 16:03:50 +03:00
|
|
|
[[
|
2016-11-10 16:16:35 +03:00
|
|
|
'itemType' => 'folder',
|
2015-08-12 18:05:20 +03:00
|
|
|
'shareType' => 12,
|
2018-07-04 11:39:13 +03:00
|
|
|
], '', 'yes', true, true, false, [], false, true, true],
|
2015-08-12 16:03:50 +03:00
|
|
|
[[
|
2016-11-10 16:16:35 +03:00
|
|
|
'itemType' => 'folder',
|
2015-08-12 16:03:50 +03:00
|
|
|
'shareType' => 'foobar',
|
2018-07-04 11:39:13 +03:00
|
|
|
], '', 'yes', true, true, true, $allTypes, false, true, true],
|
|
|
|
|
2015-08-12 18:05:20 +03:00
|
|
|
[[
|
2016-11-10 16:16:35 +03:00
|
|
|
'itemType' => 'folder',
|
2015-08-12 18:05:20 +03:00
|
|
|
'shareType' => [0, 1, 2],
|
2018-07-04 11:39:13 +03:00
|
|
|
], '', 'yes', false, false, false, [0, 1], false, true, true],
|
2015-08-12 18:05:20 +03:00
|
|
|
[[
|
2016-11-10 16:16:35 +03:00
|
|
|
'itemType' => 'folder',
|
2015-08-12 18:05:20 +03:00
|
|
|
'shareType' => [0, 1],
|
2018-07-04 11:39:13 +03:00
|
|
|
], '', 'yes', false, false, false, [0, 1], false, true, true],
|
|
|
|
[[
|
|
|
|
'itemType' => 'folder',
|
|
|
|
'shareType' => $allTypes,
|
|
|
|
], '', 'yes', true, true, true, $allTypes, false, true, true],
|
2015-08-12 18:05:20 +03:00
|
|
|
[[
|
2016-11-10 16:16:35 +03:00
|
|
|
'itemType' => 'folder',
|
2015-08-12 18:05:20 +03:00
|
|
|
'shareType' => $allTypes,
|
2018-07-04 11:39:13 +03:00
|
|
|
], '', 'yes', false, false, false, [0, 1], false, true, true],
|
2015-08-12 18:05:20 +03:00
|
|
|
[[
|
2016-11-10 16:16:35 +03:00
|
|
|
'itemType' => 'folder',
|
2015-08-12 18:05:20 +03:00
|
|
|
'shareType' => $allTypes,
|
2018-07-04 11:39:13 +03:00
|
|
|
], '', 'yes', true, false, false, [0, 6], false, true, false],
|
2016-03-18 18:39:03 +03:00
|
|
|
[[
|
2016-11-10 16:16:35 +03:00
|
|
|
'itemType' => 'folder',
|
2016-03-18 18:39:03 +03:00
|
|
|
'shareType' => $allTypes,
|
2018-07-04 11:39:13 +03:00
|
|
|
], '', 'yes', false, false, true, [0, 4], false, true, false],
|
2016-03-18 18:39:03 +03:00
|
|
|
[[
|
2016-11-10 16:16:35 +03:00
|
|
|
'itemType' => 'folder',
|
2016-03-18 18:39:03 +03:00
|
|
|
'shareType' => $allTypes,
|
2018-07-04 11:39:13 +03:00
|
|
|
], '', 'yes', true, true, false, [0, 6, 9], false, true, false],
|
2015-08-12 16:03:50 +03:00
|
|
|
|
|
|
|
// Test pagination
|
|
|
|
[[
|
2016-11-10 16:16:35 +03:00
|
|
|
'itemType' => 'folder',
|
2015-08-12 16:03:50 +03:00
|
|
|
'page' => 1,
|
2018-07-04 11:39:13 +03:00
|
|
|
], '', 'yes', true, true, true, $allTypes, false, true, true],
|
2015-08-12 16:03:50 +03:00
|
|
|
[[
|
2016-11-10 16:16:35 +03:00
|
|
|
'itemType' => 'folder',
|
2015-08-12 16:03:50 +03:00
|
|
|
'page' => 10,
|
2018-07-04 11:39:13 +03:00
|
|
|
], '', 'yes', true, true, true, $allTypes, false, true, true],
|
2015-08-12 16:03:50 +03:00
|
|
|
|
2015-09-15 13:14:14 +03:00
|
|
|
// Test perPage
|
2015-08-12 16:03:50 +03:00
|
|
|
[[
|
2016-11-10 16:16:35 +03:00
|
|
|
'itemType' => 'folder',
|
2015-09-15 13:14:14 +03:00
|
|
|
'perPage' => 1,
|
2018-07-04 11:39:13 +03:00
|
|
|
], '', 'yes', true, true, true, $allTypes, false, true, true],
|
2015-08-12 16:03:50 +03:00
|
|
|
[[
|
2016-11-10 16:16:35 +03:00
|
|
|
'itemType' => 'folder',
|
2015-09-15 13:14:14 +03:00
|
|
|
'perPage' => 10,
|
2018-07-04 11:39:13 +03:00
|
|
|
], '', 'yes', true, true, true, $allTypes, false, true, true],
|
2015-08-12 16:03:50 +03:00
|
|
|
|
|
|
|
// Test $shareWithGroupOnly setting
|
2016-11-10 16:16:35 +03:00
|
|
|
[[
|
|
|
|
'itemType' => 'folder',
|
2018-07-04 11:39:13 +03:00
|
|
|
], 'no', 'yes', true, true, true, $allTypes, false, true, true],
|
2016-11-10 16:16:35 +03:00
|
|
|
[[
|
|
|
|
'itemType' => 'folder',
|
2018-07-04 11:39:13 +03:00
|
|
|
], 'yes', 'yes', true, true, true, $allTypes, true, true, true],
|
2015-08-26 13:30:07 +03:00
|
|
|
|
|
|
|
// Test $shareeEnumeration setting
|
2016-11-10 16:16:35 +03:00
|
|
|
[[
|
|
|
|
'itemType' => 'folder',
|
2018-07-04 11:39:13 +03:00
|
|
|
], 'no', 'yes', true, true, true, $allTypes, false, true, true],
|
2016-11-10 16:16:35 +03:00
|
|
|
[[
|
|
|
|
'itemType' => 'folder',
|
2018-07-04 11:39:13 +03:00
|
|
|
], 'no', 'no', true, true, true, $allTypes, false, false, true],
|
|
|
|
|
2015-08-12 16:03:50 +03:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider dataSearch
|
|
|
|
*
|
|
|
|
* @param array $getData
|
|
|
|
* @param string $apiSetting
|
2015-08-26 13:30:07 +03:00
|
|
|
* @param string $enumSetting
|
2015-08-12 18:05:20 +03:00
|
|
|
* @param bool $remoteSharingEnabled
|
2018-07-04 11:39:13 +03:00
|
|
|
* @param bool $isRemoteGroupSharingEnabled
|
2016-11-10 16:16:35 +03:00
|
|
|
* @param bool $emailSharingEnabled
|
2015-08-12 18:05:20 +03:00
|
|
|
* @param array $shareTypes
|
2015-08-12 16:03:50 +03:00
|
|
|
* @param bool $shareWithGroupOnly
|
2015-08-26 13:30:07 +03:00
|
|
|
* @param bool $shareeEnumeration
|
2016-03-18 18:39:03 +03:00
|
|
|
* @param bool $allowGroupSharing
|
2018-07-04 11:39:13 +03:00
|
|
|
* @throws OCSBadRequestException
|
2015-08-12 16:03:50 +03:00
|
|
|
*/
|
2018-07-04 11:39:13 +03:00
|
|
|
public function testSearch($getData, $apiSetting, $enumSetting, $remoteSharingEnabled, $isRemoteGroupSharingEnabled, $emailSharingEnabled, $shareTypes, $shareWithGroupOnly, $shareeEnumeration, $allowGroupSharing) {
|
2016-08-26 11:52:06 +03:00
|
|
|
$search = isset($getData['search']) ? $getData['search'] : '';
|
2017-09-13 13:32:47 +03:00
|
|
|
$itemType = isset($getData['itemType']) ? $getData['itemType'] : 'irrelevant';
|
2016-08-26 11:52:06 +03:00
|
|
|
$page = isset($getData['page']) ? $getData['page'] : 1;
|
|
|
|
$perPage = isset($getData['perPage']) ? $getData['perPage'] : 200;
|
|
|
|
$shareType = isset($getData['shareType']) ? $getData['shareType'] : null;
|
2015-08-12 16:03:50 +03:00
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var IConfig|\PHPUnit\Framework\MockObject\MockObject $config */
|
2017-09-13 13:32:47 +03:00
|
|
|
$config = $this->createMock(IConfig::class);
|
2020-02-18 21:43:26 +03:00
|
|
|
$config->expects($this->exactly(1))
|
2015-08-12 16:03:50 +03:00
|
|
|
->method('getAppValue')
|
2019-02-21 23:36:14 +03:00
|
|
|
->with($this->anything(), $this->anything(), $this->anything())
|
2015-08-26 13:30:07 +03:00
|
|
|
->willReturnMap([
|
2019-02-21 23:36:14 +03:00
|
|
|
['files_sharing', 'lookupServerEnabled', 'yes', 'yes'],
|
2015-08-26 13:30:07 +03:00
|
|
|
]);
|
2015-08-12 16:03:50 +03:00
|
|
|
|
2016-11-10 16:16:35 +03:00
|
|
|
$this->shareManager->expects($itemType === 'file' || $itemType === 'folder' ? $this->once() : $this->never())
|
2016-03-18 18:39:03 +03:00
|
|
|
->method('allowGroupSharing')
|
|
|
|
->willReturn($allowGroupSharing);
|
|
|
|
|
2019-02-13 19:16:01 +03:00
|
|
|
/** @var string */
|
|
|
|
$uid = 'test123';
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var IRequest|\PHPUnit\Framework\MockObject\MockObject $request */
|
2017-09-13 13:32:47 +03:00
|
|
|
$request = $this->createMock(IRequest::class);
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var IURLGenerator|\PHPUnit\Framework\MockObject\MockObject $urlGenerator */
|
2017-09-13 13:32:47 +03:00
|
|
|
$urlGenerator = $this->createMock(IURLGenerator::class);
|
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var \PHPUnit\Framework\MockObject\MockObject|\OCA\Files_Sharing\Controller\ShareesAPIController $sharees */
|
2016-08-26 11:52:06 +03:00
|
|
|
$sharees = $this->getMockBuilder('\OCA\Files_Sharing\Controller\ShareesAPIController')
|
2015-08-12 16:03:50 +03:00
|
|
|
->setConstructorArgs([
|
2019-02-13 19:16:01 +03:00
|
|
|
$uid,
|
2016-08-26 11:52:06 +03:00
|
|
|
'files_sharing',
|
2017-09-13 13:32:47 +03:00
|
|
|
$request,
|
2015-08-12 16:03:50 +03:00
|
|
|
$config,
|
2017-09-13 13:32:47 +03:00
|
|
|
$urlGenerator,
|
2016-11-18 19:39:08 +03:00
|
|
|
$this->shareManager,
|
2017-09-13 13:32:47 +03:00
|
|
|
$this->collaboratorSearch
|
2015-08-12 16:03:50 +03:00
|
|
|
])
|
2018-07-04 11:39:13 +03:00
|
|
|
->setMethods(['isRemoteSharingAllowed', 'shareProviderExists', 'isRemoteGroupSharingAllowed'])
|
2015-08-12 16:03:50 +03:00
|
|
|
->getMock();
|
2017-09-13 13:32:47 +03:00
|
|
|
|
2020-01-05 17:51:16 +03:00
|
|
|
$expectedShareTypes = $shareTypes;
|
|
|
|
sort($expectedShareTypes);
|
|
|
|
|
2017-09-13 13:32:47 +03:00
|
|
|
$this->collaboratorSearch->expects($this->once())
|
|
|
|
->method('search')
|
2020-10-05 16:12:57 +03:00
|
|
|
->with($search, $expectedShareTypes, $this->anything(), $perPage, $perPage * ($page - 1))
|
2017-09-13 13:32:47 +03:00
|
|
|
->willReturn([[], false]);
|
|
|
|
|
2015-08-12 18:05:20 +03:00
|
|
|
$sharees->expects($this->any())
|
|
|
|
->method('isRemoteSharingAllowed')
|
|
|
|
->with($itemType)
|
|
|
|
->willReturn($remoteSharingEnabled);
|
2015-08-12 16:03:50 +03:00
|
|
|
|
2018-07-04 11:39:13 +03:00
|
|
|
|
|
|
|
$sharees->expects($this->any())
|
|
|
|
->method('isRemoteGroupSharingAllowed')
|
|
|
|
->with($itemType)
|
|
|
|
->willReturn($isRemoteGroupSharingEnabled);
|
|
|
|
|
|
|
|
|
2016-10-27 13:27:09 +03:00
|
|
|
$this->shareManager->expects($this->any())
|
|
|
|
->method('shareProviderExists')
|
2020-04-09 14:53:40 +03:00
|
|
|
->willReturnCallback(function ($shareType) use ($emailSharingEnabled) {
|
2020-06-24 19:11:20 +03:00
|
|
|
if ($shareType === IShare::TYPE_EMAIL) {
|
2018-08-24 19:20:04 +03:00
|
|
|
return $emailSharingEnabled;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
2020-03-26 00:21:27 +03:00
|
|
|
});
|
2016-10-27 13:27:09 +03:00
|
|
|
|
2016-10-24 14:16:05 +03:00
|
|
|
$this->assertInstanceOf(Http\DataResponse::class, $sharees->search($search, $itemType, $page, $perPage, $shareType));
|
2015-08-12 16:03:50 +03:00
|
|
|
}
|
|
|
|
|
2015-09-15 13:37:09 +03:00
|
|
|
public function dataSearchInvalid() {
|
|
|
|
return [
|
|
|
|
// Test invalid pagination
|
|
|
|
[[
|
|
|
|
'page' => 0,
|
2015-09-15 16:51:54 +03:00
|
|
|
], 'Invalid page'],
|
2015-09-15 13:37:09 +03:00
|
|
|
[[
|
|
|
|
'page' => '0',
|
2015-09-15 16:51:54 +03:00
|
|
|
], 'Invalid page'],
|
2015-09-15 13:37:09 +03:00
|
|
|
[[
|
|
|
|
'page' => -1,
|
2015-09-15 16:51:54 +03:00
|
|
|
], 'Invalid page'],
|
2015-09-15 13:37:09 +03:00
|
|
|
|
|
|
|
// Test invalid perPage
|
|
|
|
[[
|
|
|
|
'perPage' => 0,
|
2015-09-15 16:51:54 +03:00
|
|
|
], 'Invalid perPage argument'],
|
2015-09-15 13:37:09 +03:00
|
|
|
[[
|
|
|
|
'perPage' => '0',
|
2015-09-15 16:51:54 +03:00
|
|
|
], 'Invalid perPage argument'],
|
2015-09-15 13:37:09 +03:00
|
|
|
[[
|
|
|
|
'perPage' => -1,
|
2015-09-15 16:51:54 +03:00
|
|
|
], 'Invalid perPage argument'],
|
2015-09-15 13:37:09 +03:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider dataSearchInvalid
|
|
|
|
*
|
|
|
|
* @param array $getData
|
|
|
|
* @param string $message
|
|
|
|
*/
|
2015-09-15 16:51:54 +03:00
|
|
|
public function testSearchInvalid($getData, $message) {
|
2016-08-26 11:52:06 +03:00
|
|
|
$page = isset($getData['page']) ? $getData['page'] : 1;
|
|
|
|
$perPage = isset($getData['perPage']) ? $getData['perPage'] : 200;
|
2015-09-15 13:37:09 +03:00
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var IConfig|\PHPUnit\Framework\MockObject\MockObject $config */
|
2017-09-13 14:21:02 +03:00
|
|
|
$config = $this->createMock(IConfig::class);
|
2015-09-15 13:37:09 +03:00
|
|
|
$config->expects($this->never())
|
|
|
|
->method('getAppValue');
|
|
|
|
|
2019-02-13 19:16:01 +03:00
|
|
|
/** @var string */
|
|
|
|
$uid = 'test123';
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var IRequest|\PHPUnit\Framework\MockObject\MockObject $request */
|
2017-09-13 14:21:02 +03:00
|
|
|
$request = $this->createMock(IRequest::class);
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var IURLGenerator|\PHPUnit\Framework\MockObject\MockObject $urlGenerator */
|
2017-09-13 14:21:02 +03:00
|
|
|
$urlGenerator = $this->createMock(IURLGenerator::class);
|
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var \PHPUnit\Framework\MockObject\MockObject|\OCA\Files_Sharing\Controller\ShareesAPIController $sharees */
|
2016-08-26 11:52:06 +03:00
|
|
|
$sharees = $this->getMockBuilder('\OCA\Files_Sharing\Controller\ShareesAPIController')
|
2015-09-15 13:37:09 +03:00
|
|
|
->setConstructorArgs([
|
2019-02-13 19:16:01 +03:00
|
|
|
$uid,
|
2016-08-26 11:52:06 +03:00
|
|
|
'files_sharing',
|
2017-09-13 14:21:02 +03:00
|
|
|
$request,
|
2015-09-15 13:37:09 +03:00
|
|
|
$config,
|
2017-09-13 14:21:02 +03:00
|
|
|
$urlGenerator,
|
2016-11-18 19:39:08 +03:00
|
|
|
$this->shareManager,
|
2017-09-13 14:21:02 +03:00
|
|
|
$this->collaboratorSearch
|
2015-09-15 13:37:09 +03:00
|
|
|
])
|
2017-09-13 14:21:02 +03:00
|
|
|
->setMethods(['isRemoteSharingAllowed'])
|
2015-09-15 13:37:09 +03:00
|
|
|
->getMock();
|
|
|
|
$sharees->expects($this->never())
|
|
|
|
->method('isRemoteSharingAllowed');
|
|
|
|
|
2017-09-13 14:21:02 +03:00
|
|
|
$this->collaboratorSearch->expects($this->never())
|
|
|
|
->method('search');
|
|
|
|
|
2016-08-26 11:52:06 +03:00
|
|
|
try {
|
|
|
|
$sharees->search('', null, $page, $perPage, null);
|
|
|
|
$this->fail();
|
|
|
|
} catch (OCSBadRequestException $e) {
|
|
|
|
$this->assertEquals($message, $e->getMessage());
|
|
|
|
}
|
2015-09-15 13:37:09 +03:00
|
|
|
}
|
|
|
|
|
2015-08-12 18:05:20 +03:00
|
|
|
public function dataIsRemoteSharingAllowed() {
|
|
|
|
return [
|
|
|
|
['file', true],
|
|
|
|
['folder', true],
|
|
|
|
['', false],
|
|
|
|
['contacts', false],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider dataIsRemoteSharingAllowed
|
|
|
|
*
|
|
|
|
* @param string $itemType
|
|
|
|
* @param bool $expected
|
|
|
|
*/
|
|
|
|
public function testIsRemoteSharingAllowed($itemType, $expected) {
|
|
|
|
$this->assertSame($expected, $this->invokePrivate($this->sharees, 'isRemoteSharingAllowed', [$itemType]));
|
|
|
|
}
|
|
|
|
|
2020-01-05 17:51:16 +03:00
|
|
|
|
2017-09-13 15:32:19 +03:00
|
|
|
public function testSearchNoItemType() {
|
2019-11-27 17:27:18 +03:00
|
|
|
$this->expectException(\OCP\AppFramework\OCS\OCSBadRequestException::class);
|
|
|
|
$this->expectExceptionMessage('Missing itemType');
|
|
|
|
|
2017-09-13 17:21:23 +03:00
|
|
|
$this->sharees->search('', null, 1, 10, [], false);
|
2015-08-12 15:19:34 +03:00
|
|
|
}
|
|
|
|
|
2015-08-26 11:51:26 +03:00
|
|
|
public function dataGetPaginationLink() {
|
2015-08-12 15:19:34 +03:00
|
|
|
return [
|
2015-09-15 13:14:14 +03:00
|
|
|
[1, '/ocs/v1.php', ['perPage' => 2], '<?perPage=2&page=2>; rel="next"'],
|
|
|
|
[10, '/ocs/v2.php', ['perPage' => 2], '<?perPage=2&page=11>; rel="next"'],
|
2015-08-12 15:19:34 +03:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-08-26 11:51:26 +03:00
|
|
|
* @dataProvider dataGetPaginationLink
|
2015-08-12 15:19:34 +03:00
|
|
|
*
|
2015-08-26 11:51:26 +03:00
|
|
|
* @param int $page
|
|
|
|
* @param string $scriptName
|
|
|
|
* @param array $params
|
|
|
|
* @param array $expected
|
2015-08-17 13:43:20 +03:00
|
|
|
*/
|
2015-08-26 11:51:26 +03:00
|
|
|
public function testGetPaginationLink($page, $scriptName, $params, $expected) {
|
|
|
|
$this->request->expects($this->once())
|
|
|
|
->method('getScriptName')
|
|
|
|
->willReturn($scriptName);
|
2015-08-17 13:43:20 +03:00
|
|
|
|
2015-08-26 11:51:26 +03:00
|
|
|
$this->assertEquals($expected, $this->invokePrivate($this->sharees, 'getPaginationLink', [$page, $params]));
|
2015-08-17 13:43:20 +03:00
|
|
|
}
|
|
|
|
|
2015-08-26 11:51:26 +03:00
|
|
|
public function dataIsV2() {
|
2015-08-13 11:57:08 +03:00
|
|
|
return [
|
2015-08-26 11:51:26 +03:00
|
|
|
['/ocs/v1.php', false],
|
|
|
|
['/ocs/v2.php', true],
|
2015-08-13 11:57:08 +03:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-08-26 11:51:26 +03:00
|
|
|
* @dataProvider dataIsV2
|
2015-08-13 11:57:08 +03:00
|
|
|
*
|
2015-08-26 11:51:26 +03:00
|
|
|
* @param string $scriptName
|
|
|
|
* @param bool $expected
|
2015-08-13 11:57:08 +03:00
|
|
|
*/
|
2015-08-26 11:51:26 +03:00
|
|
|
public function testIsV2($scriptName, $expected) {
|
|
|
|
$this->request->expects($this->once())
|
|
|
|
->method('getScriptName')
|
|
|
|
->willReturn($scriptName);
|
|
|
|
|
|
|
|
$this->assertEquals($expected, $this->invokePrivate($this->sharees, 'isV2'));
|
2015-08-13 11:57:08 +03:00
|
|
|
}
|
2015-08-09 22:19:35 +03:00
|
|
|
}
|