2014-06-25 16:53:31 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2020-03-31 11:49:10 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2020-12-16 16:54:15 +03:00
|
|
|
* @author Vincent Petry <vincent@nextcloud.com>
|
2014-06-25 16:53:31 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
2014-06-25 16:53:31 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* 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.
|
2014-06-25 16:53:31 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2014-06-25 16:53:31 +04:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 13:44:34 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2014-06-25 16:53:31 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2014-06-25 16:53:31 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2016-05-17 12:42:03 +03:00
|
|
|
namespace OCA\Files_Sharing\Tests;
|
2020-04-09 12:48:10 +03:00
|
|
|
|
2017-01-27 14:52:17 +03:00
|
|
|
use OC\Federation\CloudId;
|
2016-09-29 01:22:32 +03:00
|
|
|
use OCP\Http\Client\IClient;
|
|
|
|
use OCP\Http\Client\IClientService;
|
|
|
|
use OCP\Http\Client\IResponse;
|
2016-05-17 12:42:03 +03:00
|
|
|
|
2015-02-26 13:37:37 +03:00
|
|
|
/**
|
|
|
|
* Tests for the external Storage class for remote shares.
|
2015-11-20 13:27:11 +03:00
|
|
|
*
|
|
|
|
* @group DB
|
2015-02-26 13:37:37 +03:00
|
|
|
*/
|
2016-05-17 12:42:03 +03:00
|
|
|
class ExternalStorageTest extends \Test\TestCase {
|
2020-04-10 17:51:06 +03:00
|
|
|
public function optionsProvider() {
|
2020-03-26 11:30:18 +03:00
|
|
|
return [
|
|
|
|
[
|
2014-06-25 16:53:31 +04:00
|
|
|
'http://remoteserver:8080/owncloud',
|
|
|
|
'http://remoteserver:8080/owncloud/public.php/webdav/',
|
2020-03-26 11:30:18 +03:00
|
|
|
],
|
2014-06-25 16:53:31 +04:00
|
|
|
// extra slash
|
2020-03-26 11:30:18 +03:00
|
|
|
[
|
2014-06-25 16:53:31 +04:00
|
|
|
'http://remoteserver:8080/owncloud/',
|
|
|
|
'http://remoteserver:8080/owncloud/public.php/webdav/',
|
2020-03-26 11:30:18 +03:00
|
|
|
],
|
2014-06-25 16:53:31 +04:00
|
|
|
// extra path
|
2020-03-26 11:30:18 +03:00
|
|
|
[
|
2014-06-25 16:53:31 +04:00
|
|
|
'http://remoteserver:8080/myservices/owncloud/',
|
|
|
|
'http://remoteserver:8080/myservices/owncloud/public.php/webdav/',
|
2020-03-26 11:30:18 +03:00
|
|
|
],
|
2014-06-25 16:53:31 +04:00
|
|
|
// root path
|
2020-03-26 11:30:18 +03:00
|
|
|
[
|
2014-06-25 16:53:31 +04:00
|
|
|
'http://remoteserver:8080/',
|
|
|
|
'http://remoteserver:8080/public.php/webdav/',
|
2020-03-26 11:30:18 +03:00
|
|
|
],
|
2014-06-25 16:53:31 +04:00
|
|
|
// without port
|
2020-03-26 11:30:18 +03:00
|
|
|
[
|
2014-06-25 16:53:31 +04:00
|
|
|
'http://remoteserver/oc.test',
|
|
|
|
'http://remoteserver/oc.test/public.php/webdav/',
|
2020-03-26 11:30:18 +03:00
|
|
|
],
|
2014-06-25 16:53:31 +04:00
|
|
|
// https
|
2020-03-26 11:30:18 +03:00
|
|
|
[
|
2014-06-25 16:53:31 +04:00
|
|
|
'https://remoteserver/',
|
|
|
|
'https://remoteserver/public.php/webdav/',
|
2020-03-26 11:30:18 +03:00
|
|
|
],
|
|
|
|
];
|
2014-06-25 16:53:31 +04:00
|
|
|
}
|
|
|
|
|
2016-09-06 13:57:14 +03:00
|
|
|
private function getTestStorage($uri) {
|
2014-08-19 18:03:09 +04:00
|
|
|
$certificateManager = \OC::$server->getCertificateManager();
|
2016-09-29 01:22:32 +03:00
|
|
|
$httpClientService = $this->createMock(IClientService::class);
|
|
|
|
$client = $this->createMock(IClient::class);
|
|
|
|
$response = $this->createMock(IResponse::class);
|
|
|
|
$client
|
|
|
|
->expects($this->any())
|
|
|
|
->method('get')
|
|
|
|
->willReturn($response);
|
|
|
|
$client
|
|
|
|
->expects($this->any())
|
|
|
|
->method('post')
|
|
|
|
->willReturn($response);
|
|
|
|
$httpClientService
|
|
|
|
->expects($this->any())
|
|
|
|
->method('newClient')
|
|
|
|
->willReturn($client);
|
|
|
|
|
2016-09-06 13:57:14 +03:00
|
|
|
return new TestSharingExternalStorage(
|
2020-03-26 11:30:18 +03:00
|
|
|
[
|
2017-01-27 14:52:17 +03:00
|
|
|
'cloudId' => new CloudId('testOwner@' . $uri, 'testOwner', $uri),
|
2016-09-06 13:57:14 +03:00
|
|
|
'remote' => $uri,
|
2014-06-25 16:53:31 +04:00
|
|
|
'owner' => 'testOwner',
|
|
|
|
'mountpoint' => 'remoteshare',
|
|
|
|
'token' => 'abcdef',
|
|
|
|
'password' => '',
|
2014-08-19 18:03:09 +04:00
|
|
|
'manager' => null,
|
2016-09-29 01:22:32 +03:00
|
|
|
'certificateManager' => $certificateManager,
|
|
|
|
'HttpClientService' => $httpClientService,
|
2020-03-26 11:30:18 +03:00
|
|
|
]
|
2014-06-25 16:53:31 +04:00
|
|
|
);
|
2016-09-06 13:57:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider optionsProvider
|
|
|
|
*/
|
|
|
|
public function testStorageMountOptions($inputUri, $baseUri) {
|
|
|
|
$storage = $this->getTestStorage($inputUri);
|
2014-06-25 16:53:31 +04:00
|
|
|
$this->assertEquals($baseUri, $storage->getBaseUri());
|
|
|
|
}
|
2016-09-06 13:57:14 +03:00
|
|
|
|
|
|
|
public function testIfTestReturnsTheValue() {
|
|
|
|
$result = $this->getTestStorage('https://remoteserver')->test();
|
|
|
|
$this->assertSame(true, $result);
|
|
|
|
}
|
2014-06-25 16:53:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Dummy subclass to make it possible to access private members
|
|
|
|
*/
|
|
|
|
class TestSharingExternalStorage extends \OCA\Files_Sharing\External\Storage {
|
|
|
|
public function getBaseUri() {
|
|
|
|
return $this->createBaseUri();
|
|
|
|
}
|
2016-09-06 13:57:14 +03:00
|
|
|
|
|
|
|
public function stat($path) {
|
|
|
|
if ($path === '') {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return parent::stat($path);
|
|
|
|
}
|
2014-06-25 16:53:31 +04:00
|
|
|
}
|