2014-12-04 16:15:55 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright 2014 Lukas Reschke lukas@owncloud.com
|
|
|
|
*
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
|
|
|
* @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>
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
2014-12-04 16:15:55 +03:00
|
|
|
*/
|
|
|
|
|
2019-09-17 17:33:27 +03:00
|
|
|
namespace OCA\Settings\Tests\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;
|
2019-09-17 17:33:27 +03:00
|
|
|
use OCA\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.
|
2020-06-23 21:18:38 +03:00
|
|
|
* To bypass use the `@NoSubAdminRequired` annotation
|
2014-12-04 16:15:55 +03:00
|
|
|
*
|
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
|
|
|
|
2019-11-21 18:40:38 +03:00
|
|
|
protected function setUp(): void {
|
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
|
|
|
}
|
|
|
|
|
2020-06-23 21:18:38 +03:00
|
|
|
|
2014-12-04 16:15:55 +03:00
|
|
|
public function testBeforeControllerAsUserWithExemption() {
|
2019-11-27 17:27:18 +03:00
|
|
|
$this->expectException(\OC\AppFramework\Middleware\Security\Exceptions\NotAdminException::class);
|
|
|
|
|
2014-12-04 16:15:55 +03:00
|
|
|
$this->reflector
|
|
|
|
->expects($this->once())
|
|
|
|
->method('hasAnnotation')
|
2020-06-23 21:18:38 +03:00
|
|
|
->with('NoSubAdminRequired')
|
2020-03-26 00:21:27 +03:00
|
|
|
->willReturn(false);
|
2014-12-04 16:15:55 +03:00
|
|
|
$this->subadminMiddleware->beforeController($this->controller, 'foo');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function testBeforeControllerAsUserWithoutExemption() {
|
|
|
|
$this->reflector
|
|
|
|
->expects($this->once())
|
|
|
|
->method('hasAnnotation')
|
2020-06-23 21:18:38 +03:00
|
|
|
->with('NoSubAdminRequired')
|
2020-03-26 00:21:27 +03:00
|
|
|
->willReturn(true);
|
2014-12-04 16:15:55 +03:00
|
|
|
$this->subadminMiddleware->beforeController($this->controller, 'foo');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testBeforeControllerAsSubAdminWithoutExemption() {
|
|
|
|
$this->reflector
|
|
|
|
->expects($this->once())
|
|
|
|
->method('hasAnnotation')
|
2020-06-23 21:18:38 +03:00
|
|
|
->with('NoSubAdminRequired')
|
2020-03-26 00:21:27 +03:00
|
|
|
->willReturn(false);
|
2014-12-04 16:15:55 +03:00
|
|
|
$this->subadminMiddlewareAsSubAdmin->beforeController($this->controller, 'foo');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testBeforeControllerAsSubAdminWithExemption() {
|
|
|
|
$this->reflector
|
|
|
|
->expects($this->once())
|
|
|
|
->method('hasAnnotation')
|
2020-06-23 21:18:38 +03:00
|
|
|
->with('NoSubAdminRequired')
|
2020-03-26 00:21:27 +03:00
|
|
|
->willReturn(true);
|
2014-12-04 16:15:55 +03:00
|
|
|
$this->subadminMiddlewareAsSubAdmin->beforeController($this->controller, 'foo');
|
|
|
|
}
|
|
|
|
|
2016-02-22 11:41:56 +03:00
|
|
|
public function testAfterNotAdminException() {
|
2020-03-26 11:30:18 +03:00
|
|
|
$expectedResponse = new TemplateResponse('core', '403', [], 'guest');
|
2016-02-22 11:41:56 +03:00
|
|
|
$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
|
|
|
}
|
|
|
|
|
2020-06-23 21:18:38 +03:00
|
|
|
|
2016-02-22 11:41:56 +03:00
|
|
|
public function testAfterRegularException() {
|
2019-11-27 17:27:18 +03:00
|
|
|
$this->expectException(\Exception::class);
|
|
|
|
|
2020-03-26 11:30:18 +03:00
|
|
|
$expectedResponse = new TemplateResponse('core', '403', [], '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
|
|
|
}
|