nextcloud/apps/files_sharing/tests/Controller/ShareesAPIControllerTest.php

547 lines
16 KiB
PHP
Raw Normal View History

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.
*
2016-05-26 20:56:05 +03:00
* @author Björn Schießle <bjoern@schiessle.org>
2016-07-21 17:49:16 +03:00
* @author Joas Schilling <coding@schilljs.com>
* @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,
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
namespace OCA\Files_Sharing\Tests\Controller;
2015-08-09 22:19:35 +03:00
use OC\Federation\CloudIdManager;
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;
use OCP\AppFramework\OCS\OCSBadRequestException;
use OCP\Federation\ICloudIdManager;
use OCP\Http\Client\IClientService;
2015-08-26 11:51:26 +03:00
use OCP\Share;
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
*/
class ShareesAPIControllerTest extends TestCase {
/** @var ShareesAPIController */
2015-08-11 16:43:44 +03:00
protected $sharees;
2015-08-09 22:19:35 +03:00
2015-08-11 16:43:44 +03:00
/** @var \OCP\IUserManager|\PHPUnit_Framework_MockObject_MockObject */
protected $userManager;
2015-08-09 22:19:35 +03:00
2015-08-11 16:43:44 +03:00
/** @var \OCP\IGroupManager|\PHPUnit_Framework_MockObject_MockObject */
protected $groupManager;
2015-08-09 22:19:35 +03:00
2015-08-11 17:31:54 +03:00
/** @var \OCP\Contacts\IManager|\PHPUnit_Framework_MockObject_MockObject */
protected $contactsManager;
2015-08-11 16:43:44 +03:00
/** @var \OCP\IUserSession|\PHPUnit_Framework_MockObject_MockObject */
protected $session;
2015-08-09 22:19:35 +03:00
2015-08-26 11:51:26 +03:00
/** @var \OCP\IRequest|\PHPUnit_Framework_MockObject_MockObject */
protected $request;
/** @var \OCP\Share\IManager|\PHPUnit_Framework_MockObject_MockObject */
protected $shareManager;
/** @var IClientService|\PHPUnit_Framework_MockObject_MockObject */
private $clientService;
/** @var ICloudIdManager */
private $cloudIdManager;
2015-08-11 16:43:44 +03:00
protected function setUp() {
parent::setUp();
2015-08-09 22:19:35 +03:00
2015-08-11 16:43:44 +03:00
$this->userManager = $this->getMockBuilder('OCP\IUserManager')
->disableOriginalConstructor()
->getMock();
2015-08-09 22:19:35 +03:00
2015-08-11 16:43:44 +03:00
$this->groupManager = $this->getMockBuilder('OCP\IGroupManager')
->disableOriginalConstructor()
->getMock();
2015-08-09 22:19:35 +03:00
2015-08-11 17:31:54 +03:00
$this->contactsManager = $this->getMockBuilder('OCP\Contacts\IManager')
->disableOriginalConstructor()
->getMock();
2015-08-11 16:43:44 +03:00
$this->session = $this->getMockBuilder('OCP\IUserSession')
->disableOriginalConstructor()
->getMock();
2015-08-09 22:19:35 +03:00
2015-08-26 11:51:26 +03:00
$this->request = $this->getMockBuilder('OCP\IRequest')
->disableOriginalConstructor()
->getMock();
$this->shareManager = $this->getMockBuilder('OCP\Share\IManager')
->disableOriginalConstructor()
->getMock();
$this->clientService = $this->createMock(IClientService::class);
$this->cloudIdManager = new CloudIdManager();
$this->sharees = new ShareesAPIController(
'files_sharing',
$this->request,
2015-08-11 16:43:44 +03:00
$this->groupManager,
$this->userManager,
2015-08-11 17:31:54 +03:00
$this->contactsManager,
$this->getMockBuilder('OCP\IConfig')->disableOriginalConstructor()->getMock(),
2015-08-11 16:43:44 +03:00
$this->session,
2015-08-13 12:06:03 +03:00
$this->getMockBuilder('OCP\IURLGenerator')->disableOriginalConstructor()->getMock(),
$this->getMockBuilder('OCP\ILogger')->disableOriginalConstructor()->getMock(),
$this->shareManager,
$this->clientService,
$this->cloudIdManager
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() {
$noRemote = [Share::SHARE_TYPE_USER, Share::SHARE_TYPE_GROUP, Share::SHARE_TYPE_EMAIL];
$allTypes = [Share::SHARE_TYPE_USER, Share::SHARE_TYPE_GROUP, Share::SHARE_TYPE_REMOTE, Share::SHARE_TYPE_EMAIL];
2015-08-12 18:05:20 +03:00
2015-08-12 16:03:50 +03:00
return [
[[], '', 'yes', true, true, $noRemote, false, true, true],
2015-08-12 16:03:50 +03:00
// Test itemType
[[
'search' => '',
], '', 'yes', true, true, $noRemote, false, true, true],
2015-08-12 16:03:50 +03:00
[[
'search' => 'foobar',
], '', 'yes', true, true, $noRemote, false, true, true],
2015-08-12 16:03:50 +03:00
[[
'search' => 0,
], '', 'yes', true, true, $noRemote, false, true, true],
2015-08-12 16:03:50 +03:00
// Test itemType
[[
'itemType' => '',
], '', 'yes', true, true, $noRemote, false, true, true],
2015-08-12 16:03:50 +03:00
[[
'itemType' => 'folder',
], '', 'yes', true, true, $allTypes, false, true, true],
2015-08-12 16:03:50 +03:00
[[
'itemType' => 0,
], '', 'yes', true, true, $noRemote, false, true, true],
2015-08-12 16:03:50 +03:00
// Test shareType
[[
'itemType' => 'call',
], '', 'yes', true, true, $noRemote, false, true, true],
[[
'itemType' => 'folder',
], '', 'yes', true, true, $allTypes, false, true, true],
2015-08-12 16:03:50 +03:00
[[
'itemType' => 'folder',
2015-08-12 16:03:50 +03:00
'shareType' => 0,
], '', 'yes', true, false, [0], false, true, true],
2015-08-12 16:03:50 +03:00
[[
'itemType' => 'folder',
2015-08-12 16:03:50 +03:00
'shareType' => '0',
], '', 'yes', true, false, [0], false, true, true],
2015-08-12 16:03:50 +03:00
[[
'itemType' => 'folder',
2015-08-12 16:03:50 +03:00
'shareType' => 1,
], '', 'yes', true, false, [1], false, true, true],
2015-08-12 16:03:50 +03:00
[[
'itemType' => 'folder',
2015-08-12 18:05:20 +03:00
'shareType' => 12,
], '', 'yes', true, false, [], false, true, true],
2015-08-12 16:03:50 +03:00
[[
'itemType' => 'folder',
2015-08-12 16:03:50 +03:00
'shareType' => 'foobar',
], '', 'yes', true, true, $allTypes, false, true, true],
2015-08-12 18:05:20 +03:00
[[
'itemType' => 'folder',
2015-08-12 18:05:20 +03:00
'shareType' => [0, 1, 2],
], '', 'yes', false, false, [0, 1], false, true, true],
2015-08-12 18:05:20 +03:00
[[
'itemType' => 'folder',
2015-08-12 18:05:20 +03:00
'shareType' => [0, 1],
], '', 'yes', false, false, [0, 1], false, true, true],
2015-08-12 18:05:20 +03:00
[[
'itemType' => 'folder',
2015-08-12 18:05:20 +03:00
'shareType' => $allTypes,
], '', 'yes', true, true, $allTypes, false, true, true],
2015-08-12 18:05:20 +03:00
[[
'itemType' => 'folder',
2015-08-12 18:05:20 +03:00
'shareType' => $allTypes,
], '', 'yes', false, false, [0, 1], false, true, true],
[[
'itemType' => 'folder',
'shareType' => $allTypes,
], '', 'yes', true, false, [0, 6], false, true, false],
[[
'itemType' => 'folder',
'shareType' => $allTypes,
], '', 'yes', false, true, [0, 4], false, true, false],
2015-08-12 16:03:50 +03:00
// Test pagination
[[
'itemType' => 'folder',
2015-08-12 16:03:50 +03:00
'page' => 1,
], '', 'yes', true, true, $allTypes, false, true, true],
2015-08-12 16:03:50 +03:00
[[
'itemType' => 'folder',
2015-08-12 16:03:50 +03:00
'page' => 10,
], '', 'yes', 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
[[
'itemType' => 'folder',
2015-09-15 13:14:14 +03:00
'perPage' => 1,
], '', 'yes', true, true, $allTypes, false, true, true],
2015-08-12 16:03:50 +03:00
[[
'itemType' => 'folder',
2015-09-15 13:14:14 +03:00
'perPage' => 10,
], '', 'yes', true, true, $allTypes, false, true, true],
2015-08-12 16:03:50 +03:00
// Test $shareWithGroupOnly setting
[[
'itemType' => 'folder',
], 'no', 'yes', true, true, $allTypes, false, true, true],
[[
'itemType' => 'folder',
], 'yes', 'yes', true, true, $allTypes, true, true, true],
// Test $shareeEnumeration setting
[[
'itemType' => 'folder',
], 'no', 'yes', true, true, $allTypes, false, true, true],
[[
'itemType' => 'folder',
], 'no', 'no', true, true, $allTypes, false, false, true],
2015-08-12 16:03:50 +03:00
];
}
/**
* @dataProvider dataSearch
*
* @param array $getData
* @param string $apiSetting
* @param string $enumSetting
2015-08-12 18:05:20 +03:00
* @param bool $remoteSharingEnabled
* @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
* @param bool $shareeEnumeration
* @param bool $allowGroupSharing
2015-08-12 16:03:50 +03:00
*/
public function testSearch($getData, $apiSetting, $enumSetting, $remoteSharingEnabled, $emailSharingEnabled, $shareTypes, $shareWithGroupOnly, $shareeEnumeration, $allowGroupSharing) {
$search = isset($getData['search']) ? $getData['search'] : '';
$itemType = isset($getData['itemType']) ? $getData['itemType'] : 'irrelevant';
$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
/** @var IConfig|\PHPUnit_Framework_MockObject_MockObject $config */
$config = $this->createMock(IConfig::class);
$config->expects($this->exactly(2))
2015-08-12 16:03:50 +03:00
->method('getAppValue')
->with('core', $this->anything(), $this->anything())
->willReturnMap([
['core', 'shareapi_only_share_with_group_members', 'no', $apiSetting],
['core', 'shareapi_allow_share_dialog_user_enumeration', 'yes', $enumSetting],
]);
2015-08-12 16:03:50 +03:00
$this->shareManager->expects($itemType === 'file' || $itemType === 'folder' ? $this->once() : $this->never())
->method('allowGroupSharing')
->willReturn($allowGroupSharing);
/** @var IRequest|\PHPUnit_Framework_MockObject_MockObject $request */
$request = $this->createMock(IRequest::class);
/** @var IURLGenerator|\PHPUnit_Framework_MockObject_MockObject $urlGenerator */
$urlGenerator = $this->createMock(IURLGenerator::class);
/** @var \PHPUnit_Framework_MockObject_MockObject|\OCA\Files_Sharing\Controller\ShareesAPIController $sharees */
$sharees = $this->getMockBuilder('\OCA\Files_Sharing\Controller\ShareesAPIController')
2015-08-12 16:03:50 +03:00
->setConstructorArgs([
'files_sharing',
$request,
2015-08-12 16:03:50 +03:00
$config,
$urlGenerator,
$this->shareManager,
$this->collaboratorSearch
2015-08-12 16:03:50 +03:00
])
->setMethods(['isRemoteSharingAllowed', 'shareProviderExists'])
2015-08-12 16:03:50 +03:00
->getMock();
$this->collaboratorSearch->expects($this->once())
->method('search')
->with($search, $shareTypes, $this->anything(), $perPage, $this->invokePrivate($sharees, 'offset'))
->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
$this->shareManager->expects($this->any())
->method('shareProviderExists')
->with(\OCP\Share::SHARE_TYPE_EMAIL)
->willReturn($emailSharingEnabled);
$this->assertInstanceOf(Http\DataResponse::class, $sharees->search($search, $itemType, $page, $perPage, $shareType));
2015-08-12 16:03:50 +03:00
2015-08-26 11:51:26 +03:00
$this->assertSame($shareWithGroupOnly, $this->invokePrivate($sharees, 'shareWithGroupOnly'));
$this->assertSame($shareeEnumeration, $this->invokePrivate($sharees, 'shareeEnumeration'));
2015-08-12 16:03:50 +03:00
}
public function dataSearchInvalid() {
return [
// Test invalid pagination
[[
'page' => 0,
2015-09-15 16:51:54 +03:00
], 'Invalid page'],
[[
'page' => '0',
2015-09-15 16:51:54 +03:00
], 'Invalid page'],
[[
'page' => -1,
2015-09-15 16:51:54 +03:00
], 'Invalid page'],
// Test invalid perPage
[[
'perPage' => 0,
2015-09-15 16:51:54 +03:00
], 'Invalid perPage argument'],
[[
'perPage' => '0',
2015-09-15 16:51:54 +03:00
], 'Invalid perPage argument'],
[[
'perPage' => -1,
2015-09-15 16:51:54 +03:00
], 'Invalid perPage argument'],
];
}
/**
* @dataProvider dataSearchInvalid
*
* @param array $getData
* @param string $message
*/
2015-09-15 16:51:54 +03:00
public function testSearchInvalid($getData, $message) {
$page = isset($getData['page']) ? $getData['page'] : 1;
$perPage = isset($getData['perPage']) ? $getData['perPage'] : 200;
/** @var IConfig|\PHPUnit_Framework_MockObject_MockObject $config */
$config = $this->createMock(IConfig::class);
$config->expects($this->never())
->method('getAppValue');
/** @var IRequest|\PHPUnit_Framework_MockObject_MockObject $request */
$request = $this->createMock(IRequest::class);
/** @var IURLGenerator|\PHPUnit_Framework_MockObject_MockObject $urlGenerator */
$urlGenerator = $this->createMock(IURLGenerator::class);
/** @var \PHPUnit_Framework_MockObject_MockObject|\OCA\Files_Sharing\Controller\ShareesAPIController $sharees */
$sharees = $this->getMockBuilder('\OCA\Files_Sharing\Controller\ShareesAPIController')
->setConstructorArgs([
'files_sharing',
$request,
$config,
$urlGenerator,
$this->shareManager,
$this->collaboratorSearch
])
->setMethods(['isRemoteSharingAllowed'])
->getMock();
$sharees->expects($this->never())
->method('isRemoteSharingAllowed');
$this->collaboratorSearch->expects($this->never())
->method('search');
try {
$sharees->search('', null, $page, $perPage, null);
$this->fail();
} catch (OCSBadRequestException $e) {
$this->assertEquals($message, $e->getMessage());
}
}
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]));
}
/**
* @expectedException \OCP\AppFramework\OCS\OCSBadRequestException
* @expectedExceptionMessage Missing itemType
*/
public function testSearchShareesNoItemType() {
$this->invokePrivate($this->sharees, 'searchSharees', ['', null, [], [], 0, 0, false]);
}
2015-08-26 11:51:26 +03:00
public function dataGetPaginationLink() {
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-26 11:51:26 +03:00
* @dataProvider dataGetPaginationLink
*
2015-08-26 11:51:26 +03:00
* @param int $page
* @param string $scriptName
* @param array $params
* @param array $expected
*/
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-26 11:51:26 +03:00
$this->assertEquals($expected, $this->invokePrivate($this->sharees, 'getPaginationLink', [$page, $params]));
}
2015-08-26 11:51:26 +03:00
public function dataIsV2() {
return [
2015-08-26 11:51:26 +03:00
['/ocs/v1.php', false],
['/ocs/v2.php', true],
];
}
/**
2015-08-26 11:51:26 +03:00
* @dataProvider dataIsV2
*
2015-08-26 11:51:26 +03:00
* @param string $scriptName
* @param bool $expected
*/
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'));
}
2016-02-12 17:27:39 +03:00
/**
* @dataProvider dataTestSplitUserRemote
*
* @param string $remote
* @param string $expectedUser
* @param string $expectedUrl
*/
public function testSplitUserRemote($remote, $expectedUser, $expectedUrl) {
list($remoteUser, $remoteUrl) = $this->sharees->splitUserRemote($remote);
$this->assertSame($expectedUser, $remoteUser);
$this->assertSame($expectedUrl, $remoteUrl);
}
public function dataTestSplitUserRemote() {
$userPrefix = ['user@name', 'username'];
$protocols = ['', 'http://', 'https://'];
$remotes = [
'localhost',
'local.host',
'dev.local.host',
'dev.local.host/path',
'dev.local.host/at@inpath',
'127.0.0.1',
'::1',
'::192.0.2.128',
'::192.0.2.128/at@inpath',
];
$testCases = [];
foreach ($userPrefix as $user) {
foreach ($remotes as $remote) {
foreach ($protocols as $protocol) {
$baseUrl = $user . '@' . $protocol . $remote;
$testCases[] = [$baseUrl, $user, $protocol . $remote];
$testCases[] = [$baseUrl . '/', $user, $protocol . $remote];
$testCases[] = [$baseUrl . '/index.php', $user, $protocol . $remote];
$testCases[] = [$baseUrl . '/index.php/s/token', $user, $protocol . $remote];
}
}
}
return $testCases;
}
public function dataTestSplitUserRemoteError() {
return array(
// Invalid path
array('user@'),
// Invalid user
array('@server'),
array('us/er@server'),
array('us:er@server'),
// Invalid splitting
array('user'),
array(''),
array('us/erserver'),
array('us:erserver'),
);
}
/**
* @dataProvider dataTestSplitUserRemoteError
*
* @param string $id
* @expectedException \Exception
*/
public function testSplitUserRemoteError($id) {
$this->sharees->splitUserRemote($id);
}
/**
* @dataProvider dataTestFixRemoteUrl
*
* @param string $url
* @param string $expected
*/
public function testFixRemoteUrl($url, $expected) {
$this->assertSame($expected,
$this->invokePrivate($this->sharees, 'fixRemoteURL', [$url])
);
}
public function dataTestFixRemoteUrl() {
return [
['http://localhost', 'http://localhost'],
['http://localhost/', 'http://localhost'],
['http://localhost/index.php', 'http://localhost'],
['http://localhost/index.php/s/AShareToken', 'http://localhost'],
];
}
2015-08-09 22:19:35 +03:00
}