123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525 |
- <?php
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Joas Schilling <coding@schilljs.com>
- * @author Lukas Reschke <lukas@statuscode.ch>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- * @author Tom Needham <tom@owncloud.com>
- *
- * @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\Provisioning_API\Tests\Controller;
- use OC\Accounts\AccountManager;
- use OC\Group\Manager;
- use OC\SubAdmin;
- use OC\User\NoUserException;
- use OCA\Provisioning_API\Controller\GroupsController;
- use OCP\IConfig;
- use OCP\ILogger;
- use OCP\IRequest;
- use OCP\IUser;
- use OCP\IUserManager;
- use OCP\IUserSession;
- use OCP\UserInterface;
- class GroupsControllerTest extends \Test\TestCase {
- /** @var IRequest|\PHPUnit_Framework_MockObject_MockObject */
- protected $request;
- /** @var IUserManager|\PHPUnit_Framework_MockObject_MockObject */
- protected $userManager;
- /** @var IConfig|\PHPUnit_Framework_MockObject_MockObject */
- protected $config;
- /** @var Manager|\PHPUnit_Framework_MockObject_MockObject */
- protected $groupManager;
- /** @var IUserSession|\PHPUnit_Framework_MockObject_MockObject */
- protected $userSession;
- /** @var AccountManager|\PHPUnit_Framework_MockObject_MockObject */
- protected $accountManager;
- /** @var ILogger|\PHPUnit_Framework_MockObject_MockObject */
- protected $logger;
- /** @var SubAdmin|\PHPUnit_Framework_MockObject_MockObject */
- protected $subAdminManager;
- /** @var GroupsController|\PHPUnit_Framework_MockObject_MockObject */
- protected $api;
- protected function setUp() {
- parent::setUp();
- $this->request = $this->createMock(IRequest::class);
- $this->userManager = $this->createMock(IUserManager::class);
- $this->config = $this->createMock(IConfig::class);
- $this->groupManager = $this->createMock(Manager::class);
- $this->userSession = $this->createMock(IUserSession::class);
- $this->accountManager = $this->createMock(AccountManager::class);
- $this->logger = $this->createMock(ILogger::class);
-
- $this->subAdminManager = $this->createMock(SubAdmin::class);
- $this->groupManager
- ->method('getSubAdmin')
- ->willReturn($this->subAdminManager);
-
- $this->api = $this->getMockBuilder(GroupsController::class)
- ->setConstructorArgs([
- 'provisioning_api',
- $this->request,
- $this->userManager,
- $this->config,
- $this->groupManager,
- $this->userSession,
- $this->accountManager,
- $this->logger
- ])
- ->setMethods(['fillStorageInfo'])
- ->getMock();
- }
- /**
- * @param string $gid
- * @return \OCP\IGroup|\PHPUnit_Framework_MockObject_MockObject
- */
- private function createGroup($gid) {
- $group = $this->getMockBuilder('\OCP\IGroup')->disableOriginalConstructor()->getMock();
- $group
- ->method('getGID')
- ->willReturn($gid);
- $group
- ->method('getDisplayName')
- ->willReturn($gid.'-name');
- $group
- ->method('count')
- ->willReturn(123);
- $group
- ->method('countDisabled')
- ->willReturn(11);
- $group
- ->method('canAddUser')
- ->willReturn(true);
- $group
- ->method('canRemoveUser')
- ->willReturn(true);
- return $group;
- }
- /**
- * @param string $uid
- * @return \OCP\IUser|\PHPUnit_Framework_MockObject_MockObject
- */
- private function createUser($uid) {
- $user = $this->getMockBuilder(IUser::class)->disableOriginalConstructor()->getMock();
- $user
- ->method('getUID')
- ->willReturn($uid);
- $backendMock = $this->createMock(UserInterface::class);
- $user
- ->method('getBackend')
- ->willReturn($backendMock);
- return $user;
- }
- private function asUser() {
- $user = $this->createUser('user');
- $this->userSession
- ->method('getUser')
- ->willReturn($user);
- }
- private function asAdmin() {
- $user = $this->createUser('admin');
- $this->userSession
- ->method('getUser')
- ->willReturn($user);
- $this->groupManager
- ->method('isAdmin')
- ->with('admin')
- ->willReturn(true);
- }
- private function asSubAdminOfGroup($group) {
- $user = $this->createUser('subAdmin');
- $this->userSession
- ->method('getUser')
- ->willReturn($user);
- $this->subAdminManager
- ->method('isSubAdminOfGroup')
- ->will($this->returnCallback(function($_user, $_group) use ($user, $group) {
- if ($_user === $user && $_group === $group) {
- return true;
- }
- return false;
- }));
- }
- private function useAccountManager() {
- $this->accountManager->expects($this->any())
- ->method('getUser')
- ->willReturnCallback(function(IUser $user) {
- return [
- AccountManager::PROPERTY_PHONE => ['value' => '0800-call-' . $user->getUID()],
- AccountManager::PROPERTY_ADDRESS => ['value' => 'Holzweg 99, 0601 Herrera, Panama'],
- AccountManager::PROPERTY_WEBSITE => ['value' => 'https://' . $user->getUid() . '.pa'],
- AccountManager::PROPERTY_TWITTER => ['value' => '@' . $user->getUID()],
- ];
- });
- }
- public function dataGetGroups() {
- return [
- [null, 0, 0],
- ['foo', 0, 0],
- [null, 1, 0],
- [null, 0, 2],
- ['foo', 1, 2],
- ];
- }
- /**
- * @dataProvider dataGetGroups
- *
- * @param string|null $search
- * @param int|null $limit
- * @param int|null $offset
- */
- public function testGetGroups($search, $limit, $offset) {
- $groups = [$this->createGroup('group1'), $this->createGroup('group2')];
- $search = $search === null ? '' : $search;
- $this->groupManager
- ->expects($this->once())
- ->method('search')
- ->with($search, $limit, $offset)
- ->willReturn($groups);
- $result = $this->api->getGroups($search, $limit, $offset);
- $this->assertEquals(['groups' => ['group1', 'group2']], $result->getData());
- }
- /**
- * @dataProvider dataGetGroups
- *
- * @param string|null $search
- * @param int|null $limit
- * @param int|null $offset
- */
- public function testGetGroupsDetails($search, $limit, $offset) {
- $groups = [$this->createGroup('group1'), $this->createGroup('group2')];
- $search = $search === null ? '' : $search;
- $this->groupManager
- ->expects($this->once())
- ->method('search')
- ->with($search, $limit, $offset)
- ->willReturn($groups);
- $result = $this->api->getGroupsDetails($search, $limit, $offset);
- $this->assertEquals(['groups' => [
- Array(
- 'id' => 'group1',
- 'displayname' => 'group1-name',
- 'usercount' => 123,
- 'disabled' => 11,
- 'canAdd' => true,
- 'canRemove' => true
- ),
- Array(
- 'id' => 'group2',
- 'displayname' => 'group2-name',
- 'usercount' => 123,
- 'disabled' => 11,
- 'canAdd' => true,
- 'canRemove' => true
-
- )
- ]], $result->getData());
- }
- public function testGetGroupAsSubadmin() {
- $group = $this->createGroup('group');
- $this->asSubAdminOfGroup($group);
- $this->groupManager
- ->method('get')
- ->with('group')
- ->willReturn($group);
- $this->groupManager
- ->method('groupExists')
- ->with('group')
- ->willReturn(true);
- $group
- ->method('getUsers')
- ->willReturn([
- $this->createUser('user1'),
- $this->createUser('user2')
- ]);
- $result = $this->api->getGroup('group');
- $this->assertEquals(['users' => ['user1', 'user2']], $result->getData());
- }
- /**
- * @expectedException \OCP\AppFramework\OCS\OCSException
- * @expectedExceptionCode 403
- */
- public function testGetGroupAsIrrelevantSubadmin() {
- $group = $this->createGroup('group');
- $otherGroup = $this->createGroup('otherGroup');
- $this->asSubAdminOfGroup($otherGroup);
- $this->groupManager
- ->method('get')
- ->with('group')
- ->willReturn($group);
- $this->groupManager
- ->method('groupExists')
- ->with('group')
- ->willReturn(true);
- $this->api->getGroup('group');
- }
- public function testGetGroupAsAdmin() {
- $group = $this->createGroup('group');
- $this->asAdmin();
- $this->groupManager
- ->method('get')
- ->with('group')
- ->willReturn($group);
- $this->groupManager
- ->method('groupExists')
- ->with('group')
- ->willReturn(true);
- $group
- ->method('getUsers')
- ->willReturn([
- $this->createUser('user1'),
- $this->createUser('user2')
- ]);
- $result = $this->api->getGroup('group');
- $this->assertEquals(['users' => ['user1', 'user2']], $result->getData());
- }
- /**
- * @expectedException \OCP\AppFramework\OCS\OCSException
- * @expectedExceptionCode 404
- * @expectedExceptionMessage The requested group could not be found
- */
- public function testGetGroupNonExisting() {
- $this->asUser();
- $this->api->getGroup($this->getUniqueID());
- }
- /**
- * @expectedException \OCP\AppFramework\OCS\OCSException
- * @expectedExceptionCode 101
- * @expectedExceptionMessage Group does not exist
- */
- public function testGetSubAdminsOfGroupsNotExists() {
- $this->api->getSubAdminsOfGroup('NonExistingGroup');
- }
- public function testGetSubAdminsOfGroup() {
- $group = $this->createGroup('GroupWithSubAdmins');
- $this->groupManager
- ->method('get')
- ->with('GroupWithSubAdmins')
- ->willReturn($group);
- $this->subAdminManager
- ->expects($this->once())
- ->method('getGroupsSubAdmins')
- ->with($group)
- ->willReturn([
- $this->createUser('SubAdmin1'),
- $this->createUser('SubAdmin2'),
- ]);
- $result = $this->api->getSubAdminsOfGroup('GroupWithSubAdmins');
- $this->assertEquals(['SubAdmin1', 'SubAdmin2'], $result->getData());
- }
- public function testGetSubAdminsOfGroupEmptyList() {
- $group = $this->createGroup('GroupWithOutSubAdmins');
- $this->groupManager
- ->method('get')
- ->with('GroupWithOutSubAdmins')
- ->willReturn($group);
- $this->subAdminManager
- ->expects($this->once())
- ->method('getGroupsSubAdmins')
- ->with($group)
- ->willReturn([
- ]);
- $result = $this->api->getSubAdminsOfGroup('GroupWithOutSubAdmins');
- $this->assertEquals([], $result->getData());
- }
- /**
- * @expectedException \OCP\AppFramework\OCS\OCSException
- * @expectedExceptionCode 101
- * @expectedExceptionMessage Invalid group name
- */
- public function testAddGroupEmptyGroup() {
- $this->api->addGroup('');
- }
- /**
- * @expectedException \OCP\AppFramework\OCS\OCSException
- * @expectedExceptionCode 102
- */
- public function testAddGroupExistingGroup() {
- $this->groupManager
- ->method('groupExists')
- ->with('ExistingGroup')
- ->willReturn(true);
- $this->api->addGroup('ExistingGroup');
- }
- public function testAddGroup() {
- $this->groupManager
- ->method('groupExists')
- ->with('NewGroup')
- ->willReturn(false);
- $this->groupManager
- ->expects($this->once())
- ->method('createGroup')
- ->with('NewGroup');
- $this->api->addGroup('NewGroup');
- }
- public function testAddGroupWithSpecialChar() {
- $this->groupManager
- ->method('groupExists')
- ->with('Iñtërnâtiônàlizætiøn')
- ->willReturn(false);
- $this->groupManager
- ->expects($this->once())
- ->method('createGroup')
- ->with('Iñtërnâtiônàlizætiøn');
- $this->api->addGroup('Iñtërnâtiônàlizætiøn');
- }
- /**
- * @expectedException \OCP\AppFramework\OCS\OCSException
- * @expectedExceptionCode 101
- */
- public function testDeleteGroupNonExisting() {
- $this->api->deleteGroup('NonExistingGroup');
- }
- /**
- * @expectedException \OCP\AppFramework\OCS\OCSException
- * @expectedExceptionCode 102
- */
- public function testDeleteAdminGroup() {
- $this->groupManager
- ->method('groupExists')
- ->with('admin')
- ->willReturn('true');
- $this->api->deleteGroup('admin');
- }
- public function testDeleteGroup() {
- $this->groupManager
- ->method('groupExists')
- ->with('ExistingGroup')
- ->willReturn('true');
- $group = $this->createGroup('ExistingGroup');
- $this->groupManager
- ->method('get')
- ->with('ExistingGroup')
- ->willReturn($group);
- $group
- ->expects($this->once())
- ->method('delete')
- ->willReturn(true);
- $this->api->deleteGroup('ExistingGroup');
- }
- public function testGetGroupUsersDetails() {
- $gid = 'ncg1';
- $this->asAdmin();
- $this->useAccountManager();
- $users = [
- 'ncu1' => $this->createUser('ncu1'), # regular
- 'ncu2' => $this->createUser('ncu2'), # the zombie
- ];
- $users['ncu2']->expects($this->atLeastOnce())
- ->method('getHome')
- ->willThrowException(new NoUserException());
- $this->userManager->expects($this->any())
- ->method('get')
- ->willReturnCallback(function(string $uid) use ($users) {
- return isset($users[$uid]) ? $users[$uid] : null;
- });
- $group = $this->createGroup($gid);
- $group->expects($this->once())
- ->method('searchUsers')
- ->with('', null, 0)
- ->willReturn(array_values($users));
- $this->groupManager
- ->method('get')
- ->with($gid)
- ->willReturn($group);
- $this->groupManager->expects($this->any())
- ->method('getUserGroups')
- ->willReturn([$group]);
- /** @var \PHPUnit_Framework_MockObject_MockObject */
- $this->subAdminManager->expects($this->any())
- ->method('isSubAdminOfGroup')
- ->willReturn(false);
- $this->subAdminManager->expects($this->any())
- ->method('getSubAdminsGroups')
- ->willReturn([]);
- $this->api->getGroupUsersDetails($gid);
- }
- }
|