nextcloud/apps/files_sharing/tests/api/sharees.php

787 lines
25 KiB
PHP
Raw Normal View History

2015-08-09 22:19:35 +03:00
<?php
2015-08-11 16:43:44 +03:00
/**
* @author Joas Schilling <nickvergessen@owncloud.com>
*
* @copyright Copyright (c) 2015, ownCloud, Inc.
* @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\API;
2015-08-09 22:19:35 +03:00
use OCA\Files_Sharing\API\Sharees;
use OCA\Files_sharing\Tests\TestCase;
class ShareesTest extends TestCase {
2015-08-11 16:43:44 +03:00
/** @var Sharees */
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-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-11 16:43:44 +03:00
$this->sharees = new Sharees(
$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,
$this->getMockBuilder('OCP\IURLGenerator')->disableOriginalConstructor()->getMock()
);
2015-08-09 22:19:35 +03:00
}
2015-08-11 16:43:44 +03:00
protected function getUserMock($uid, $displayName) {
$user = $this->getMockBuilder('OCP\IUser')
->disableOriginalConstructor()
->getMock();
2015-08-09 22:19:35 +03:00
2015-08-11 16:43:44 +03:00
$user->expects($this->any())
->method('getUID')
->willReturn($uid);
2015-08-09 22:19:35 +03:00
2015-08-11 16:43:44 +03:00
$user->expects($this->any())
->method('getDisplayName')
->willReturn($displayName);
2015-08-09 22:19:35 +03:00
2015-08-11 16:43:44 +03:00
return $user;
2015-08-09 22:19:35 +03:00
}
2015-08-11 17:22:05 +03:00
protected function getGroupMock($gid) {
$group = $this->getMockBuilder('OCP\IGroup')
->disableOriginalConstructor()
->getMock();
$group->expects($this->any())
->method('getGID')
->willReturn($gid);
return $group;
}
2015-08-11 16:43:44 +03:00
public function dataGetUsers() {
return [
['test', false, [], [], []],
['test', true, [], [], []],
[
'test',
false,
[],
[
$this->getUserMock('test1', 'Test One'),
],
[
['label' => 'Test One', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
]
],
[
'test',
false,
[],
[
$this->getUserMock('test1', 'Test One'),
$this->getUserMock('test2', 'Test Two'),
],
[
['label' => 'Test One', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
['label' => 'Test Two', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_USER, 'shareWith' => 'test2']],
]
],
[
'test',
true,
['abc', 'xyz'],
[
['abc', 'test', -1, 0, ['test1' => 'Test One']],
['xyz', 'test', -1, 0, []],
],
[
['label' => 'Test One', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
]
],
[
'test',
true,
['abc', 'xyz'],
[
['abc', 'test', -1, 0, [
'test1' => 'Test One',
'test2' => 'Test Two',
]],
['xyz', 'test', -1, 0, [
'test1' => 'Test One',
'test2' => 'Test Two',
]],
],
[
['label' => 'Test One', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
['label' => 'Test Two', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_USER, 'shareWith' => 'test2']],
]
],
[
'test',
true,
['abc', 'xyz'],
[
['abc', 'test', -1, 0, [
'test1' => 'Test One',
]],
['xyz', 'test', -1, 0, [
'test2' => 'Test Two',
]],
],
[
['label' => 'Test One', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
['label' => 'Test Two', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_USER, 'shareWith' => 'test2']],
]
],
];
2015-08-09 22:19:35 +03:00
}
2015-08-11 16:43:44 +03:00
/**
* @dataProvider dataGetUsers
*
* @param string $searchTerm
* @param bool $shareWithGroupOnly
* @param array $groupResponse
* @param array $userResponse
* @param array $expected
*/
public function testGetUsers($searchTerm, $shareWithGroupOnly, $groupResponse, $userResponse, $expected) {
if (!$shareWithGroupOnly) {
$this->userManager->expects($this->once())
->method('searchDisplayName')
->with($searchTerm)
->willReturn($userResponse);
} else {
2015-08-11 17:22:05 +03:00
$user = $this->getUserMock('admin', 'Administrator');
2015-08-11 16:43:44 +03:00
$this->session->expects($this->any())
->method('getUser')
2015-08-11 17:22:05 +03:00
->willReturn($user);
2015-08-11 16:43:44 +03:00
$this->groupManager->expects($this->once())
->method('getUserGroupIds')
2015-08-11 17:22:05 +03:00
->with($user)
2015-08-11 16:43:44 +03:00
->willReturn($groupResponse);
$this->groupManager->expects($this->exactly(sizeof($groupResponse)))
->method('displayNamesInGroup')
->with($this->anything(), $searchTerm)
->willReturnMap($userResponse);
}
$users = $this->invokePrivate($this->sharees, 'getUsers', [$searchTerm, $shareWithGroupOnly]);
$this->assertEquals($expected, $users);
2015-08-09 22:19:35 +03:00
}
2015-08-11 17:22:05 +03:00
public function dataGetGroups() {
return [
['test', false, [], [], []],
[
'test', false,
[$this->getGroupMock('test1')],
[],
[['label' => 'test1', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_GROUP, 'shareWith' => 'test1']]],
],
['test', true, [], [], []],
[
'test', true,
[
$this->getGroupMock('test1'),
$this->getGroupMock('test2'),
],
[$this->getGroupMock('test1')],
[['label' => 'test1', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_GROUP, 'shareWith' => 'test1']]],
],
];
}
/**
* @dataProvider dataGetGroups
*
* @param string $searchTerm
* @param bool $shareWithGroupOnly
* @param array $groupResponse
* @param array $userGroupsResponse
* @param array $expected
*/
public function testGetGroups($searchTerm, $shareWithGroupOnly, $groupResponse, $userGroupsResponse, $expected) {
$this->groupManager->expects($this->once())
->method('search')
->with($searchTerm)
->willReturn($groupResponse);
if ($shareWithGroupOnly) {
$user = $this->getUserMock('admin', 'Administrator');
$this->session->expects($this->any())
->method('getUser')
->willReturn($user);
$numGetUserGroupsCalls = empty($groupResponse) ? 0 : 1;
$this->groupManager->expects($this->exactly($numGetUserGroupsCalls))
->method('getUserGroups')
->with($user)
->willReturn($userGroupsResponse);
}
$users = $this->invokePrivate($this->sharees, 'getGroups', [$searchTerm, $shareWithGroupOnly]);
$this->assertEquals($expected, $users);
}
2015-08-11 17:31:54 +03:00
public function dataGetRemote() {
return [
['test', [], []],
[
'test@remote',
[],
[
['label' => 'test@remote', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_REMOTE, 'shareWith' => 'test@remote']],
],
],
[
'test',
[
[
'FN' => 'User3 @ Localhost',
],
[
'FN' => 'User2 @ Localhost',
'CLOUD' => [
],
],
[
'FN' => 'User @ Localhost',
'CLOUD' => [
'username@localhost',
],
],
],
[
['label' => 'User @ Localhost (username@localhost)', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_REMOTE, 'shareWith' => 'username@localhost']],
],
],
[
'test@remote',
[
[
'FN' => 'User3 @ Localhost',
],
[
'FN' => 'User2 @ Localhost',
'CLOUD' => [
],
],
[
'FN' => 'User @ Localhost',
'CLOUD' => [
'username@localhost',
],
],
],
[
['label' => 'test@remote', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_REMOTE, 'shareWith' => 'test@remote']],
['label' => 'User @ Localhost (username@localhost)', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_REMOTE, 'shareWith' => 'username@localhost']],
],
],
];
}
/**
* @dataProvider dataGetRemote
*
* @param string $searchTerm
* @param array $contacts
* @param array $expected
*/
public function testGetRemote($searchTerm, $contacts, $expected) {
$this->contactsManager->expects($this->any())
->method('search')
->with($searchTerm, ['CLOUD', 'FN'])
->willReturn($contacts);
$users = $this->invokePrivate($this->sharees, 'getRemote', [$searchTerm]);
$this->assertEquals($expected, $users);
}
2015-08-12 16:03:50 +03:00
public function dataSearch() {
2015-08-12 18:05:20 +03:00
$allTypes = [\OCP\Share::SHARE_TYPE_USER, \OCP\Share::SHARE_TYPE_GROUP, \OCP\Share::SHARE_TYPE_REMOTE];
2015-08-12 16:03:50 +03:00
return [
2015-08-12 18:05:20 +03:00
[[], '', true, '', null, [], $allTypes, 1, 200, false],
2015-08-12 16:03:50 +03:00
// Test itemType
[[
'search' => '',
2015-08-12 18:05:20 +03:00
], '', true, '', null, [], $allTypes, 1, 200, false],
2015-08-12 16:03:50 +03:00
[[
'search' => 'foobar',
2015-08-12 18:05:20 +03:00
], '', true, 'foobar', null, [], $allTypes, 1, 200, false],
2015-08-12 16:03:50 +03:00
[[
'search' => 0,
2015-08-12 18:05:20 +03:00
], '', true, '0', null, [], $allTypes, 1, 200, false],
2015-08-12 16:03:50 +03:00
// Test itemType
[[
'itemType' => '',
2015-08-12 18:05:20 +03:00
], '', true, '', '', [], $allTypes, 1, 200, false],
2015-08-12 16:03:50 +03:00
[[
'itemType' => 'folder',
2015-08-12 18:05:20 +03:00
], '', true, '', 'folder', [], $allTypes, 1, 200, false],
2015-08-12 16:03:50 +03:00
[[
'itemType' => 0,
2015-08-12 18:05:20 +03:00
], '', true, '', '0', [], $allTypes, 1, 200, false],
2015-08-12 16:03:50 +03:00
// Test existingShares
[[
'existingShares' => [],
2015-08-12 18:05:20 +03:00
], '', true, '', null, [], $allTypes, 1, 200, false],
2015-08-12 16:03:50 +03:00
[[
'existingShares' => [0 => ['test'], 1 => ['foobar']],
2015-08-12 18:05:20 +03:00
], '', true, '', null, [0 => ['test'], 1 => ['foobar']], $allTypes, 1, 200, false],
2015-08-12 16:03:50 +03:00
// Test shareType
[[
2015-08-12 18:05:20 +03:00
], '', true, '', null, [], $allTypes, 1, 200, false],
2015-08-12 16:03:50 +03:00
[[
'shareType' => 0,
2015-08-12 18:05:20 +03:00
], '', true, '', null, [], [0], 1, 200, false],
2015-08-12 16:03:50 +03:00
[[
'shareType' => '0',
2015-08-12 18:05:20 +03:00
], '', true, '', null, [], [0], 1, 200, false],
2015-08-12 16:03:50 +03:00
[[
'shareType' => 1,
2015-08-12 18:05:20 +03:00
], '', true, '', null, [], [1], 1, 200, false],
2015-08-12 16:03:50 +03:00
[[
2015-08-12 18:05:20 +03:00
'shareType' => 12,
], '', true, '', null, [], [], 1, 200, false],
2015-08-12 16:03:50 +03:00
[[
'shareType' => 'foobar',
2015-08-12 18:05:20 +03:00
], '', true, '', null, [], $allTypes, 1, 200, false],
[[
'shareType' => [0, 1, 2],
], '', true, '', null, [], [0, 1], 1, 200, false],
[[
'shareType' => [0, 1],
], '', true, '', null, [], [0, 1], 1, 200, false],
[[
'shareType' => $allTypes,
], '', true, '', null, [], $allTypes, 1, 200, false],
[[
'shareType' => $allTypes,
], '', false, '', null, [], [0, 1], 1, 200, false],
2015-08-12 16:03:50 +03:00
// Test pagination
[[
'page' => 0,
2015-08-12 18:05:20 +03:00
], '', true, '', null, [], $allTypes, 1, 200, false],
2015-08-12 16:03:50 +03:00
[[
'page' => '0',
2015-08-12 18:05:20 +03:00
], '', true, '', null, [], $allTypes, 1, 200, false],
[[
'page' => -1,
], '', true, '', null, [], $allTypes, 1, 200, false],
2015-08-12 16:03:50 +03:00
[[
'page' => 1,
2015-08-12 18:05:20 +03:00
], '', true, '', null, [], $allTypes, 1, 200, false],
2015-08-12 16:03:50 +03:00
[[
'page' => 10,
2015-08-12 18:05:20 +03:00
], '', true, '', null, [], $allTypes, 10, 200, false],
2015-08-12 16:03:50 +03:00
// Test limit
[[
'limit' => 0,
2015-08-12 18:05:20 +03:00
], '', true, '', null, [], $allTypes, 1, 200, false],
2015-08-12 16:03:50 +03:00
[[
'limit' => '0',
2015-08-12 18:05:20 +03:00
], '', true, '', null, [], $allTypes, 1, 200, false],
[[
'limit' => -1,
], '', true, '', null, [], $allTypes, 1, 1, false],
2015-08-12 16:03:50 +03:00
[[
'limit' => 1,
2015-08-12 18:05:20 +03:00
], '', true, '', null, [], $allTypes, 1, 1, false],
2015-08-12 16:03:50 +03:00
[[
'limit' => 10,
2015-08-12 18:05:20 +03:00
], '', true, '', null, [], $allTypes, 1, 10, false],
2015-08-12 16:03:50 +03:00
// Test $shareWithGroupOnly setting
2015-08-12 18:05:20 +03:00
[[], 'no', true, '', null, [], $allTypes, 1, 200, false],
[[], 'yes', true, '', null, [], $allTypes, 1, 200, true],
2015-08-12 16:03:50 +03:00
];
}
/**
* @dataProvider dataSearch
*
* @param array $getData
* @param string $apiSetting
2015-08-12 18:05:20 +03:00
* @param bool $remoteSharingEnabled
2015-08-12 16:03:50 +03:00
* @param string $search
* @param string $itemType
* @param array $existingShares
2015-08-12 18:05:20 +03:00
* @param array $shareTypes
2015-08-12 16:03:50 +03:00
* @param int $page
* @param int $perPage
* @param bool $shareWithGroupOnly
*/
2015-08-12 18:05:20 +03:00
public function testSearch($getData, $apiSetting, $remoteSharingEnabled, $search, $itemType, $existingShares, $shareTypes, $page, $perPage, $shareWithGroupOnly) {
2015-08-12 16:03:50 +03:00
$oldGet = $_GET;
$_GET = $getData;
$config = $this->getMockBuilder('OCP\IConfig')
->disableOriginalConstructor()
->getMock();
$config->expects($this->once())
->method('getAppValue')
->with('core', 'shareapi_only_share_with_group_members', 'no')
->willReturn($apiSetting);
$sharees = $this->getMockBuilder('\OCA\Files_Sharing\API\Sharees')
->setConstructorArgs([
$this->groupManager,
$this->userManager,
$this->contactsManager,
$config,
$this->session,
$this->getMockBuilder('OCP\IURLGenerator')->disableOriginalConstructor()->getMock()
])
2015-08-12 18:05:20 +03:00
->setMethods(array('searchSharees', 'isRemoteSharingAllowed'))
2015-08-12 16:03:50 +03:00
->getMock();
$sharees->expects($this->once())
->method('searchSharees')
2015-08-12 18:05:20 +03:00
->with($search, $itemType, $existingShares, $shareTypes, $page, $perPage, $shareWithGroupOnly)
2015-08-12 16:03:50 +03:00
->willReturnCallback(function
2015-08-12 18:05:20 +03:00
($isearch, $iitemType, $iexistingShares, $ishareTypes, $ipage, $iperPage, $ishareWithGroupOnly)
use ($search, $itemType, $existingShares, $shareTypes, $page, $perPage, $shareWithGroupOnly) {
2015-08-12 16:03:50 +03:00
// We are doing strict comparisons here, so we can differ 0/'' and null on shareType/itemType
$this->assertSame($search, $isearch);
$this->assertSame($itemType, $iitemType);
$this->assertSame($existingShares, $iexistingShares);
2015-08-12 18:05:20 +03:00
$this->assertSame($shareTypes, $ishareTypes);
2015-08-12 16:03:50 +03:00
$this->assertSame($page, $ipage);
$this->assertSame($perPage, $iperPage);
$this->assertSame($shareWithGroupOnly, $ishareWithGroupOnly);
return new \OC_OCS_Result([]);
});
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
/** @var \PHPUnit_Framework_MockObject_MockObject|\OCA\Files_Sharing\API\Sharees $sharees */
$this->assertInstanceOf('\OC_OCS_Result', $sharees->search());
$_GET = $oldGet;
}
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]));
}
public function dataSearchSharees() {
return [
2015-08-12 18:05:20 +03:00
['test', 'folder', [], [\OCP\Share::SHARE_TYPE_USER, \OCP\Share::SHARE_TYPE_GROUP, \OCP\Share::SHARE_TYPE_REMOTE], 1, 2, false, [], [], [], [], 0, false],
['test', 'folder', [0 => ['test1'], 1 => ['test2 group']], [\OCP\Share::SHARE_TYPE_USER, \OCP\Share::SHARE_TYPE_GROUP, \OCP\Share::SHARE_TYPE_REMOTE], 1, 2, false, [], [], [], [], 0, false],
// First page with 2 of 3 results
[
2015-08-12 18:05:20 +03:00
'test', 'folder', [], [\OCP\Share::SHARE_TYPE_USER, \OCP\Share::SHARE_TYPE_GROUP, \OCP\Share::SHARE_TYPE_REMOTE], 1, 2, false, [
['label' => 'test One', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
], [
['label' => 'testgroup1', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_GROUP, 'shareWith' => 'testgroup1']],
], [
['label' => 'testz@remote', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_REMOTE, 'shareWith' => 'testz@remote']],
], [
['label' => 'test One', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
['label' => 'testgroup1', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_GROUP, 'shareWith' => 'testgroup1']],
], 3, true,
],
// Second page with the 3rd result
[
2015-08-12 18:05:20 +03:00
'test', 'folder', [], [\OCP\Share::SHARE_TYPE_USER, \OCP\Share::SHARE_TYPE_GROUP, \OCP\Share::SHARE_TYPE_REMOTE], 2, 2, false, [
['label' => 'test One', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
], [
['label' => 'testgroup1', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_GROUP, 'shareWith' => 'testgroup1']],
], [
['label' => 'testz@remote', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_REMOTE, 'shareWith' => 'testz@remote']],
], [
['label' => 'testz@remote', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_REMOTE, 'shareWith' => 'testz@remote']],
], 3, false,
],
2015-08-12 18:05:20 +03:00
// No groups requested
[
'test', 'folder', [], [\OCP\Share::SHARE_TYPE_USER, \OCP\Share::SHARE_TYPE_REMOTE], 1, 2, false, [
['label' => 'test One', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
], null, [
['label' => 'testz@remote', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_REMOTE, 'shareWith' => 'testz@remote']],
], [
['label' => 'test One', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
['label' => 'testz@remote', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_REMOTE, 'shareWith' => 'testz@remote']],
], 2, false,
],
// Ingnoring already shared user
[
2015-08-12 18:05:20 +03:00
'test', 'folder', [\OCP\Share::SHARE_TYPE_USER => ['test1']], [\OCP\Share::SHARE_TYPE_USER, \OCP\Share::SHARE_TYPE_GROUP, \OCP\Share::SHARE_TYPE_REMOTE], 1, 2, false, [
['label' => 'test One', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
], [
['label' => 'testgroup1', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_GROUP, 'shareWith' => 'testgroup1']],
], [
['label' => 'testz@remote', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_REMOTE, 'shareWith' => 'testz@remote']],
], [
['label' => 'testgroup1', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_GROUP, 'shareWith' => 'testgroup1']],
['label' => 'testz@remote', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_REMOTE, 'shareWith' => 'testz@remote']],
], 2, false,
],
// Share type restricted to user - Only one user
[
2015-08-12 18:05:20 +03:00
'test', 'folder', [], [\OCP\Share::SHARE_TYPE_USER], 1, 2, false, [
['label' => 'test One', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
], null, null, [
['label' => 'test One', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
], 1, false,
],
// Share type restricted to user - Multipage result
[
2015-08-12 18:05:20 +03:00
'test', 'folder', [], [\OCP\Share::SHARE_TYPE_USER], 1, 2, false, [
['label' => 'test 1', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
['label' => 'test 2', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_USER, 'shareWith' => 'test2']],
['label' => 'test 3', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_USER, 'shareWith' => 'test3']],
], null, null, [
['label' => 'test 1', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
['label' => 'test 2', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_USER, 'shareWith' => 'test2']],
], 3, true,
],
// Share type restricted to user - Only user already shared
[
2015-08-12 18:05:20 +03:00
'test', 'folder', [\OCP\Share::SHARE_TYPE_USER => ['test1']], [\OCP\Share::SHARE_TYPE_USER], 1, 2, false, [
['label' => 'test One', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
], null, null, [], 0, false,
],
];
}
/**
* @dataProvider dataSearchSharees
*
* @param string $searchTerm
* @param string $itemType
* @param array $existingShares
2015-08-12 18:05:20 +03:00
* @param array $shareTypes
* @param int $page
* @param int $perPage
* @param bool $shareWithGroupOnly
* @param array $expected
*/
2015-08-12 18:05:20 +03:00
public function testSearchSharees($searchTerm, $itemType, array $existingShares, array $shareTypes, $page, $perPage, $shareWithGroupOnly,
$mockedUserResult, $mockedGroupsResult, $mockedRemotesResult, $expected, $totalItems, $nextLink) {
/** @var \PHPUnit_Framework_MockObject_MockObject|\OCA\Files_Sharing\API\Sharees $sharees */
$sharees = $this->getMockBuilder('\OCA\Files_Sharing\API\Sharees')
->setConstructorArgs([
$this->groupManager,
$this->userManager,
$this->contactsManager,
$this->getMockBuilder('OCP\IConfig')->disableOriginalConstructor()->getMock(),
$this->session,
$this->getMockBuilder('OCP\IURLGenerator')->disableOriginalConstructor()->getMock()
])
->setMethods(array('getUsers', 'getGroups', 'getRemote'))
->getMock();
$sharees->expects(($mockedUserResult === null) ? $this->never() : $this->once())
->method('getUsers')
->with($searchTerm, $shareWithGroupOnly)
->willReturn($mockedUserResult);
$sharees->expects(($mockedGroupsResult === null) ? $this->never() : $this->once())
->method('getGroups')
->with($searchTerm, $shareWithGroupOnly)
->willReturn($mockedGroupsResult);
$sharees->expects(($mockedRemotesResult === null) ? $this->never() : $this->once())
->method('getRemote')
->with($searchTerm)
->willReturn($mockedRemotesResult);
/** @var \OC_OCS_Result $ocs */
2015-08-12 18:05:20 +03:00
$ocs = $this->invokePrivate($sharees, 'searchSharees', [$searchTerm, $itemType, $existingShares, $shareTypes, $page, $perPage, $shareWithGroupOnly]);
2015-08-12 16:03:50 +03:00
$this->assertInstanceOf('\OC_OCS_Result', $ocs);
$this->assertEquals($expected, $ocs->getData());
// Check number of total results
$meta = $ocs->getMeta();
$this->assertArrayHasKey('totalitems', $meta);
$this->assertSame($totalItems, $meta['totalitems']);
// Check if next link is set
if ($nextLink) {
$headers = $ocs->getHeaders();
$this->assertArrayHasKey('Link', $headers);
$this->assertStringStartsWith('<', $headers['Link']);
$this->assertStringEndsWith('"', $headers['Link']);
}
}
public function testSearchShareesNoItemType() {
/** @var \OC_OCS_Result $ocs */
2015-08-12 18:05:20 +03:00
$ocs = $this->invokePrivate($this->sharees, 'searchSharees', ['', null, [], [], 0, 0, false]);
2015-08-12 16:03:50 +03:00
$this->assertInstanceOf('\OC_OCS_Result', $ocs);
$this->assertSame(400, $ocs->getStatusCode(), 'Expected status code 400');
$this->assertSame([], $ocs->getData(), 'Expected that no data is send');
$meta = $ocs->getMeta();
$this->assertNotEmpty($meta);
$this->assertArrayHasKey('message', $meta);
$this->assertSame('missing itemType', $meta['message']);
}
public function dataFilterSharees() {
return [
[[], [], []],
[
[
['label' => 'Test One', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
],
[],
[
['label' => 'Test One', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
],
],
[
[
['label' => 'Test One', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
['label' => 'Test Two', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_USER, 'shareWith' => 'test2']],
],
['test1'],
[
1 => ['label' => 'Test Two', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_USER, 'shareWith' => 'test2']],
],
],
[
[
['label' => 'Test One', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
['label' => 'Test Two', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_USER, 'shareWith' => 'test2']],
],
['test2'],
[
0 => ['label' => 'Test One', 'value' => ['shareType' => \OCP\Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
],
],
];
}
/**
* @dataProvider dataFilterSharees
*
* @param array $potentialSharees
* @param array $existingSharees
* @param array $expectedSharees
*/
public function testFilterSharees($potentialSharees, $existingSharees, $expectedSharees) {
$this->assertEquals($expectedSharees, $this->invokePrivate($this->sharees, 'filterSharees', [$potentialSharees, $existingSharees]));
}
public function dataGetPaginationLinks() {
return [
[1, 1, ['limit' => 2], []],
[1, 3, ['limit' => 2], [
'<?limit=2&page=2>; rel="next"',
'<?limit=2&page=2>; rel="last"',
]],
[1, 21, ['limit' => 2], [
'<?limit=2&page=2>; rel="next"',
'<?limit=2&page=11>; rel="last"',
]],
[2, 21, ['limit' => 2], [
'<?limit=2&page=1>; rel="first"',
'<?limit=2&page=1>; rel="prev"',
'<?limit=2&page=3>; rel="next"',
'<?limit=2&page=11>; rel="last"',
]],
[5, 21, ['limit' => 2], [
'<?limit=2&page=1>; rel="first"',
'<?limit=2&page=4>; rel="prev"',
'<?limit=2&page=6>; rel="next"',
'<?limit=2&page=11>; rel="last"',
]],
[10, 21, ['limit' => 2], [
'<?limit=2&page=1>; rel="first"',
'<?limit=2&page=9>; rel="prev"',
'<?limit=2&page=11>; rel="next"',
'<?limit=2&page=11>; rel="last"',
]],
[11, 21, ['limit' => 2], [
'<?limit=2&page=1>; rel="first"',
'<?limit=2&page=10>; rel="prev"',
]],
];
}
/**
* @dataProvider dataGetPaginationLinks
*
* @param int $page
* @param int $total
* @param array $params
* @param array $expected
*/
public function testGetPaginationLinks($page, $total, $params, $expected) {
$this->assertEquals($expected, $this->invokePrivate($this->sharees, 'getPaginationLinks', [$page, $total, $params]));
}
2015-08-09 22:19:35 +03:00
}