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