throw 101 when an empty group string is provided
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
This commit is contained in:
parent
60e0de4a36
commit
a62b4a68a0
|
@ -604,7 +604,7 @@ class UsersController extends OCSController {
|
||||||
public function removeFromGroup($userId, $groupid) {
|
public function removeFromGroup($userId, $groupid) {
|
||||||
$loggedInUser = $this->userSession->getUser();
|
$loggedInUser = $this->userSession->getUser();
|
||||||
|
|
||||||
if($groupid === null) {
|
if($groupid === null || trim($groupid) === '') {
|
||||||
throw new OCSException('', 101);
|
throw new OCSException('', 101);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2117,6 +2117,20 @@ class UsersControllerTest extends TestCase {
|
||||||
$this->api->removeFromGroup('TargetUser', null);
|
$this->api->removeFromGroup('TargetUser', null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @expectedException \OCP\AppFramework\OCS\OCSException
|
||||||
|
* @expectedExceptionCode 101
|
||||||
|
*/
|
||||||
|
public function testRemoveFromGroupWithEmptyTargetGroup() {
|
||||||
|
$loggedInUser = $this->getMockBuilder('\OCP\IUser')->disableOriginalConstructor()->getMock();
|
||||||
|
$this->userSession
|
||||||
|
->expects($this->once())
|
||||||
|
->method('getUser')
|
||||||
|
->will($this->returnValue($loggedInUser));
|
||||||
|
|
||||||
|
$this->api->removeFromGroup('TargetUser', '');
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @expectedException \OCP\AppFramework\OCS\OCSException
|
* @expectedException \OCP\AppFramework\OCS\OCSException
|
||||||
* @expectedExceptionCode 102
|
* @expectedExceptionCode 102
|
||||||
|
|
Loading…
Reference in New Issue