2014-12-22 16:54:50 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Joas Schilling <nickvergessen@owncloud.com>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Tom Needham <tom@owncloud.com>
|
2015-06-25 12:43:55 +03:00
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
2014-12-22 16:54:50 +03:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @license AGPL-3.0
|
2014-12-22 16:54:50 +03:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* 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.
|
2014-12-22 16:54:50 +03:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2014-12-22 16:54:50 +03:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 13:44:34 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2014-12-22 16:54:50 +03:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* 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/>
|
2014-12-22 16:54:50 +03:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2015-01-07 12:34:42 +03:00
|
|
|
namespace OCA\Provisioning_API\Tests;
|
2014-12-22 16:54:50 +03:00
|
|
|
|
2015-01-07 12:34:42 +03:00
|
|
|
class GroupsTest extends TestCase {
|
2015-07-25 15:32:49 +03:00
|
|
|
|
|
|
|
protected function setup() {
|
|
|
|
parent::setup();
|
|
|
|
|
|
|
|
$this->userManager = \OC::$server->getUserManager();
|
|
|
|
$this->groupManager = \OC::$server->getGroupManager();
|
2015-07-25 16:01:31 +03:00
|
|
|
$this->userSession = \OC::$server->getUserSession();
|
|
|
|
$this->api = new \OCA\Provisioning_API\Groups(
|
|
|
|
$this->groupManager,
|
|
|
|
$this->userSession
|
|
|
|
);
|
2015-07-25 15:32:49 +03:00
|
|
|
}
|
|
|
|
|
2015-01-07 12:34:42 +03:00
|
|
|
public function testGetGroupAsUser() {
|
2014-12-22 16:54:50 +03:00
|
|
|
|
|
|
|
$users = $this->generateUsers(2);
|
2015-05-18 13:28:54 +03:00
|
|
|
self::loginAsUser($users[0]);
|
2014-12-22 16:54:50 +03:00
|
|
|
|
2015-07-25 15:32:49 +03:00
|
|
|
$group = $this->groupManager->createGroup($this->getUniqueID());
|
|
|
|
$group->addUser($this->userManager->get($users[1]));
|
2014-12-22 16:54:50 +03:00
|
|
|
|
2015-07-25 15:32:49 +03:00
|
|
|
$result = $this->api->getGroup(array(
|
|
|
|
'groupid' => $group->getGID(),
|
2014-12-22 16:54:50 +03:00
|
|
|
));
|
|
|
|
|
|
|
|
$this->assertInstanceOf('OC_OCS_Result', $result);
|
|
|
|
$this->assertFalse($result->succeeded());
|
2015-04-18 11:30:02 +03:00
|
|
|
$this->assertEquals(\OCP\API::RESPOND_UNAUTHORISED, $result->getStatusCode());
|
2014-12-22 16:54:50 +03:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-01-07 12:34:42 +03:00
|
|
|
public function testGetGroupAsSubadmin() {
|
2014-12-22 16:54:50 +03:00
|
|
|
|
|
|
|
$users = $this->generateUsers(2);
|
2015-05-18 13:28:54 +03:00
|
|
|
self::loginAsUser($users[0]);
|
2014-12-22 16:54:50 +03:00
|
|
|
|
2015-07-25 15:32:49 +03:00
|
|
|
$group = $this->groupManager->createGroup($this->getUniqueID());
|
|
|
|
$group->addUser($this->userManager->get($users[0]));
|
|
|
|
$group->addUser($this->userManager->get($users[1]));
|
2014-12-22 16:54:50 +03:00
|
|
|
|
2015-07-25 15:32:49 +03:00
|
|
|
\OC_SubAdmin::createSubAdmin($users[0], $group->getGID());
|
2014-12-22 16:54:50 +03:00
|
|
|
|
2015-07-25 15:32:49 +03:00
|
|
|
$result = $this->api->getGroup(array(
|
|
|
|
'groupid' => $group->getGID(),
|
2014-12-22 16:54:50 +03:00
|
|
|
));
|
|
|
|
|
|
|
|
$this->assertInstanceOf('OC_OCS_Result', $result);
|
|
|
|
$this->assertTrue($result->succeeded());
|
2015-02-25 18:21:18 +03:00
|
|
|
$this->assertEquals(1, sizeof($result->getData()), 'Asserting the result data array only has the "users" key');
|
|
|
|
$this->assertArrayHasKey('users', $result->getData());
|
|
|
|
$resultData = $result->getData();
|
|
|
|
$resultData = $resultData['users'];
|
|
|
|
|
|
|
|
sort($users);
|
|
|
|
sort($resultData);
|
|
|
|
$this->assertEquals($users, $resultData);
|
2014-12-22 16:54:50 +03:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-01-07 12:34:42 +03:00
|
|
|
public function testGetGroupAsIrrelevantSubadmin() {
|
2014-12-22 16:54:50 +03:00
|
|
|
|
|
|
|
$users = $this->generateUsers(2);
|
2015-05-18 13:28:54 +03:00
|
|
|
self::loginAsUser($users[0]);
|
2014-12-22 16:54:50 +03:00
|
|
|
|
2015-07-25 15:32:49 +03:00
|
|
|
$group1 = $this->groupManager->createGroup($this->getUniqueID());
|
|
|
|
$group2 = $this->groupManager->createGroup($this->getUniqueID());
|
|
|
|
$group1->addUser($this->userManager->get($users[1]));
|
|
|
|
$group2->addUser($this->userManager->get($users[0]));
|
2014-12-22 16:54:50 +03:00
|
|
|
|
2015-07-25 15:32:49 +03:00
|
|
|
\OC_SubAdmin::createSubAdmin($users[0], $group2->getGID());
|
2014-12-22 16:54:50 +03:00
|
|
|
|
2015-07-25 15:32:49 +03:00
|
|
|
$result = $this->api->getGroup(array(
|
|
|
|
'groupid' => $group1->getGID(),
|
2014-12-22 16:54:50 +03:00
|
|
|
));
|
|
|
|
|
|
|
|
$this->assertInstanceOf('OC_OCS_Result', $result);
|
|
|
|
$this->assertFalse($result->succeeded());
|
2015-04-18 11:30:02 +03:00
|
|
|
$this->assertEquals(\OCP\API::RESPOND_UNAUTHORISED, $result->getStatusCode());
|
2014-12-22 16:54:50 +03:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-01-07 12:34:42 +03:00
|
|
|
public function testGetGroupAsAdmin() {
|
2014-12-22 16:54:50 +03:00
|
|
|
|
|
|
|
$users = $this->generateUsers(2);
|
2015-05-18 13:28:54 +03:00
|
|
|
self::loginAsUser($users[0]);
|
2014-12-22 16:54:50 +03:00
|
|
|
|
2015-07-25 15:32:49 +03:00
|
|
|
$group = $this->groupManager->createGroup($this->getUniqueID());
|
2014-12-22 16:54:50 +03:00
|
|
|
|
2015-07-25 15:32:49 +03:00
|
|
|
$group->addUser($this->userManager->get($users[1]));
|
|
|
|
$this->groupManager->get('admin')->addUser($this->userManager->get($users[0]));
|
2014-12-22 16:54:50 +03:00
|
|
|
|
2015-07-25 15:32:49 +03:00
|
|
|
$result = $this->api->getGroup(array(
|
|
|
|
'groupid' => $group->getGID(),
|
2014-12-22 16:54:50 +03:00
|
|
|
));
|
|
|
|
|
|
|
|
$this->assertInstanceOf('OC_OCS_Result', $result);
|
|
|
|
$this->assertTrue($result->succeeded());
|
|
|
|
$this->assertEquals(array('users' => array($users[1])), $result->getData());
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-01-07 12:34:42 +03:00
|
|
|
public function testGetSubAdminsOfGroup() {
|
2014-12-22 16:54:50 +03:00
|
|
|
$user1 = $this->generateUsers();
|
|
|
|
$user2 = $this->generateUsers();
|
2015-05-18 13:28:54 +03:00
|
|
|
self::loginAsUser($user1);
|
2015-07-25 15:32:49 +03:00
|
|
|
$this->groupManager->get('admin')->addUser($this->userManager->get($user1));
|
|
|
|
$group1 = $this->groupManager->createGroup($this->getUniqueID());
|
|
|
|
\OC_SubAdmin::createSubAdmin($user2, $group1->getGID());
|
|
|
|
$result = $this->api->getSubAdminsOfGroup(array(
|
|
|
|
'groupid' => $group1->getGID(),
|
2014-12-22 16:54:50 +03:00
|
|
|
));
|
|
|
|
$this->assertInstanceOf('OC_OCS_Result', $result);
|
|
|
|
$this->assertTrue($result->succeeded());
|
|
|
|
$data = $result->getData();
|
|
|
|
$this->assertEquals($user2, reset($data));
|
2015-07-25 15:32:49 +03:00
|
|
|
$group1->delete();
|
2014-12-22 16:54:50 +03:00
|
|
|
|
|
|
|
$user1 = $this->generateUsers();
|
2015-05-18 13:28:54 +03:00
|
|
|
self::loginAsUser($user1);
|
2015-07-25 15:32:49 +03:00
|
|
|
$this->groupManager->get('admin')->addUser($this->userManager->get($user1));
|
|
|
|
$result = $this->api->getSubAdminsOfGroup(array(
|
2015-01-07 12:34:42 +03:00
|
|
|
'groupid' => $this->getUniqueID(),
|
2014-12-22 16:54:50 +03:00
|
|
|
));
|
|
|
|
$this->assertInstanceOf('OC_OCS_Result', $result);
|
|
|
|
$this->assertFalse($result->succeeded());
|
|
|
|
$this->assertEquals(101, $result->getStatusCode());
|
|
|
|
}
|
|
|
|
}
|