nextcloud/apps/files_sharing/tests/API/ShareesTest.php

1554 lines
42 KiB
PHP
Raw Normal View History

2015-08-09 22:19:35 +03:00
<?php
2015-08-11 16:43:44 +03:00
/**
* @author Björn Schießle <schiessle@owncloud.com>
2015-08-11 16:43:44 +03:00
* @author Joas Schilling <nickvergessen@owncloud.com>
2015-10-26 15:54:55 +03:00
* @author Roeland Jago Douma <rullzer@owncloud.com>
2016-01-12 17:02:16 +03:00
* @author Thomas Müller <thomas.mueller@tmit.eu>
2015-08-11 16:43:44 +03:00
*
2016-01-12 17:02:16 +03:00
* @copyright Copyright (c) 2016, ownCloud, Inc.
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\API;
2015-08-09 22:19:35 +03:00
use OCA\Files_Sharing\API\Sharees;
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;
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
*/
2015-08-09 22:19:35 +03:00
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-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;
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();
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,
2015-08-13 12:06:03 +03:00
$this->getMockBuilder('OCP\IURLGenerator')->disableOriginalConstructor()->getMock(),
2015-08-26 11:51:26 +03:00
$this->request,
$this->getMockBuilder('OCP\ILogger')->disableOriginalConstructor()->getMock(),
$this->shareManager
2015-08-11 16:43:44 +03:00
);
2015-08-09 22:19:35 +03:00
}
/**
* @param string $uid
* @param string $displayName
2015-12-08 11:11:50 +03:00
* @return \OCP\IUser|\PHPUnit_Framework_MockObject_MockObject
*/
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
}
/**
* @param string $gid
2015-12-08 11:11:50 +03:00
* @return \OCP\IGroup|\PHPUnit_Framework_MockObject_MockObject
*/
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, true, [], [], [], [], true, false],
['test', false, false, [], [], [], [], true, false],
['test', true, true, [], [], [], [], true, false],
['test', true, false, [], [], [], [], true, false],
2015-08-26 12:45:11 +03:00
[
'test', false, true, [], [],
2015-08-26 12:45:11 +03:00
[
['label' => 'Test', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test']],
], [], true, $this->getUserMock('test', 'Test')
],
[
'test', false, false, [], [],
[
['label' => 'Test', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test']],
], [], true, $this->getUserMock('test', 'Test')
],
[
'test', true, true, [], [],
[], [], true, $this->getUserMock('test', 'Test')
],
[
'test', true, false, [], [],
[], [], true, $this->getUserMock('test', 'Test')
],
[
'test', true, true, ['test-group'], [['test-group', 'test', 2, 0, []]],
[
['label' => 'Test', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test']],
], [], true, $this->getUserMock('test', 'Test')
],
[
'test', true, false, ['test-group'], [['test-group', 'test', 2, 0, []]],
2015-08-26 12:45:11 +03:00
[
['label' => 'Test', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test']],
], [], true, $this->getUserMock('test', 'Test')
],
2015-08-11 16:43:44 +03:00
[
'test',
false,
true,
2015-08-11 16:43:44 +03:00
[],
[
$this->getUserMock('test1', 'Test One'),
],
2015-08-26 11:51:26 +03:00
[],
2015-08-11 16:43:44 +03:00
[
2015-08-26 11:51:26 +03:00
['label' => 'Test One', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
],
true,
2015-08-26 12:45:11 +03:00
false,
2015-08-11 16:43:44 +03:00
],
[
'test',
false,
false,
[],
[
$this->getUserMock('test1', 'Test One'),
],
[],
[],
true,
false,
],
[
'test',
false,
true,
2015-08-11 16:43:44 +03:00
[],
[
$this->getUserMock('test1', 'Test One'),
$this->getUserMock('test2', 'Test Two'),
],
2015-08-26 11:51:26 +03:00
[],
2015-08-11 16:43:44 +03:00
[
2015-08-26 11:51:26 +03:00
['label' => 'Test One', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
['label' => 'Test Two', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test2']],
],
false,
2015-08-26 12:45:11 +03:00
false,
2015-08-11 16:43:44 +03:00
],
2015-08-17 13:13:49 +03:00
[
'test',
false,
false,
[],
[
$this->getUserMock('test1', 'Test One'),
$this->getUserMock('test2', 'Test Two'),
],
[],
[],
true,
false,
],
[
'test',
false,
true,
2015-08-17 13:13:49 +03:00
[],
[
2015-08-26 12:45:11 +03:00
$this->getUserMock('test0', 'Test'),
2015-08-17 13:13:49 +03:00
$this->getUserMock('test1', 'Test One'),
$this->getUserMock('test2', 'Test Two'),
],
[
2015-08-26 12:45:11 +03:00
['label' => 'Test', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test0']],
2015-08-26 11:51:26 +03:00
],
[
['label' => 'Test One', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
['label' => 'Test Two', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test2']],
],
false,
2015-08-26 12:45:11 +03:00
false,
2015-08-17 13:13:49 +03:00
],
[
'test',
false,
false,
[],
[
$this->getUserMock('test0', 'Test'),
$this->getUserMock('test1', 'Test One'),
$this->getUserMock('test2', 'Test Two'),
],
[
['label' => 'Test', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test0']],
],
[],
true,
false,
],
2015-08-11 16:43:44 +03:00
[
'test',
true,
true,
2015-08-11 16:43:44 +03:00
['abc', 'xyz'],
[
2015-08-26 11:51:26 +03:00
['abc', 'test', 2, 0, ['test1' => 'Test One']],
['xyz', 'test', 2, 0, []],
2015-08-11 16:43:44 +03:00
],
2015-08-26 11:51:26 +03:00
[],
2015-08-11 16:43:44 +03:00
[
2015-08-26 11:51:26 +03:00
['label' => 'Test One', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
],
true,
2015-08-26 12:45:11 +03:00
false,
2015-08-11 16:43:44 +03:00
],
[
'test',
true,
false,
['abc', 'xyz'],
[
['abc', 'test', 2, 0, ['test1' => 'Test One']],
['xyz', 'test', 2, 0, []],
],
[],
[],
true,
false,
],
[
'test',
true,
true,
2015-08-11 16:43:44 +03:00
['abc', 'xyz'],
[
2015-08-26 11:51:26 +03:00
['abc', 'test', 2, 0, [
2015-08-11 16:43:44 +03:00
'test1' => 'Test One',
'test2' => 'Test Two',
]],
2015-08-26 11:51:26 +03:00
['xyz', 'test', 2, 0, [
2015-08-11 16:43:44 +03:00
'test1' => 'Test One',
'test2' => 'Test Two',
]],
],
2015-08-26 11:51:26 +03:00
[],
2015-08-11 16:43:44 +03:00
[
2015-08-26 11:51:26 +03:00
['label' => 'Test One', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
['label' => 'Test Two', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test2']],
],
false,
2015-08-26 12:45:11 +03:00
false,
2015-08-11 16:43:44 +03:00
],
[
'test',
true,
false,
['abc', 'xyz'],
[
['abc', 'test', 2, 0, [
'test1' => 'Test One',
'test2' => 'Test Two',
]],
['xyz', 'test', 2, 0, [
'test1' => 'Test One',
'test2' => 'Test Two',
]],
],
[],
[],
true,
false,
],
[
'test',
true,
true,
2015-08-11 16:43:44 +03:00
['abc', 'xyz'],
[
2015-08-26 11:51:26 +03:00
['abc', 'test', 2, 0, [
'test' => 'Test One',
2015-08-11 16:43:44 +03:00
]],
2015-08-26 11:51:26 +03:00
['xyz', 'test', 2, 0, [
2015-08-11 16:43:44 +03:00
'test2' => 'Test Two',
]],
],
[
2015-08-26 11:51:26 +03:00
['label' => 'Test One', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test']],
2015-08-17 13:13:49 +03:00
],
[
2015-08-26 11:51:26 +03:00
['label' => 'Test Two', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test2']],
],
false,
2015-08-26 12:45:11 +03:00
false,
2015-08-17 13:13:49 +03:00
],
[
'test',
true,
false,
['abc', 'xyz'],
[
['abc', 'test', 2, 0, [
'test' => 'Test One',
]],
['xyz', 'test', 2, 0, [
'test2' => 'Test Two',
]],
],
[
['label' => 'Test One', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test']],
],
[],
true,
false,
],
2015-08-11 16:43:44 +03:00
];
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 bool $shareeEnumeration
2015-08-11 16:43:44 +03:00
* @param array $groupResponse
* @param array $userResponse
2015-08-26 11:51:26 +03:00
* @param array $exactExpected
2015-08-11 16:43:44 +03:00
* @param array $expected
2015-08-26 11:51:26 +03:00
* @param bool $reachedEnd
2015-08-26 12:45:11 +03:00
* @param mixed $singleUser
2015-08-11 16:43:44 +03:00
*/
public function testGetUsers($searchTerm, $shareWithGroupOnly, $shareeEnumeration, $groupResponse, $userResponse, $exactExpected, $expected, $reachedEnd, $singleUser) {
2015-08-26 11:51:26 +03:00
$this->invokePrivate($this->sharees, 'limit', [2]);
$this->invokePrivate($this->sharees, 'offset', [0]);
$this->invokePrivate($this->sharees, 'shareWithGroupOnly', [$shareWithGroupOnly]);
$this->invokePrivate($this->sharees, 'shareeEnumeration', [$shareeEnumeration]);
2015-08-26 11:51:26 +03:00
2015-08-17 13:13:49 +03:00
$user = $this->getUserMock('admin', 'Administrator');
$this->session->expects($this->any())
->method('getUser')
->willReturn($user);
2015-08-11 16:43:44 +03:00
if (!$shareWithGroupOnly) {
$this->userManager->expects($this->once())
->method('searchDisplayName')
2015-08-26 11:51:26 +03:00
->with($searchTerm, $this->invokePrivate($this->sharees, 'limit'), $this->invokePrivate($this->sharees, 'offset'))
2015-08-11 16:43:44 +03:00
->willReturn($userResponse);
} else {
if ($singleUser !== false) {
$this->groupManager->expects($this->exactly(2))
->method('getUserGroupIds')
->withConsecutive(
$user,
$singleUser
)
->willReturn($groupResponse);
} else {
$this->groupManager->expects($this->once())
->method('getUserGroupIds')
->with($user)
->willReturn($groupResponse);
}
2015-08-11 16:43:44 +03:00
$this->groupManager->expects($this->exactly(sizeof($groupResponse)))
->method('displayNamesInGroup')
2015-08-26 11:51:26 +03:00
->with($this->anything(), $searchTerm, $this->invokePrivate($this->sharees, 'limit'), $this->invokePrivate($this->sharees, 'offset'))
2015-08-11 16:43:44 +03:00
->willReturnMap($userResponse);
}
2015-08-26 12:45:11 +03:00
if ($singleUser !== false) {
$this->userManager->expects($this->once())
->method('get')
->with($searchTerm)
->willReturn($singleUser);
}
2015-08-26 11:51:26 +03:00
$this->invokePrivate($this->sharees, 'getUsers', [$searchTerm]);
$result = $this->invokePrivate($this->sharees, 'result');
2015-08-11 16:43:44 +03:00
2015-08-26 11:51:26 +03:00
$this->assertEquals($exactExpected, $result['exact']['users']);
$this->assertEquals($expected, $result['users']);
$this->assertCount((int) $reachedEnd, $this->invokePrivate($this->sharees, 'reachedEndFor'));
2015-08-09 22:19:35 +03:00
}
2015-08-11 17:22:05 +03:00
public function dataGetGroups() {
return [
['test', false, true, [], [], [], [], true, false],
['test', false, false, [], [], [], [], true, false],
2015-08-11 17:22:05 +03:00
[
'test', false, true,
2015-08-11 17:22:05 +03:00
[$this->getGroupMock('test1')],
[],
2015-08-26 11:51:26 +03:00
[],
[['label' => 'test1', 'value' => ['shareType' => Share::SHARE_TYPE_GROUP, 'shareWith' => 'test1']]],
true,
2015-08-26 12:45:11 +03:00
false,
2015-08-11 17:22:05 +03:00
],
2015-08-26 11:51:26 +03:00
[
'test', false, false,
[$this->getGroupMock('test1')],
[],
[],
[],
true,
false,
],
[
'test', false, true,
2015-08-26 11:51:26 +03:00
[
$this->getGroupMock('test'),
$this->getGroupMock('test1'),
],
[],
[['label' => 'test', 'value' => ['shareType' => Share::SHARE_TYPE_GROUP, 'shareWith' => 'test']]],
[['label' => 'test1', 'value' => ['shareType' => Share::SHARE_TYPE_GROUP, 'shareWith' => 'test1']]],
false,
2015-08-26 12:45:11 +03:00
false,
2015-08-26 11:51:26 +03:00
],
2015-08-26 12:45:11 +03:00
[
'test', false, false,
[
$this->getGroupMock('test'),
$this->getGroupMock('test1'),
],
[],
[['label' => 'test', 'value' => ['shareType' => Share::SHARE_TYPE_GROUP, 'shareWith' => 'test']]],
[],
true,
false,
],
[
'test', false, true,
2015-08-26 12:45:11 +03:00
[
$this->getGroupMock('test0'),
$this->getGroupMock('test1'),
],
[],
[],
[
['label' => 'test0', 'value' => ['shareType' => Share::SHARE_TYPE_GROUP, 'shareWith' => 'test0']],
['label' => 'test1', 'value' => ['shareType' => Share::SHARE_TYPE_GROUP, 'shareWith' => 'test1']],
],
false,
null,
],
[
'test', false, false,
[
$this->getGroupMock('test0'),
$this->getGroupMock('test1'),
],
[],
[],
[],
true,
null,
],
[
'test', false, true,
2015-08-26 12:45:11 +03:00
[
$this->getGroupMock('test0'),
$this->getGroupMock('test1'),
],
[],
[
['label' => 'test', 'value' => ['shareType' => Share::SHARE_TYPE_GROUP, 'shareWith' => 'test']],
],
[
['label' => 'test0', 'value' => ['shareType' => Share::SHARE_TYPE_GROUP, 'shareWith' => 'test0']],
['label' => 'test1', 'value' => ['shareType' => Share::SHARE_TYPE_GROUP, 'shareWith' => 'test1']],
],
false,
$this->getGroupMock('test'),
],
2015-08-11 17:22:05 +03:00
[
'test', false, false,
[
$this->getGroupMock('test0'),
$this->getGroupMock('test1'),
],
[],
[
['label' => 'test', 'value' => ['shareType' => Share::SHARE_TYPE_GROUP, 'shareWith' => 'test']],
],
[],
true,
$this->getGroupMock('test'),
],
['test', true, true, [], [], [], [], true, false],
['test', true, false, [], [], [], [], true, false],
[
'test', true, true,
2015-08-11 17:22:05 +03:00
[
$this->getGroupMock('test1'),
$this->getGroupMock('test2'),
],
[$this->getGroupMock('test1')],
2015-08-26 11:51:26 +03:00
[],
[['label' => 'test1', 'value' => ['shareType' => Share::SHARE_TYPE_GROUP, 'shareWith' => 'test1']]],
false,
2015-08-26 12:45:11 +03:00
false,
2015-08-26 11:51:26 +03:00
],
[
'test', true, false,
[
$this->getGroupMock('test1'),
$this->getGroupMock('test2'),
],
[$this->getGroupMock('test1')],
[],
[],
true,
false,
],
[
'test', true, true,
2015-08-26 11:51:26 +03:00
[
$this->getGroupMock('test'),
$this->getGroupMock('test1'),
],
[$this->getGroupMock('test')],
[['label' => 'test', 'value' => ['shareType' => Share::SHARE_TYPE_GROUP, 'shareWith' => 'test']]],
[],
false,
2015-08-26 12:45:11 +03:00
false,
2015-08-26 11:51:26 +03:00
],
[
'test', true, false,
[
$this->getGroupMock('test'),
$this->getGroupMock('test1'),
],
[$this->getGroupMock('test')],
[['label' => 'test', 'value' => ['shareType' => Share::SHARE_TYPE_GROUP, 'shareWith' => 'test']]],
[],
true,
false,
],
[
'test', true, true,
2015-08-26 11:51:26 +03:00
[
$this->getGroupMock('test'),
$this->getGroupMock('test1'),
],
[$this->getGroupMock('test1')],
[],
[['label' => 'test1', 'value' => ['shareType' => Share::SHARE_TYPE_GROUP, 'shareWith' => 'test1']]],
false,
2015-08-26 12:45:11 +03:00
false,
],
[
'test', true, false,
[
$this->getGroupMock('test'),
$this->getGroupMock('test1'),
],
[$this->getGroupMock('test1')],
[],
[],
true,
false,
],
[
'test', true, true,
2015-08-26 12:45:11 +03:00
[
$this->getGroupMock('test'),
$this->getGroupMock('test1'),
],
[$this->getGroupMock('test'), $this->getGroupMock('test0'), $this->getGroupMock('test1')],
[['label' => 'test', 'value' => ['shareType' => Share::SHARE_TYPE_GROUP, 'shareWith' => 'test']]],
[['label' => 'test1', 'value' => ['shareType' => Share::SHARE_TYPE_GROUP, 'shareWith' => 'test1']]],
false,
false,
],
[
'test', true, false,
[
$this->getGroupMock('test'),
$this->getGroupMock('test1'),
],
[$this->getGroupMock('test'), $this->getGroupMock('test0'), $this->getGroupMock('test1')],
[['label' => 'test', 'value' => ['shareType' => Share::SHARE_TYPE_GROUP, 'shareWith' => 'test']]],
[],
true,
false,
],
[
'test', true, true,
2015-08-26 12:45:11 +03:00
[
$this->getGroupMock('test0'),
$this->getGroupMock('test1'),
],
[$this->getGroupMock('test'), $this->getGroupMock('test0'), $this->getGroupMock('test1')],
[],
[
['label' => 'test0', 'value' => ['shareType' => Share::SHARE_TYPE_GROUP, 'shareWith' => 'test0']],
['label' => 'test1', 'value' => ['shareType' => Share::SHARE_TYPE_GROUP, 'shareWith' => 'test1']],
],
false,
null,
],
[
'test', true, false,
[
$this->getGroupMock('test0'),
$this->getGroupMock('test1'),
],
[$this->getGroupMock('test'), $this->getGroupMock('test0'), $this->getGroupMock('test1')],
[],
[],
true,
null,
],
[
'test', true, true,
2015-08-26 12:45:11 +03:00
[
$this->getGroupMock('test0'),
$this->getGroupMock('test1'),
],
[$this->getGroupMock('test'), $this->getGroupMock('test0'), $this->getGroupMock('test1')],
[
['label' => 'test', 'value' => ['shareType' => Share::SHARE_TYPE_GROUP, 'shareWith' => 'test']],
],
[
['label' => 'test0', 'value' => ['shareType' => Share::SHARE_TYPE_GROUP, 'shareWith' => 'test0']],
['label' => 'test1', 'value' => ['shareType' => Share::SHARE_TYPE_GROUP, 'shareWith' => 'test1']],
],
false,
$this->getGroupMock('test'),
2015-08-11 17:22:05 +03:00
],
[
'test', true, false,
[
$this->getGroupMock('test0'),
$this->getGroupMock('test1'),
],
[$this->getGroupMock('test'), $this->getGroupMock('test0'), $this->getGroupMock('test1')],
[
['label' => 'test', 'value' => ['shareType' => Share::SHARE_TYPE_GROUP, 'shareWith' => 'test']],
],
[],
true,
$this->getGroupMock('test'),
],
2015-08-11 17:22:05 +03:00
];
}
/**
* @dataProvider dataGetGroups
*
* @param string $searchTerm
* @param bool $shareWithGroupOnly
* @param bool $shareeEnumeration
2015-08-11 17:22:05 +03:00
* @param array $groupResponse
* @param array $userGroupsResponse
2015-08-26 11:51:26 +03:00
* @param array $exactExpected
2015-08-11 17:22:05 +03:00
* @param array $expected
2015-08-26 11:51:26 +03:00
* @param bool $reachedEnd
2015-08-26 12:45:11 +03:00
* @param mixed $singleGroup
2015-08-11 17:22:05 +03:00
*/
public function testGetGroups($searchTerm, $shareWithGroupOnly, $shareeEnumeration, $groupResponse, $userGroupsResponse, $exactExpected, $expected, $reachedEnd, $singleGroup) {
2015-08-26 11:51:26 +03:00
$this->invokePrivate($this->sharees, 'limit', [2]);
$this->invokePrivate($this->sharees, 'offset', [0]);
$this->invokePrivate($this->sharees, 'shareWithGroupOnly', [$shareWithGroupOnly]);
$this->invokePrivate($this->sharees, 'shareeEnumeration', [$shareeEnumeration]);
2015-08-26 11:51:26 +03:00
2015-08-11 17:22:05 +03:00
$this->groupManager->expects($this->once())
->method('search')
2015-08-26 11:51:26 +03:00
->with($searchTerm, $this->invokePrivate($this->sharees, 'limit'), $this->invokePrivate($this->sharees, 'offset'))
2015-08-11 17:22:05 +03:00
->willReturn($groupResponse);
2015-08-26 12:45:11 +03:00
if ($singleGroup !== false) {
$this->groupManager->expects($this->once())
->method('get')
->with($searchTerm)
->willReturn($singleGroup);
}
2015-08-11 17:22:05 +03:00
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);
}
2015-08-26 11:51:26 +03:00
$this->invokePrivate($this->sharees, 'getGroups', [$searchTerm]);
$result = $this->invokePrivate($this->sharees, 'result');
2015-08-11 17:22:05 +03:00
2015-08-26 11:51:26 +03:00
$this->assertEquals($exactExpected, $result['exact']['groups']);
$this->assertEquals($expected, $result['groups']);
$this->assertCount((int) $reachedEnd, $this->invokePrivate($this->sharees, 'reachedEndFor'));
2015-08-11 17:22:05 +03:00
}
2015-08-11 17:31:54 +03:00
public function dataGetRemote() {
return [
['test', [], true, [], [], true],
['test', [], false, [], [], true],
[
'test@remote',
[],
true,
[
['label' => 'test@remote', 'value' => ['shareType' => Share::SHARE_TYPE_REMOTE, 'shareWith' => 'test@remote']],
],
[],
true,
],
2015-08-11 17:31:54 +03:00
[
'test@remote',
[],
false,
2015-08-11 17:31:54 +03:00
[
2015-08-26 11:51:26 +03:00
['label' => 'test@remote', 'value' => ['shareType' => Share::SHARE_TYPE_REMOTE, 'shareWith' => 'test@remote']],
2015-08-11 17:31:54 +03:00
],
2015-08-26 11:51:26 +03:00
[],
true,
2015-08-11 17:31:54 +03:00
],
[
'test',
[
[
'FN' => 'User3 @ Localhost',
],
[
'FN' => 'User2 @ Localhost',
'CLOUD' => [
],
],
[
'FN' => 'User @ Localhost',
'CLOUD' => [
'username@localhost',
],
],
],
true,
2015-08-26 11:51:26 +03:00
[],
2015-08-11 17:31:54 +03:00
[
2016-02-12 17:27:39 +03:00
['label' => 'User @ Localhost', 'value' => ['shareType' => Share::SHARE_TYPE_REMOTE, 'shareWith' => 'username@localhost', 'server' => 'localhost']],
2015-08-11 17:31:54 +03:00
],
2015-08-26 11:51:26 +03:00
true,
2015-08-11 17:31:54 +03:00
],
[
'test',
[
[
'FN' => 'User3 @ Localhost',
],
[
'FN' => 'User2 @ Localhost',
'CLOUD' => [
],
],
[
'FN' => 'User @ Localhost',
'CLOUD' => [
'username@localhost',
],
],
],
false,
[],
[],
true,
],
2015-08-11 17:31:54 +03:00
[
'test@remote',
[
[
'FN' => 'User3 @ Localhost',
],
[
'FN' => 'User2 @ Localhost',
'CLOUD' => [
],
],
[
'FN' => 'User @ Localhost',
'CLOUD' => [
'username@localhost',
],
],
],
true,
2015-08-11 17:31:54 +03:00
[
2015-08-26 11:51:26 +03:00
['label' => 'test@remote', 'value' => ['shareType' => Share::SHARE_TYPE_REMOTE, 'shareWith' => 'test@remote']],
],
[
2016-02-12 17:27:39 +03:00
['label' => 'User @ Localhost', 'value' => ['shareType' => Share::SHARE_TYPE_REMOTE, 'shareWith' => 'username@localhost', 'server' => 'localhost']],
2015-08-11 17:31:54 +03:00
],
2015-08-26 11:51:26 +03:00
true,
2015-08-26 12:45:11 +03:00
],
[
'test@remote',
[
[
'FN' => 'User3 @ Localhost',
],
[
'FN' => 'User2 @ Localhost',
'CLOUD' => [
],
],
[
'FN' => 'User @ Localhost',
'CLOUD' => [
'username@localhost',
],
],
],
false,
[
['label' => 'test@remote', 'value' => ['shareType' => Share::SHARE_TYPE_REMOTE, 'shareWith' => 'test@remote']],
],
[],
true,
],
2015-08-26 12:45:11 +03:00
[
'username@localhost',
[
[
'FN' => 'User3 @ Localhost',
],
[
'FN' => 'User2 @ Localhost',
'CLOUD' => [
],
],
[
'FN' => 'User @ Localhost',
'CLOUD' => [
'username@localhost',
],
],
],
true,
2015-08-26 12:45:11 +03:00
[
2016-02-12 17:27:39 +03:00
['label' => 'User @ Localhost', 'value' => ['shareType' => Share::SHARE_TYPE_REMOTE, 'shareWith' => 'username@localhost', 'server' => 'localhost']],
2015-08-26 12:45:11 +03:00
],
[],
true,
],
[
'username@localhost',
2015-08-26 12:45:11 +03:00
[
[
'FN' => 'User3 @ Localhost',
],
[
'FN' => 'User2 @ Localhost',
'CLOUD' => [
],
],
[
'FN' => 'User @ Localhost',
'CLOUD' => [
'username@localhost',
],
],
2015-08-26 12:45:11 +03:00
],
false,
[
2016-02-12 17:27:39 +03:00
['label' => 'User @ Localhost', 'value' => ['shareType' => Share::SHARE_TYPE_REMOTE, 'shareWith' => 'username@localhost', 'server' => 'localhost']],
],
[],
2015-08-26 12:45:11 +03:00
true,
2015-08-11 17:31:54 +03:00
],
];
}
/**
* @dataProvider dataGetRemote
*
* @param string $searchTerm
* @param array $contacts
* @param bool $shareeEnumeration
2015-08-26 11:51:26 +03:00
* @param array $exactExpected
2015-08-11 17:31:54 +03:00
* @param array $expected
2015-08-26 11:51:26 +03:00
* @param bool $reachedEnd
2015-08-11 17:31:54 +03:00
*/
public function testGetRemote($searchTerm, $contacts, $shareeEnumeration, $exactExpected, $expected, $reachedEnd) {
$this->invokePrivate($this->sharees, 'shareeEnumeration', [$shareeEnumeration]);
2015-08-11 17:31:54 +03:00
$this->contactsManager->expects($this->any())
->method('search')
->with($searchTerm, ['CLOUD', 'FN'])
->willReturn($contacts);
2015-08-26 11:51:26 +03:00
$this->invokePrivate($this->sharees, 'getRemote', [$searchTerm]);
$result = $this->invokePrivate($this->sharees, 'result');
2015-08-11 17:31:54 +03:00
2015-08-26 11:51:26 +03:00
$this->assertEquals($exactExpected, $result['exact']['remotes']);
$this->assertEquals($expected, $result['remotes']);
$this->assertCount((int) $reachedEnd, $this->invokePrivate($this->sharees, 'reachedEndFor'));
2015-08-11 17:31:54 +03:00
}
2015-08-12 16:03:50 +03:00
public function dataSearch() {
2015-08-26 11:51:26 +03:00
$allTypes = [Share::SHARE_TYPE_USER, Share::SHARE_TYPE_GROUP, Share::SHARE_TYPE_REMOTE];
2015-08-12 18:05:20 +03:00
2015-08-12 16:03:50 +03:00
return [
[[], '', 'yes', true, '', null, $allTypes, 1, 200, false, true, true],
2015-08-12 16:03:50 +03:00
// Test itemType
[[
'search' => '',
], '', 'yes', true, '', null, $allTypes, 1, 200, false, true, true],
2015-08-12 16:03:50 +03:00
[[
'search' => 'foobar',
], '', 'yes', true, 'foobar', null, $allTypes, 1, 200, false, true, true],
2015-08-12 16:03:50 +03:00
[[
'search' => 0,
], '', 'yes', true, '0', null, $allTypes, 1, 200, false, true, true],
2015-08-12 16:03:50 +03:00
// Test itemType
[[
'itemType' => '',
], '', 'yes', true, '', '', $allTypes, 1, 200, false, true, true],
2015-08-12 16:03:50 +03:00
[[
'itemType' => 'folder',
], '', 'yes', true, '', 'folder', $allTypes, 1, 200, false, true, true],
2015-08-12 16:03:50 +03:00
[[
'itemType' => 0,
], '', 'yes', true, '', '0', $allTypes, 1, 200, false, true, true],
2015-08-12 16:03:50 +03:00
// Test shareType
[[
], '', 'yes', true, '', null, $allTypes, 1, 200, false, true, true],
2015-08-12 16:03:50 +03:00
[[
'shareType' => 0,
], '', 'yes', true, '', null, [0], 1, 200, false, true, true],
2015-08-12 16:03:50 +03:00
[[
'shareType' => '0',
], '', 'yes', true, '', null, [0], 1, 200, false, true, true],
2015-08-12 16:03:50 +03:00
[[
'shareType' => 1,
], '', 'yes', true, '', null, [1], 1, 200, false, true, true],
2015-08-12 16:03:50 +03:00
[[
2015-08-12 18:05:20 +03:00
'shareType' => 12,
], '', 'yes', true, '', null, [], 1, 200, false, true, true],
2015-08-12 16:03:50 +03:00
[[
'shareType' => 'foobar',
], '', 'yes', true, '', null, $allTypes, 1, 200, false, true, true],
2015-08-12 18:05:20 +03:00
[[
'shareType' => [0, 1, 2],
], '', 'yes', true, '', null, [0, 1], 1, 200, false, true, true],
2015-08-12 18:05:20 +03:00
[[
'shareType' => [0, 1],
], '', 'yes', true, '', null, [0, 1], 1, 200, false, true, true],
2015-08-12 18:05:20 +03:00
[[
'shareType' => $allTypes,
], '', 'yes', true, '', null, $allTypes, 1, 200, false, true, true],
2015-08-12 18:05:20 +03:00
[[
'shareType' => $allTypes,
], '', 'yes', false, '', null, [0, 1], 1, 200, false, true, true],
[[
'shareType' => $allTypes,
], '', 'yes', true, '', null, [0, 6], 1, 200, false, true, false],
[[
'shareType' => $allTypes,
], '', 'yes', false, '', null, [0], 1, 200, false, true, false],
2015-08-12 16:03:50 +03:00
// Test pagination
[[
'page' => 1,
], '', 'yes', true, '', null, $allTypes, 1, 200, false, true, true],
2015-08-12 16:03:50 +03:00
[[
'page' => 10,
], '', 'yes', true, '', null, $allTypes, 10, 200, 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
[[
2015-09-15 13:14:14 +03:00
'perPage' => 1,
], '', 'yes', true, '', null, $allTypes, 1, 1, false, true, true],
2015-08-12 16:03:50 +03:00
[[
2015-09-15 13:14:14 +03:00
'perPage' => 10,
], '', 'yes', true, '', null, $allTypes, 1, 10, false, true, true],
2015-08-12 16:03:50 +03:00
// Test $shareWithGroupOnly setting
[[], 'no', 'yes', true, '', null, $allTypes, 1, 200, false, true, true],
[[], 'yes', 'yes', true, '', null, $allTypes, 1, 200, true, true, true],
// Test $shareeEnumeration setting
[[], 'no', 'yes', true, '', null, $allTypes, 1, 200, false, true, true],
[[], 'no', 'no', true, '', null, $allTypes, 1, 200, false, false, true],
2015-08-12 16:03:50 +03:00
// Test keep case for search
[[
'search' => 'foo@example.com/ownCloud',
], '', 'yes', true, 'foo@example.com/ownCloud', null, $allTypes, 1, 200, false, true, 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
2015-08-12 16:03:50 +03:00
* @param string $search
* @param string $itemType
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
* @param bool $shareeEnumeration
* @param bool $allowGroupSharing
2015-08-12 16:03:50 +03:00
*/
public function testSearch($getData, $apiSetting, $enumSetting, $remoteSharingEnabled, $search, $itemType, $shareTypes, $page, $perPage, $shareWithGroupOnly, $shareeEnumeration, $allowGroupSharing) {
2015-08-12 16:03:50 +03:00
$oldGet = $_GET;
$_GET = $getData;
$config = $this->getMockBuilder('OCP\IConfig')
->disableOriginalConstructor()
->getMock();
$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($this->once())
->method('allowGroupSharing')
->willReturn($allowGroupSharing);
2015-08-12 16:03:50 +03:00
$sharees = $this->getMockBuilder('\OCA\Files_Sharing\API\Sharees')
->setConstructorArgs([
$this->groupManager,
$this->userManager,
$this->contactsManager,
$config,
$this->session,
2015-08-13 12:06:03 +03:00
$this->getMockBuilder('OCP\IURLGenerator')->disableOriginalConstructor()->getMock(),
2015-08-26 11:51:26 +03:00
$this->getMockBuilder('OCP\IRequest')->disableOriginalConstructor()->getMock(),
$this->getMockBuilder('OCP\ILogger')->disableOriginalConstructor()->getMock(),
$this->shareManager
2015-08-12 16:03:50 +03:00
])
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-26 11:51:26 +03:00
->with($search, $itemType, $shareTypes, $page, $perPage)
2015-08-12 16:03:50 +03:00
->willReturnCallback(function
2015-08-26 11:51:26 +03:00
($isearch, $iitemType, $ishareTypes, $ipage, $iperPage)
use ($search, $itemType, $shareTypes, $page, $perPage) {
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);
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);
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());
2015-08-26 11:51:26 +03:00
$this->assertSame($shareWithGroupOnly, $this->invokePrivate($sharees, 'shareWithGroupOnly'));
$this->assertSame($shareeEnumeration, $this->invokePrivate($sharees, 'shareeEnumeration'));
2015-08-26 11:51:26 +03:00
2015-08-12 16:03:50 +03:00
$_GET = $oldGet;
}
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) {
$oldGet = $_GET;
$_GET = $getData;
$config = $this->getMockBuilder('OCP\IConfig')
->disableOriginalConstructor()
->getMock();
$config->expects($this->never())
->method('getAppValue');
$sharees = $this->getMockBuilder('\OCA\Files_Sharing\API\Sharees')
->setConstructorArgs([
$this->groupManager,
$this->userManager,
$this->contactsManager,
$config,
$this->session,
$this->getMockBuilder('OCP\IURLGenerator')->disableOriginalConstructor()->getMock(),
$this->getMockBuilder('OCP\IRequest')->disableOriginalConstructor()->getMock(),
$this->getMockBuilder('OCP\ILogger')->disableOriginalConstructor()->getMock(),
$this->shareManager
])
->setMethods(array('searchSharees', 'isRemoteSharingAllowed'))
->getMock();
$sharees->expects($this->never())
->method('searchSharees');
$sharees->expects($this->never())
->method('isRemoteSharingAllowed');
/** @var \PHPUnit_Framework_MockObject_MockObject|\OCA\Files_Sharing\API\Sharees $sharees */
$ocs = $sharees->search();
$this->assertInstanceOf('\OC_OCS_Result', $ocs);
2015-09-15 16:51:54 +03:00
$this->assertOCSError($ocs, $message);
$_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-26 11:51:26 +03:00
['test', 'folder', [Share::SHARE_TYPE_USER, Share::SHARE_TYPE_GROUP, Share::SHARE_TYPE_REMOTE], 1, 2, false, [], [], [],
[
'exact' => ['users' => [], 'groups' => [], 'remotes' => []],
'users' => [],
'groups' => [],
'remotes' => [],
], false],
['test', 'folder', [Share::SHARE_TYPE_USER, Share::SHARE_TYPE_GROUP, Share::SHARE_TYPE_REMOTE], 1, 2, false, [], [], [],
[
'exact' => ['users' => [], 'groups' => [], 'remotes' => []],
'users' => [],
'groups' => [],
'remotes' => [],
], false],
[
2015-08-26 11:51:26 +03:00
'test', 'folder', [Share::SHARE_TYPE_USER, Share::SHARE_TYPE_GROUP, Share::SHARE_TYPE_REMOTE], 1, 2, false, [
['label' => 'test One', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
], [
2015-08-26 11:51:26 +03:00
['label' => 'testgroup1', 'value' => ['shareType' => Share::SHARE_TYPE_GROUP, 'shareWith' => 'testgroup1']],
], [
2015-08-26 11:51:26 +03:00
['label' => 'testz@remote', 'value' => ['shareType' => Share::SHARE_TYPE_REMOTE, 'shareWith' => 'testz@remote']],
],
[
'exact' => ['users' => [], 'groups' => [], 'remotes' => []],
'users' => [
['label' => 'test One', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
],
'groups' => [
['label' => 'testgroup1', 'value' => ['shareType' => Share::SHARE_TYPE_GROUP, 'shareWith' => 'testgroup1']],
],
'remotes' => [
['label' => 'testz@remote', 'value' => ['shareType' => Share::SHARE_TYPE_REMOTE, 'shareWith' => 'testz@remote']],
],
], true,
],
2015-08-12 18:05:20 +03:00
// No groups requested
[
2015-08-26 11:51:26 +03:00
'test', 'folder', [Share::SHARE_TYPE_USER, Share::SHARE_TYPE_REMOTE], 1, 2, false, [
['label' => 'test One', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
], null, [
['label' => 'testz@remote', 'value' => ['shareType' => Share::SHARE_TYPE_REMOTE, 'shareWith' => 'testz@remote']],
],
[
'exact' => ['users' => [], 'groups' => [], 'remotes' => []],
'users' => [
['label' => 'test One', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
],
'groups' => [],
'remotes' => [
['label' => 'testz@remote', 'value' => ['shareType' => Share::SHARE_TYPE_REMOTE, 'shareWith' => 'testz@remote']],
],
], false,
],
// Share type restricted to user - Only one user
[
2015-08-26 11:51:26 +03:00
'test', 'folder', [Share::SHARE_TYPE_USER], 1, 2, false, [
['label' => 'test One', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
], null, null,
[
'exact' => ['users' => [], 'groups' => [], 'remotes' => []],
'users' => [
['label' => 'test One', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
],
'groups' => [],
'remotes' => [],
], false,
],
// Share type restricted to user - Multipage result
[
2015-08-26 11:51:26 +03:00
'test', 'folder', [Share::SHARE_TYPE_USER], 1, 2, false, [
['label' => 'test 1', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
['label' => 'test 2', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test2']],
], null, null,
[
'exact' => ['users' => [], 'groups' => [], 'remotes' => []],
'users' => [
['label' => 'test 1', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test1']],
['label' => 'test 2', 'value' => ['shareType' => Share::SHARE_TYPE_USER, 'shareWith' => 'test2']],
],
'groups' => [],
'remotes' => [],
], true,
],
];
}
/**
* @dataProvider dataSearchSharees
*
* @param string $searchTerm
* @param string $itemType
2015-08-12 18:05:20 +03:00
* @param array $shareTypes
* @param int $page
* @param int $perPage
* @param bool $shareWithGroupOnly
2015-08-26 11:51:26 +03:00
* @param array $mockedUserResult
* @param array $mockedGroupsResult
* @param array $mockedRemotesResult
* @param array $expected
2015-08-26 11:51:26 +03:00
* @param bool $nextLink
*/
2015-08-26 11:51:26 +03:00
public function testSearchSharees($searchTerm, $itemType, array $shareTypes, $page, $perPage, $shareWithGroupOnly,
$mockedUserResult, $mockedGroupsResult, $mockedRemotesResult, $expected, $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,
2015-08-13 12:06:03 +03:00
$this->getMockBuilder('OCP\IURLGenerator')->disableOriginalConstructor()->getMock(),
2015-08-26 11:51:26 +03:00
$this->getMockBuilder('OCP\IRequest')->disableOriginalConstructor()->getMock(),
$this->getMockBuilder('OCP\ILogger')->disableOriginalConstructor()->getMock(),
$this->shareManager
])
->setMethods(array('getShareesForShareIds', 'getUsers', 'getGroups', 'getRemote'))
->getMock();
$sharees->expects(($mockedUserResult === null) ? $this->never() : $this->once())
->method('getUsers')
2015-08-26 11:51:26 +03:00
->with($searchTerm)
->willReturnCallback(function() use ($sharees, $mockedUserResult) {
$result = $this->invokePrivate($sharees, 'result');
$result['users'] = $mockedUserResult;
$this->invokePrivate($sharees, 'result', [$result]);
});
$sharees->expects(($mockedGroupsResult === null) ? $this->never() : $this->once())
->method('getGroups')
2015-08-26 11:51:26 +03:00
->with($searchTerm)
->willReturnCallback(function() use ($sharees, $mockedGroupsResult) {
$result = $this->invokePrivate($sharees, 'result');
$result['groups'] = $mockedGroupsResult;
$this->invokePrivate($sharees, 'result', [$result]);
});
$sharees->expects(($mockedRemotesResult === null) ? $this->never() : $this->once())
->method('getRemote')
->with($searchTerm)
2015-08-26 11:51:26 +03:00
->willReturnCallback(function() use ($sharees, $mockedRemotesResult) {
$result = $this->invokePrivate($sharees, 'result');
$result['remotes'] = $mockedRemotesResult;
$this->invokePrivate($sharees, 'result', [$result]);
});
/** @var \OC_OCS_Result $ocs */
2015-08-26 11:51:26 +03:00
$ocs = $this->invokePrivate($sharees, 'searchSharees', [$searchTerm, $itemType, $shareTypes, $page, $perPage, $shareWithGroupOnly]);
2015-08-12 16:03:50 +03:00
$this->assertInstanceOf('\OC_OCS_Result', $ocs);
$this->assertEquals($expected, $ocs->getData());
// Check if next link is set
if ($nextLink) {
$headers = $ocs->getHeaders();
$this->assertArrayHasKey('Link', $headers);
$this->assertStringStartsWith('<', $headers['Link']);
2015-08-26 11:51:26 +03:00
$this->assertStringEndsWith('>; rel="next"', $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);
2015-09-15 16:51:54 +03:00
$this->assertOCSError($ocs, 'Missing itemType');
}
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'));
}
/**
* @param \OC_OCS_Result $ocs
* @param string $message
*/
2015-09-15 16:51:54 +03:00
protected function assertOCSError(\OC_OCS_Result $ocs, $message) {
$this->assertSame(Http::STATUS_BAD_REQUEST, $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($message, $meta['message']);
}
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
}