2012-04-18 22:54:07 +04:00
|
|
|
<?php
|
2013-10-22 15:36:23 +04:00
|
|
|
|
2012-04-18 22:54:07 +04:00
|
|
|
/**
|
2013-10-22 15:36:23 +04:00
|
|
|
* ownCloud
|
|
|
|
*
|
|
|
|
* @author Christian Berendt
|
|
|
|
* @copyright 2013 Christian Berendt berendt@b1-systems.de
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2012-04-18 22:54:07 +04:00
|
|
|
*/
|
|
|
|
|
2012-09-22 16:51:15 +04:00
|
|
|
namespace Test\Files\Storage;
|
|
|
|
|
2013-10-22 15:36:23 +04:00
|
|
|
class Swift extends Storage {
|
|
|
|
|
2012-10-11 23:12:52 +04:00
|
|
|
private $config;
|
2012-04-18 22:54:07 +04:00
|
|
|
|
2012-10-11 23:12:52 +04:00
|
|
|
public function setUp() {
|
|
|
|
$this->config = include('files_external/tests/config.php');
|
2013-10-22 15:36:23 +04:00
|
|
|
if (!is_array($this->config) or !isset($this->config['swift'])
|
|
|
|
or !$this->config['swift']['run']) {
|
|
|
|
$this->markTestSkipped('OpenStack Object Storage backend not configured');
|
2012-04-18 22:54:07 +04:00
|
|
|
}
|
2013-10-22 15:36:23 +04:00
|
|
|
$this->instance = new \OC\Files\Storage\Swift($this->config['swift']);
|
2012-10-11 23:12:52 +04:00
|
|
|
}
|
2012-04-18 22:54:07 +04:00
|
|
|
|
2012-10-11 23:12:52 +04:00
|
|
|
public function tearDown() {
|
|
|
|
if ($this->instance) {
|
2013-10-22 15:36:23 +04:00
|
|
|
$connection = $this->instance->getConnection();
|
|
|
|
$container = $connection->Container($this->config['swift']['bucket']);
|
|
|
|
|
|
|
|
$objects = $container->ObjectList();
|
|
|
|
while($object = $objects->Next()) {
|
|
|
|
$object->Delete();
|
|
|
|
}
|
|
|
|
|
|
|
|
$container->Delete();
|
2012-04-18 22:54:07 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|