2012-03-22 22:56:19 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2012 Robin Appelman <icewind@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
2012-08-29 10:42:49 +04:00
|
|
|
|
2012-09-22 16:51:15 +04:00
|
|
|
namespace Test\Files\Storage;
|
|
|
|
|
2012-10-12 00:54:39 +04:00
|
|
|
class FTP extends Storage {
|
2012-10-11 23:12:52 +04:00
|
|
|
private $config;
|
2012-03-22 22:56:19 +04:00
|
|
|
|
2014-11-11 00:28:12 +03:00
|
|
|
protected function setUp() {
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$id = $this->getUniqueID();
|
2012-10-11 23:12:52 +04:00
|
|
|
$this->config = include('files_external/tests/config.php');
|
2012-11-30 19:27:11 +04:00
|
|
|
if ( ! is_array($this->config) or ! isset($this->config['ftp']) or ! $this->config['ftp']['run']) {
|
2012-10-11 23:12:52 +04:00
|
|
|
$this->markTestSkipped('FTP backend not configured');
|
2012-04-13 18:01:20 +04:00
|
|
|
}
|
2012-10-11 23:12:52 +04:00
|
|
|
$this->config['ftp']['root'] .= '/' . $id; //make sure we have an new empty folder to work in
|
2012-10-12 00:54:39 +04:00
|
|
|
$this->instance = new \OC\Files\Storage\FTP($this->config['ftp']);
|
2013-04-26 19:40:31 +04:00
|
|
|
$this->instance->mkdir('/');
|
2012-10-11 23:12:52 +04:00
|
|
|
}
|
2012-03-22 22:56:19 +04:00
|
|
|
|
2014-11-11 00:28:12 +03:00
|
|
|
protected function tearDown() {
|
2012-10-11 23:12:52 +04:00
|
|
|
if ($this->instance) {
|
2012-09-22 16:51:15 +04:00
|
|
|
\OCP\Files::rmdirr($this->instance->constructUrl(''));
|
2012-04-13 18:01:20 +04:00
|
|
|
}
|
2014-11-11 00:28:12 +03:00
|
|
|
|
|
|
|
parent::tearDown();
|
2012-03-22 22:56:19 +04:00
|
|
|
}
|
2012-11-05 19:39:03 +04:00
|
|
|
|
|
|
|
public function testConstructUrl(){
|
2012-11-30 19:27:11 +04:00
|
|
|
$config = array ( 'host' => 'localhost',
|
|
|
|
'user' => 'ftp',
|
|
|
|
'password' => 'ftp',
|
|
|
|
'root' => '/',
|
|
|
|
'secure' => false );
|
2013-11-25 21:44:34 +04:00
|
|
|
$instance = new \OC\Files\Storage\FTP($config);
|
2013-01-24 19:47:17 +04:00
|
|
|
$this->assertEquals('ftp://ftp:ftp@localhost/', $instance->constructUrl(''));
|
2012-11-05 19:39:03 +04:00
|
|
|
|
|
|
|
$config['secure'] = true;
|
2013-11-25 21:44:34 +04:00
|
|
|
$instance = new \OC\Files\Storage\FTP($config);
|
2013-01-24 19:47:17 +04:00
|
|
|
$this->assertEquals('ftps://ftp:ftp@localhost/', $instance->constructUrl(''));
|
2012-11-05 19:39:03 +04:00
|
|
|
|
|
|
|
$config['secure'] = 'false';
|
2013-11-25 21:44:34 +04:00
|
|
|
$instance = new \OC\Files\Storage\FTP($config);
|
2013-01-24 19:47:17 +04:00
|
|
|
$this->assertEquals('ftp://ftp:ftp@localhost/', $instance->constructUrl(''));
|
2012-11-05 19:39:03 +04:00
|
|
|
|
|
|
|
$config['secure'] = 'true';
|
2013-11-25 21:44:34 +04:00
|
|
|
$instance = new \OC\Files\Storage\FTP($config);
|
2013-01-24 19:47:17 +04:00
|
|
|
$this->assertEquals('ftps://ftp:ftp@localhost/', $instance->constructUrl(''));
|
2013-11-28 14:45:26 +04:00
|
|
|
|
|
|
|
$config['root'] = '';
|
|
|
|
$instance = new \OC\Files\Storage\FTP($config);
|
|
|
|
$this->assertEquals('ftps://ftp:ftp@localhost/somefile.txt', $instance->constructUrl('somefile.txt'));
|
|
|
|
|
|
|
|
$config['root'] = '/abc';
|
|
|
|
$instance = new \OC\Files\Storage\FTP($config);
|
|
|
|
$this->assertEquals('ftps://ftp:ftp@localhost/abc/somefile.txt', $instance->constructUrl('somefile.txt'));
|
|
|
|
|
|
|
|
$config['root'] = '/abc/';
|
|
|
|
$instance = new \OC\Files\Storage\FTP($config);
|
|
|
|
$this->assertEquals('ftps://ftp:ftp@localhost/abc/somefile.txt', $instance->constructUrl('somefile.txt'));
|
2012-11-05 19:39:03 +04:00
|
|
|
}
|
2012-03-22 22:56:19 +04:00
|
|
|
}
|