2013-02-10 15:35:49 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author hkjolhede <hkjolhede@gmail.com>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
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-05-26 20:56:05 +03:00
|
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.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>
|
2013-02-10 15:35:49 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
2013-02-10 15:35:49 +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.
|
2013-02-10 15:35:49 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2013-02-10 15:35:49 +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.
|
|
|
|
*
|
|
|
|
* 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/>
|
2013-02-10 15:35:49 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2016-04-14 01:18:07 +03:00
|
|
|
namespace OCA\Files_External\Tests\Storage;
|
|
|
|
|
2019-11-22 22:52:10 +03:00
|
|
|
use OCA\Files_External\Lib\Storage\SFTP;
|
2013-02-10 15:35:49 +04:00
|
|
|
|
2015-11-19 18:42:29 +03:00
|
|
|
/**
|
2016-05-24 17:37:06 +03:00
|
|
|
* Class SftpTest
|
2015-11-19 18:42:29 +03:00
|
|
|
*
|
|
|
|
* @group DB
|
|
|
|
*
|
2016-04-14 01:18:07 +03:00
|
|
|
* @package OCA\Files_External\Tests\Storage
|
2015-11-19 18:42:29 +03:00
|
|
|
*/
|
2016-05-24 17:37:06 +03:00
|
|
|
class SftpTest extends \Test\Files\Storage\Storage {
|
2015-11-16 16:56:03 +03:00
|
|
|
/**
|
2016-04-14 01:18:07 +03:00
|
|
|
* @var SFTP instance
|
2015-11-16 16:56:03 +03:00
|
|
|
*/
|
|
|
|
protected $instance;
|
|
|
|
|
2013-02-10 15:35:49 +04:00
|
|
|
private $config;
|
|
|
|
|
2019-11-21 18:40:38 +03:00
|
|
|
protected function setUp(): void {
|
2014-11-11 00:28:12 +03:00
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$id = $this->getUniqueID();
|
2015-02-10 21:44:29 +03:00
|
|
|
$this->config = include('files_external/tests/config.sftp.php');
|
|
|
|
if (!is_array($this->config) or !$this->config['run']) {
|
2013-02-10 15:35:49 +04:00
|
|
|
$this->markTestSkipped('SFTP backend not configured');
|
|
|
|
}
|
2015-02-10 21:44:29 +03:00
|
|
|
$this->config['root'] .= '/' . $id; //make sure we have an new empty folder to work in
|
2016-04-14 01:18:07 +03:00
|
|
|
$this->instance = new SFTP($this->config);
|
2013-04-26 19:40:31 +04:00
|
|
|
$this->instance->mkdir('/');
|
2013-02-10 15:35:49 +04:00
|
|
|
}
|
|
|
|
|
2019-11-21 18:40:38 +03:00
|
|
|
protected function tearDown(): void {
|
2013-02-10 15:35:49 +04:00
|
|
|
if ($this->instance) {
|
|
|
|
$this->instance->rmdir('/');
|
|
|
|
}
|
2014-11-11 00:28:12 +03:00
|
|
|
|
|
|
|
parent::tearDown();
|
2013-02-10 15:35:49 +04:00
|
|
|
}
|
2015-04-15 17:21:41 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider configProvider
|
|
|
|
*/
|
|
|
|
public function testStorageId($config, $expectedStorageId) {
|
2016-04-14 01:18:07 +03:00
|
|
|
$instance = new SFTP($config);
|
2015-04-15 17:21:41 +03:00
|
|
|
$this->assertEquals($expectedStorageId, $instance->getId());
|
|
|
|
}
|
|
|
|
|
2015-04-15 18:40:07 +03:00
|
|
|
public function configProvider() {
|
2015-04-15 17:21:41 +03:00
|
|
|
return [
|
|
|
|
[
|
|
|
|
// no root path
|
|
|
|
[
|
|
|
|
'run' => true,
|
|
|
|
'host' => 'somehost',
|
|
|
|
'user' => 'someuser',
|
|
|
|
'password' => 'somepassword',
|
|
|
|
'root' => '',
|
|
|
|
],
|
|
|
|
'sftp::someuser@somehost//',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
// without leading nor trailing slash
|
|
|
|
[
|
|
|
|
'run' => true,
|
|
|
|
'host' => 'somehost',
|
|
|
|
'user' => 'someuser',
|
|
|
|
'password' => 'somepassword',
|
|
|
|
'root' => 'remotedir/subdir',
|
|
|
|
],
|
|
|
|
'sftp::someuser@somehost//remotedir/subdir/',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
// regular path
|
|
|
|
[
|
|
|
|
'run' => true,
|
|
|
|
'host' => 'somehost',
|
|
|
|
'user' => 'someuser',
|
|
|
|
'password' => 'somepassword',
|
|
|
|
'root' => '/remotedir/subdir/',
|
|
|
|
],
|
|
|
|
'sftp::someuser@somehost//remotedir/subdir/',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
// different port
|
|
|
|
[
|
|
|
|
'run' => true,
|
|
|
|
'host' => 'somehost:8822',
|
|
|
|
'user' => 'someuser',
|
|
|
|
'password' => 'somepassword',
|
|
|
|
'root' => 'remotedir/subdir/',
|
|
|
|
],
|
|
|
|
'sftp::someuser@somehost:8822//remotedir/subdir/',
|
|
|
|
],
|
2015-11-16 16:56:03 +03:00
|
|
|
[
|
|
|
|
// ipv6 with port
|
|
|
|
[
|
|
|
|
'run' => true,
|
|
|
|
'host' => 'FE80:0000:0000:0000:0202:B3FF:FE1E:8329',
|
|
|
|
'user' => 'someuser',
|
|
|
|
'password' => 'somepassword',
|
|
|
|
'root' => 'remotedir/subdir/',
|
|
|
|
],
|
|
|
|
'sftp::someuser@FE80:0000:0000:0000:0202:B3FF:FE1E:8329//remotedir/subdir/',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
// ipv6 without port
|
|
|
|
[
|
|
|
|
'run' => true,
|
|
|
|
'host' => 'FE80:0000:0000:0000:0202:B3FF:FE1E:8329:8822',
|
|
|
|
'user' => 'someuser',
|
|
|
|
'password' => 'somepassword',
|
|
|
|
'root' => 'remotedir/subdir/',
|
|
|
|
],
|
|
|
|
'sftp::someuser@FE80:0000:0000:0000:0202:B3FF:FE1E:8329:8822//remotedir/subdir/',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
// collapsed ipv6 with port
|
|
|
|
[
|
|
|
|
'run' => true,
|
|
|
|
'host' => 'FE80::0202:B3FF:FE1E:8329:8822',
|
|
|
|
'user' => 'someuser',
|
|
|
|
'password' => 'somepassword',
|
|
|
|
'root' => 'remotedir/subdir/',
|
|
|
|
],
|
|
|
|
'sftp::someuser@FE80::0202:B3FF:FE1E:8329:8822//remotedir/subdir/',
|
|
|
|
],
|
2015-04-15 17:21:41 +03:00
|
|
|
];
|
|
|
|
}
|
2013-04-26 19:40:31 +04:00
|
|
|
}
|