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>
|
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 {
|
|
|
|
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-01-07 12:34:42 +03:00
|
|
|
$group = $this->getUniqueID();
|
2014-12-22 16:54:50 +03:00
|
|
|
\OC_Group::createGroup($group);
|
|
|
|
\OC_Group::addToGroup($users[1], $group);
|
|
|
|
|
|
|
|
$result = \OCA\provisioning_api\Groups::getGroup(array(
|
|
|
|
'groupid' => $group,
|
|
|
|
));
|
|
|
|
|
|
|
|
$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-01-07 12:34:42 +03:00
|
|
|
$group = $this->getUniqueID();
|
2014-12-22 16:54:50 +03:00
|
|
|
\OC_Group::createGroup($group);
|
|
|
|
\OC_Group::addToGroup($users[0], $group);
|
2015-01-02 22:07:31 +03:00
|
|
|
\OC_Group::addToGroup($users[1], $group);
|
2014-12-22 16:54:50 +03:00
|
|
|
|
|
|
|
\OC_SubAdmin::createSubAdmin($users[0], $group);
|
|
|
|
|
|
|
|
$result = \OCA\provisioning_api\Groups::getGroup(array(
|
|
|
|
'groupid' => $group,
|
|
|
|
));
|
|
|
|
|
|
|
|
$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-01-07 12:34:42 +03:00
|
|
|
$group = $this->getUniqueID();
|
2014-12-22 16:54:50 +03:00
|
|
|
\OC_Group::createGroup($group);
|
2015-01-07 12:34:42 +03:00
|
|
|
$group2 = $this->getUniqueID();
|
2014-12-22 16:54:50 +03:00
|
|
|
\OC_Group::createGroup($group2);
|
|
|
|
\OC_Group::addToGroup($users[1], $group);
|
|
|
|
\OC_Group::addToGroup($users[0], $group2);
|
|
|
|
|
|
|
|
\OC_SubAdmin::createSubAdmin($users[0], $group2);
|
|
|
|
|
|
|
|
$result = \OCA\provisioning_api\Groups::getGroup(array(
|
|
|
|
'groupid' => $group,
|
|
|
|
));
|
|
|
|
|
|
|
|
$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-01-07 12:34:42 +03:00
|
|
|
$group = $this->getUniqueID();
|
2014-12-22 16:54:50 +03:00
|
|
|
\OC_Group::createGroup($group);
|
|
|
|
|
|
|
|
\OC_Group::addToGroup($users[1], $group);
|
|
|
|
\OC_Group::addToGroup($users[0], 'admin');
|
|
|
|
|
|
|
|
$result = \OCA\provisioning_api\Groups::getGroup(array(
|
|
|
|
'groupid' => $group,
|
|
|
|
));
|
|
|
|
|
|
|
|
$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-01-07 12:34:42 +03:00
|
|
|
\OC_Group::addToGroup($user1, 'admin');
|
|
|
|
$group1 = $this->getUniqueID();
|
|
|
|
\OC_Group::createGroup($group1);
|
|
|
|
\OC_SubAdmin::createSubAdmin($user2, $group1);
|
2014-12-22 16:54:50 +03:00
|
|
|
$result = \OCA\provisioning_api\Groups::getSubAdminsOfGroup(array(
|
|
|
|
'groupid' => $group1,
|
|
|
|
));
|
|
|
|
$this->assertInstanceOf('OC_OCS_Result', $result);
|
|
|
|
$this->assertTrue($result->succeeded());
|
|
|
|
$data = $result->getData();
|
|
|
|
$this->assertEquals($user2, reset($data));
|
2015-01-07 12:34:42 +03:00
|
|
|
\OC_Group::deleteGroup($group1);
|
2014-12-22 16:54:50 +03:00
|
|
|
|
|
|
|
$user1 = $this->generateUsers();
|
2015-05-18 13:28:54 +03:00
|
|
|
self::loginAsUser($user1);
|
2015-01-07 12:34:42 +03:00
|
|
|
\OC_Group::addToGroup($user1, 'admin');
|
2014-12-22 16:54:50 +03:00
|
|
|
$result = \OCA\provisioning_api\Groups::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());
|
|
|
|
}
|
|
|
|
}
|