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
|
|
|
|
2012-10-11 23:12:52 +04:00
|
|
|
public function setUp() {
|
|
|
|
$id = uniqid();
|
|
|
|
$this->config = include('files_external/tests/config.php');
|
|
|
|
if (!is_array($this->config) or !isset($this->config['ftp']) or !$this->config['ftp']['run']) {
|
|
|
|
$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']);
|
2012-10-11 23:12:52 +04:00
|
|
|
}
|
2012-03-22 22:56:19 +04:00
|
|
|
|
2012-10-11 23:12:52 +04:00
|
|
|
public function tearDown() {
|
|
|
|
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
|
|
|
}
|
2012-03-22 22:56:19 +04:00
|
|
|
}
|
2012-11-05 19:39:03 +04:00
|
|
|
|
|
|
|
public function testConstructUrl(){
|
|
|
|
$config = array ( 'host' => 'localhost', 'user' => 'ftp', 'password' => 'ftp', 'root' => '/', 'secure' => false );
|
|
|
|
$instance = new OC_Filestorage_FTP($config);
|
|
|
|
$this->assertEqual('ftp://ftp:ftp@localhost/', $instance->constructUrl(''));
|
|
|
|
|
|
|
|
$config['secure'] = true;
|
|
|
|
$instance = new OC_Filestorage_FTP($config);
|
|
|
|
$this->assertEqual('ftps://ftp:ftp@localhost/', $instance->constructUrl(''));
|
|
|
|
|
|
|
|
$config['secure'] = 'false';
|
|
|
|
$instance = new OC_Filestorage_FTP($config);
|
|
|
|
$this->assertEqual('ftp://ftp:ftp@localhost/', $instance->constructUrl(''));
|
|
|
|
|
|
|
|
$config['secure'] = 'true';
|
|
|
|
$instance = new OC_Filestorage_FTP($config);
|
|
|
|
$this->assertEqual('ftps://ftp:ftp@localhost/', $instance->constructUrl(''));
|
|
|
|
}
|
2012-03-22 22:56:19 +04:00
|
|
|
}
|