2014-10-15 13:58:44 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2015-06-25 12:43:55 +03:00
|
|
|
* @author Joas Schilling <nickvergessen@owncloud.com>
|
2014-10-15 13:58:44 +04:00
|
|
|
* @author Lukas Reschke <lukas@owncloud.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2014-10-15 13:58:44 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2014-10-15 13:58:44 +04:00
|
|
|
namespace OCA\Files_Sharing\Middleware;
|
2015-09-30 14:32:20 +03:00
|
|
|
use OCP\AppFramework\Http\NotFoundResponse;
|
|
|
|
use OCP\Files\NotFoundException;
|
2015-10-02 10:57:33 +03:00
|
|
|
use OCP\AppFramework\Utility\IControllerMethodReflector;
|
|
|
|
use OCA\Files_Sharing\Exceptions\S2SException;
|
|
|
|
use OCP\AppFramework\Http\JSONResponse;
|
2014-10-15 13:58:44 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @package OCA\Files_Sharing\Middleware\SharingCheckMiddleware
|
|
|
|
*/
|
2015-01-14 15:56:49 +03:00
|
|
|
class SharingCheckMiddlewareTest extends \Test\TestCase {
|
2014-10-15 13:58:44 +04:00
|
|
|
|
2015-01-14 15:56:49 +03:00
|
|
|
/** @var \OCP\IConfig */
|
|
|
|
private $config;
|
|
|
|
/** @var \OCP\App\IAppManager */
|
|
|
|
private $appManager;
|
2014-10-15 13:58:44 +04:00
|
|
|
/** @var SharingCheckMiddleware */
|
|
|
|
private $sharingCheckMiddleware;
|
2015-09-30 14:32:20 +03:00
|
|
|
/** @var \OCP\AppFramework\Controller */
|
|
|
|
private $controllerMock;
|
2015-10-02 10:57:33 +03:00
|
|
|
/** @var IControllerMethodReflector */
|
|
|
|
private $reflector;
|
2014-10-15 13:58:44 +04:00
|
|
|
|
|
|
|
protected function setUp() {
|
2015-01-14 15:56:49 +03:00
|
|
|
$this->config = $this->getMockBuilder('\OCP\IConfig')
|
2014-10-15 13:58:44 +04:00
|
|
|
->disableOriginalConstructor()->getMock();
|
2015-01-14 15:56:49 +03:00
|
|
|
$this->appManager = $this->getMockBuilder('\OCP\App\IAppManager')
|
2014-10-15 13:58:44 +04:00
|
|
|
->disableOriginalConstructor()->getMock();
|
2015-09-30 14:32:20 +03:00
|
|
|
$this->controllerMock = $this->getMockBuilder('\OCP\AppFramework\Controller')
|
|
|
|
->disableOriginalConstructor()->getMock();
|
2015-10-02 10:57:33 +03:00
|
|
|
$this->reflector = $this->getMockBuilder('\OCP\AppFramework\Utility\IControllerMethodReflector')
|
|
|
|
->disableOriginalConstructor()->getMock();
|
2014-10-15 13:58:44 +04:00
|
|
|
|
2015-10-02 10:57:33 +03:00
|
|
|
$this->sharingCheckMiddleware = new SharingCheckMiddleware(
|
|
|
|
'files_sharing',
|
|
|
|
$this->config,
|
|
|
|
$this->appManager,
|
|
|
|
$this->reflector);
|
2014-10-15 13:58:44 +04:00
|
|
|
}
|
|
|
|
|
2015-09-30 22:35:52 +03:00
|
|
|
public function testIsSharingEnabledWithAppEnabled() {
|
2015-01-14 15:56:49 +03:00
|
|
|
$this->appManager
|
2014-10-15 13:58:44 +04:00
|
|
|
->expects($this->once())
|
2015-01-14 15:56:49 +03:00
|
|
|
->method('isEnabledForUser')
|
2014-10-15 13:58:44 +04:00
|
|
|
->with('files_sharing')
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
|
2015-09-30 22:35:52 +03:00
|
|
|
$this->assertTrue(self::invokePrivate($this->sharingCheckMiddleware, 'isSharingEnabled'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testIsSharingEnabledWithAppDisabled() {
|
|
|
|
$this->appManager
|
|
|
|
->expects($this->once())
|
|
|
|
->method('isEnabledForUser')
|
|
|
|
->with('files_sharing')
|
|
|
|
->will($this->returnValue(false));
|
|
|
|
|
|
|
|
$this->assertFalse(self::invokePrivate($this->sharingCheckMiddleware, 'isSharingEnabled'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testIsLinkSharingEnabledWithEverythinEnabled() {
|
2015-01-14 15:56:49 +03:00
|
|
|
$this->config
|
2015-09-22 15:47:04 +03:00
|
|
|
->expects($this->at(0))
|
|
|
|
->method('getAppValue')
|
|
|
|
->with('core', 'shareapi_enabled', 'yes')
|
|
|
|
->will($this->returnValue('yes'));
|
|
|
|
|
|
|
|
$this->config
|
|
|
|
->expects($this->at(1))
|
2015-01-14 15:56:49 +03:00
|
|
|
->method('getAppValue')
|
2014-10-15 13:58:44 +04:00
|
|
|
->with('core', 'shareapi_allow_links', 'yes')
|
|
|
|
->will($this->returnValue('yes'));
|
|
|
|
|
2015-09-30 22:35:52 +03:00
|
|
|
$this->assertTrue(self::invokePrivate($this->sharingCheckMiddleware, 'isLinkSharingEnabled'));
|
2014-10-15 13:58:44 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-30 22:35:52 +03:00
|
|
|
public function testIsLinkSharingEnabledWithLinkSharingDisabled() {
|
2015-01-14 15:56:49 +03:00
|
|
|
$this->config
|
2015-09-22 15:47:04 +03:00
|
|
|
->expects($this->at(0))
|
|
|
|
->method('getAppValue')
|
|
|
|
->with('core', 'shareapi_enabled', 'yes')
|
|
|
|
->will($this->returnValue('yes'));
|
|
|
|
|
|
|
|
$this->config
|
|
|
|
->expects($this->at(1))
|
2015-01-14 15:56:49 +03:00
|
|
|
->method('getAppValue')
|
2014-10-15 13:58:44 +04:00
|
|
|
->with('core', 'shareapi_allow_links', 'yes')
|
|
|
|
->will($this->returnValue('no'));
|
|
|
|
|
2015-09-30 22:35:52 +03:00
|
|
|
$this->assertFalse(self::invokePrivate($this->sharingCheckMiddleware, 'isLinkSharingEnabled'));
|
2014-10-15 13:58:44 +04:00
|
|
|
}
|
2015-09-22 15:47:04 +03:00
|
|
|
|
2015-09-30 22:35:52 +03:00
|
|
|
public function testIsLinkSharingEnabledWithSharingAPIDisabled() {
|
2015-09-22 15:47:04 +03:00
|
|
|
$this->config
|
|
|
|
->expects($this->once())
|
|
|
|
->method('getAppValue')
|
|
|
|
->with('core', 'shareapi_enabled', 'yes')
|
|
|
|
->will($this->returnValue('no'));
|
|
|
|
|
2015-09-30 22:35:52 +03:00
|
|
|
$this->assertFalse(self::invokePrivate($this->sharingCheckMiddleware, 'isLinkSharingEnabled'));
|
2015-09-22 15:47:04 +03:00
|
|
|
}
|
|
|
|
|
2015-10-02 10:57:33 +03:00
|
|
|
public function externalSharesChecksDataProvider() {
|
|
|
|
|
|
|
|
$data = [];
|
|
|
|
|
|
|
|
foreach ([false, true] as $annIn) {
|
|
|
|
foreach ([false, true] as $annOut) {
|
|
|
|
foreach ([false, true] as $confIn) {
|
|
|
|
foreach ([false, true] as $confOut) {
|
|
|
|
|
|
|
|
$res = true;
|
|
|
|
if (!$annIn && !$confIn) {
|
|
|
|
$res = false;
|
|
|
|
} elseif (!$annOut && !$confOut) {
|
|
|
|
$res = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$d = [
|
|
|
|
[
|
|
|
|
['NoIncomingFederatedSharingRequired', $annIn],
|
|
|
|
['NoOutgoingFederatedSharingRequired', $annOut],
|
|
|
|
],
|
|
|
|
[
|
|
|
|
['files_sharing', 'incoming_server2server_share_enabled', 'yes', $confIn ? 'yes' : 'no'],
|
|
|
|
['files_sharing', 'outgoing_server2server_share_enabled', 'yes', $confOut ? 'yes' : 'no'],
|
|
|
|
],
|
|
|
|
$res
|
|
|
|
];
|
|
|
|
|
|
|
|
$data[] = $d;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider externalSharesChecksDataProvider
|
|
|
|
*/
|
|
|
|
public function testExternalSharesChecks($annotations, $config, $expectedResult) {
|
|
|
|
$this->reflector
|
|
|
|
->expects($this->atLeastOnce())
|
|
|
|
->method('hasAnnotation')
|
|
|
|
->will($this->returnValueMap($annotations));
|
|
|
|
|
|
|
|
$this->config
|
|
|
|
->method('getAppValue')
|
|
|
|
->will($this->returnValueMap($config));
|
|
|
|
|
|
|
|
$this->assertEquals($expectedResult, self::invokePrivate($this->sharingCheckMiddleware, 'externalSharesChecks'));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider externalSharesChecksDataProvider
|
|
|
|
*/
|
|
|
|
public function testBeforeControllerWithExternalShareControllerWithSharingEnabled($annotations, $config, $noException) {
|
|
|
|
$this->appManager
|
|
|
|
->expects($this->once())
|
|
|
|
->method('isEnabledForUser')
|
|
|
|
->with('files_sharing')
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
|
|
|
|
$this->reflector
|
|
|
|
->expects($this->atLeastOnce())
|
|
|
|
->method('hasAnnotation')
|
|
|
|
->will($this->returnValueMap($annotations));
|
|
|
|
|
|
|
|
$this->config
|
|
|
|
->method('getAppValue')
|
|
|
|
->will($this->returnValueMap($config));
|
|
|
|
|
|
|
|
$controller = $this->getMockBuilder('\OCA\Files_Sharing\Controllers\ExternalSharesController')
|
|
|
|
->disableOriginalConstructor()->getMock();
|
|
|
|
|
|
|
|
$exceptionThrown = false;
|
|
|
|
|
|
|
|
try {
|
|
|
|
$this->sharingCheckMiddleware->beforeController($controller, 'myMethod');
|
|
|
|
} catch (\OCA\Files_Sharing\Exceptions\S2SException $exception) {
|
|
|
|
$exceptionThrown = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->assertNotEquals($noException, $exceptionThrown);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testBeforeControllerWithShareControllerWithSharingEnabled() {
|
2015-09-30 14:32:20 +03:00
|
|
|
$this->appManager
|
|
|
|
->expects($this->once())
|
|
|
|
->method('isEnabledForUser')
|
|
|
|
->with('files_sharing')
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
|
|
|
|
$this->config
|
|
|
|
->expects($this->at(0))
|
|
|
|
->method('getAppValue')
|
|
|
|
->with('core', 'shareapi_enabled', 'yes')
|
|
|
|
->will($this->returnValue('yes'));
|
|
|
|
|
|
|
|
$this->config
|
|
|
|
->expects($this->at(1))
|
|
|
|
->method('getAppValue')
|
|
|
|
->with('core', 'shareapi_allow_links', 'yes')
|
|
|
|
->will($this->returnValue('yes'));
|
|
|
|
|
2015-09-30 22:35:52 +03:00
|
|
|
$controller = $this->getMockBuilder('\OCA\Files_Sharing\Controllers\ShareController')
|
|
|
|
->disableOriginalConstructor()->getMock();
|
|
|
|
|
|
|
|
$this->sharingCheckMiddleware->beforeController($controller, 'myMethod');
|
2015-09-30 14:32:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @expectedException \OCP\Files\NotFoundException
|
2015-10-02 10:57:33 +03:00
|
|
|
* @expectedExceptionMessage Link sharing is disabled
|
2015-09-30 14:32:20 +03:00
|
|
|
*/
|
2015-10-02 10:57:33 +03:00
|
|
|
public function testBeforeControllerWithShareControllerWithSharingEnabledAPIDisabled() {
|
2015-09-30 14:32:20 +03:00
|
|
|
$this->appManager
|
|
|
|
->expects($this->once())
|
|
|
|
->method('isEnabledForUser')
|
|
|
|
->with('files_sharing')
|
2015-10-02 10:57:33 +03:00
|
|
|
->will($this->returnValue(true));
|
2015-09-30 14:32:20 +03:00
|
|
|
|
2015-09-30 22:35:52 +03:00
|
|
|
$controller = $this->getMockBuilder('\OCA\Files_Sharing\Controllers\ShareController')
|
|
|
|
->disableOriginalConstructor()->getMock();
|
|
|
|
|
|
|
|
$this->sharingCheckMiddleware->beforeController($controller, 'myMethod');
|
2015-09-30 14:32:20 +03:00
|
|
|
}
|
|
|
|
|
2015-10-02 10:57:33 +03:00
|
|
|
/**
|
|
|
|
* @expectedException \OCP\Files\NotFoundException
|
|
|
|
* @expectedExceptionMessage Sharing is disabled.
|
|
|
|
*/
|
|
|
|
public function testBeforeControllerWithSharingDisabled() {
|
|
|
|
$this->appManager
|
|
|
|
->expects($this->once())
|
|
|
|
->method('isEnabledForUser')
|
|
|
|
->with('files_sharing')
|
|
|
|
->will($this->returnValue(false));
|
|
|
|
|
|
|
|
$this->sharingCheckMiddleware->beforeController($this->controllerMock, 'myMethod');
|
|
|
|
}
|
|
|
|
|
2015-09-30 14:32:20 +03:00
|
|
|
/**
|
|
|
|
* @expectedException \Exception
|
|
|
|
* @expectedExceptionMessage My Exception message
|
|
|
|
*/
|
|
|
|
public function testAfterExceptionWithRegularException() {
|
|
|
|
$this->sharingCheckMiddleware->afterException($this->controllerMock, 'myMethod', new \Exception('My Exception message'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testAfterExceptionWithNotFoundException() {
|
|
|
|
$this->assertEquals(new NotFoundResponse(), $this->sharingCheckMiddleware->afterException($this->controllerMock, 'myMethod', new NotFoundException('My Exception message')));
|
|
|
|
}
|
|
|
|
|
2015-10-02 10:57:33 +03:00
|
|
|
public function testAfterExceptionWithS2SException() {
|
|
|
|
$this->assertEquals(new JSONResponse('My Exception message', 405), $this->sharingCheckMiddleware->afterException($this->controllerMock, 'myMethod', new S2SException('My Exception message')));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-10-15 13:58:44 +04:00
|
|
|
}
|