2014-12-04 16:15:55 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @author Lukas Reschke
|
|
|
|
* @copyright 2014 Lukas Reschke lukas@owncloud.com
|
|
|
|
*
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
2016-05-19 12:17:01 +03:00
|
|
|
namespace Tests\Settings\Middleware;
|
2014-12-04 16:15:55 +03:00
|
|
|
|
2016-04-22 16:28:48 +03:00
|
|
|
use OC\AppFramework\Middleware\Security\Exceptions\NotAdminException;
|
2014-12-04 16:15:55 +03:00
|
|
|
use OC\AppFramework\Utility\ControllerMethodReflector;
|
2016-05-19 12:17:01 +03:00
|
|
|
use OC\Settings\Middleware\SubadminMiddleware;
|
2014-12-04 16:15:55 +03:00
|
|
|
use OCP\AppFramework\Controller;
|
|
|
|
use OCP\AppFramework\Http\TemplateResponse;
|
2018-02-26 17:32:17 +03:00
|
|
|
use OCP\IL10N;
|
2014-12-04 16:15:55 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Verifies whether an user has at least subadmin rights.
|
|
|
|
* To bypass use the `@NoSubadminRequired` annotation
|
|
|
|
*
|
2016-05-19 12:17:01 +03:00
|
|
|
* @package Tests\Settings\Middleware
|
2014-12-04 16:15:55 +03:00
|
|
|
*/
|
|
|
|
class SubadminMiddlewareTest extends \Test\TestCase {
|
|
|
|
/** @var SubadminMiddleware */
|
|
|
|
private $subadminMiddlewareAsSubAdmin;
|
|
|
|
/** @var SubadminMiddleware */
|
|
|
|
private $subadminMiddleware;
|
|
|
|
/** @var ControllerMethodReflector */
|
|
|
|
private $reflector;
|
|
|
|
/** @var Controller */
|
|
|
|
private $controller;
|
2018-02-26 17:32:17 +03:00
|
|
|
/** @var IL10N */
|
|
|
|
private $l10n;
|
2014-12-04 16:15:55 +03:00
|
|
|
|
|
|
|
protected function setUp() {
|
2016-10-06 15:05:52 +03:00
|
|
|
parent::setUp();
|
2017-10-24 16:26:53 +03:00
|
|
|
$this->reflector = $this->getMockBuilder(ControllerMethodReflector::class)
|
2014-12-04 16:15:55 +03:00
|
|
|
->disableOriginalConstructor()->getMock();
|
2017-10-24 16:26:53 +03:00
|
|
|
$this->controller = $this->getMockBuilder(Controller::class)
|
2014-12-04 16:15:55 +03:00
|
|
|
->disableOriginalConstructor()->getMock();
|
2018-02-26 17:32:17 +03:00
|
|
|
$this->l10n = $this->createMock(IL10N::class);
|
2014-12-04 16:15:55 +03:00
|
|
|
|
2018-02-26 17:32:17 +03:00
|
|
|
$this->subadminMiddlewareAsSubAdmin = new SubadminMiddleware($this->reflector, true, $this->l10n);
|
|
|
|
$this->subadminMiddleware = new SubadminMiddleware($this->reflector, false, $this->l10n);
|
2014-12-04 16:15:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-04-22 16:28:48 +03:00
|
|
|
* @expectedException \OC\AppFramework\Middleware\Security\Exceptions\NotAdminException
|
2014-12-04 16:15:55 +03:00
|
|
|
*/
|
|
|
|
public function testBeforeControllerAsUserWithExemption() {
|
|
|
|
$this->reflector
|
|
|
|
->expects($this->once())
|
|
|
|
->method('hasAnnotation')
|
|
|
|
->with('NoSubadminRequired')
|
|
|
|
->will($this->returnValue(false));
|
|
|
|
$this->subadminMiddleware->beforeController($this->controller, 'foo');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function testBeforeControllerAsUserWithoutExemption() {
|
|
|
|
$this->reflector
|
|
|
|
->expects($this->once())
|
|
|
|
->method('hasAnnotation')
|
|
|
|
->with('NoSubadminRequired')
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
$this->subadminMiddleware->beforeController($this->controller, 'foo');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testBeforeControllerAsSubAdminWithoutExemption() {
|
|
|
|
$this->reflector
|
|
|
|
->expects($this->once())
|
|
|
|
->method('hasAnnotation')
|
|
|
|
->with('NoSubadminRequired')
|
|
|
|
->will($this->returnValue(false));
|
|
|
|
$this->subadminMiddlewareAsSubAdmin->beforeController($this->controller, 'foo');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testBeforeControllerAsSubAdminWithExemption() {
|
|
|
|
$this->reflector
|
|
|
|
->expects($this->once())
|
|
|
|
->method('hasAnnotation')
|
|
|
|
->with('NoSubadminRequired')
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
$this->subadminMiddlewareAsSubAdmin->beforeController($this->controller, 'foo');
|
|
|
|
}
|
|
|
|
|
2016-02-22 11:41:56 +03:00
|
|
|
public function testAfterNotAdminException() {
|
|
|
|
$expectedResponse = new TemplateResponse('core', '403', array(), 'guest');
|
|
|
|
$expectedResponse->setStatus(403);
|
2018-02-26 17:32:17 +03:00
|
|
|
$this->assertEquals($expectedResponse, $this->subadminMiddleware->afterException($this->controller, 'foo', new NotAdminException('')));
|
2016-02-22 11:41:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @expectedException \Exception
|
|
|
|
*/
|
|
|
|
public function testAfterRegularException() {
|
2014-12-04 16:15:55 +03:00
|
|
|
$expectedResponse = new TemplateResponse('core', '403', array(), 'guest');
|
2015-01-29 14:04:54 +03:00
|
|
|
$expectedResponse->setStatus(403);
|
2016-02-22 11:41:56 +03:00
|
|
|
$this->subadminMiddleware->afterException($this->controller, 'foo', new \Exception());
|
2014-12-04 16:15:55 +03:00
|
|
|
}
|
2015-01-29 14:04:54 +03:00
|
|
|
}
|