nextcloud/apps/files_external/tests/backends/swift.php

60 lines
1.8 KiB
PHP
Raw Normal View History

<?php
/**
2015-03-26 13:44:34 +03:00
* @author Christian Berendt <berendt@b1-systems.de>
* @author Joas Schilling <nickvergessen@owncloud.com>
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
* @author Morris Jobke <hey@morrisjobke.de>
* @author Robin Appelman <icewind@owncloud.com>
2013-10-22 15:36:23 +04:00
*
2015-03-26 13:44:34 +03:00
* @copyright Copyright (c) 2015, ownCloud, Inc.
* @license AGPL-3.0
2013-10-22 15:36:23 +04:00
*
2015-03-26 13:44:34 +03:00
* This code is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
2013-10-22 15:36:23 +04:00
*
2015-03-26 13:44:34 +03:00
* This program is distributed in the hope that it will be useful,
2013-10-22 15:36:23 +04:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
2015-03-26 13:44:34 +03:00
* 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, version 3,
* along with this program. If not, see <http://www.gnu.org/licenses/>
2013-10-22 15:36:23 +04:00
*
*/
namespace Test\Files\Storage;
2013-10-22 15:36:23 +04:00
class Swift extends Storage {
private $config;
protected function setUp() {
parent::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');
}
2013-10-22 15:36:23 +04:00
$this->instance = new \OC\Files\Storage\Swift($this->config['swift']);
}
protected function tearDown() {
if ($this->instance) {
2013-10-22 15:36:23 +04:00
$connection = $this->instance->getConnection();
$container = $connection->getContainer($this->config['swift']['bucket']);
2013-10-22 15:36:23 +04:00
$objects = $container->objectList();
while($object = $objects->next()) {
$object->setName(str_replace('#','%23',$object->getName()));
$object->delete();
2013-10-22 15:36:23 +04:00
}
$container->delete();
}
parent::tearDown();
}
}