2013-02-10 11:35:49 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2024-06-06 07:55:47 +00:00
|
|
|
* SPDX-FileCopyrightText: 2019-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
2013-02-10 11:35:49 +00:00
|
|
|
*/
|
2016-04-13 22:18:07 +00:00
|
|
|
namespace OCA\Files_External\Tests\Storage;
|
|
|
|
|
2019-11-22 19:52:10 +00:00
|
|
|
use OCA\Files_External\Lib\Storage\SFTP;
|
2013-02-10 11:35:49 +00:00
|
|
|
|
2015-11-19 15:42:29 +00:00
|
|
|
/**
|
2016-05-24 14:37:06 +00:00
|
|
|
* Class SftpTest
|
2015-11-19 15:42:29 +00:00
|
|
|
*
|
|
|
|
* @group DB
|
|
|
|
*
|
2016-04-13 22:18:07 +00:00
|
|
|
* @package OCA\Files_External\Tests\Storage
|
2015-11-19 15:42:29 +00:00
|
|
|
*/
|
2016-05-24 14:37:06 +00:00
|
|
|
class SftpTest extends \Test\Files\Storage\Storage {
|
2015-11-16 13:56:03 +00:00
|
|
|
/**
|
2016-04-13 22:18:07 +00:00
|
|
|
* @var SFTP instance
|
2015-11-16 13:56:03 +00:00
|
|
|
*/
|
|
|
|
protected $instance;
|
|
|
|
|
2013-02-10 11:35:49 +00:00
|
|
|
private $config;
|
|
|
|
|
2019-11-21 15:40:38 +00:00
|
|
|
protected function setUp(): void {
|
2014-11-10 21:28:12 +00:00
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$id = $this->getUniqueID();
|
2015-02-10 18:44:29 +00:00
|
|
|
$this->config = include('files_external/tests/config.sftp.php');
|
|
|
|
if (!is_array($this->config) or !$this->config['run']) {
|
2013-02-10 11:35:49 +00:00
|
|
|
$this->markTestSkipped('SFTP backend not configured');
|
|
|
|
}
|
2015-02-10 18:44:29 +00:00
|
|
|
$this->config['root'] .= '/' . $id; //make sure we have an new empty folder to work in
|
2016-04-13 22:18:07 +00:00
|
|
|
$this->instance = new SFTP($this->config);
|
2013-04-26 15:40:31 +00:00
|
|
|
$this->instance->mkdir('/');
|
2013-02-10 11:35:49 +00:00
|
|
|
}
|
|
|
|
|
2019-11-21 15:40:38 +00:00
|
|
|
protected function tearDown(): void {
|
2013-02-10 11:35:49 +00:00
|
|
|
if ($this->instance) {
|
|
|
|
$this->instance->rmdir('/');
|
|
|
|
}
|
2014-11-10 21:28:12 +00:00
|
|
|
|
|
|
|
parent::tearDown();
|
2013-02-10 11:35:49 +00:00
|
|
|
}
|
2015-04-15 14:21:41 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider configProvider
|
|
|
|
*/
|
|
|
|
public function testStorageId($config, $expectedStorageId): void {
|
2016-04-13 22:18:07 +00:00
|
|
|
$instance = new SFTP($config);
|
2015-04-15 14:21:41 +00:00
|
|
|
$this->assertEquals($expectedStorageId, $instance->getId());
|
|
|
|
}
|
|
|
|
|
2015-04-15 15:40:07 +00:00
|
|
|
public function configProvider() {
|
2015-04-15 14:21:41 +00: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 13:56:03 +00: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 14:21:41 +00:00
|
|
|
];
|
|
|
|
}
|
2013-04-26 15:40:31 +00:00
|
|
|
}
|