2012-04-18 14: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 08:51:15 -04:00
|
|
|
namespace Test\Files\Storage;
|
|
|
|
|
|
2012-10-11 16:54:39 -04:00
|
|
|
class SWIFT extends Storage {
|
2012-10-11 15:12:52 -04:00
|
|
|
private $config;
|
2012-04-18 14:54:07 -04:00
|
|
|
|
2012-10-11 15:12:52 -04:00
|
|
|
public function setUp() {
|
|
|
|
|
$id = uniqid();
|
|
|
|
|
$this->config = include('files_external/tests/config.php');
|
2012-11-30 10:27:11 -05:00
|
|
|
if ( ! is_array($this->config) or ! isset($this->config['swift']) or ! $this->config['swift']['run']) {
|
2012-10-11 15:12:52 -04:00
|
|
|
$this->markTestSkipped('OpenStack SWIFT backend not configured');
|
2012-04-18 14:54:07 -04:00
|
|
|
}
|
2012-10-11 15:12:52 -04:00
|
|
|
$this->config['swift']['root'] .= '/' . $id; //make sure we have an new empty folder to work in
|
2012-10-11 16:54:39 -04:00
|
|
|
$this->instance = new \OC\Files\Storage\SWIFT($this->config['swift']);
|
2012-10-11 15:12:52 -04:00
|
|
|
}
|
2012-04-18 14:54:07 -04:00
|
|
|
|
2012-08-29 02:42:49 -04:00
|
|
|
|
2012-10-11 15:12:52 -04:00
|
|
|
public function tearDown() {
|
|
|
|
|
if ($this->instance) {
|
|
|
|
|
$this->instance->rmdir('');
|
2012-04-18 14:54:07 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|