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;
|
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;
|
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();
|
2014-10-15 13:58:44 +04:00
|
|
|
|
2015-01-14 15:56:49 +03:00
|
|
|
$this->sharingCheckMiddleware = new SharingCheckMiddleware('files_sharing', $this->config, $this->appManager);
|
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-09-30 14:32:20 +03:00
|
|
|
public function testBeforeControllerWithSharingEnabled() {
|
|
|
|
$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
|
|
|
|
* @expectedExceptionMessage Sharing is disabled.
|
|
|
|
*/
|
|
|
|
public function testBeforeControllerWithSharingDisabled() {
|
|
|
|
$this->appManager
|
|
|
|
->expects($this->once())
|
|
|
|
->method('isEnabledForUser')
|
|
|
|
->with('files_sharing')
|
|
|
|
->will($this->returnValue(false));
|
|
|
|
|
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 \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')));
|
|
|
|
}
|
|
|
|
|
2014-10-15 13:58:44 +04:00
|
|
|
}
|