2012-03-22 18:56:19 +00: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 06:42:49 +00:00
|
|
|
|
2012-09-22 12:51:15 +00:00
|
|
|
namespace Test\Files\Storage;
|
|
|
|
|
2012-04-13 14:01:20 +00:00
|
|
|
$config=include('apps/files_external/tests/config.php');
|
2012-09-07 13:22:01 +00:00
|
|
|
if(!is_array($config) or !isset($config['ftp']) or !$config['ftp']['run']) {
|
2012-09-22 12:51:15 +00:00
|
|
|
abstract class FTP extends Storage{}
|
2012-04-13 14:01:20 +00:00
|
|
|
return;
|
|
|
|
}else{
|
2012-09-22 12:51:15 +00:00
|
|
|
class FTP extends Storage {
|
2012-04-13 14:01:20 +00:00
|
|
|
private $config;
|
2012-03-22 18:56:19 +00:00
|
|
|
|
2012-09-07 13:22:01 +00:00
|
|
|
public function setUp() {
|
2012-04-13 14:01:20 +00:00
|
|
|
$id=uniqid();
|
|
|
|
$this->config=include('apps/files_external/tests/config.php');
|
|
|
|
$this->config['ftp']['root'].='/'.$id;//make sure we have an new empty folder to work in
|
2012-09-07 16:30:48 +00:00
|
|
|
$this->instance=new \OC\Files\Storage\FTP($this->config['ftp']);
|
2012-04-13 14:01:20 +00:00
|
|
|
}
|
2012-03-22 18:56:19 +00:00
|
|
|
|
2012-09-07 13:22:01 +00:00
|
|
|
public function tearDown() {
|
2012-09-22 12:51:15 +00:00
|
|
|
\OCP\Files::rmdirr($this->instance->constructUrl(''));
|
2012-04-13 14:01:20 +00:00
|
|
|
}
|
2012-03-22 18:56:19 +00:00
|
|
|
}
|
|
|
|
}
|