nextcloud/apps/files_external/tests/Storage/SwiftTest.php

82 lines
2.2 KiB
PHP
Raw Normal View History

<?php
/**
2016-07-21 17:49:16 +03:00
* @copyright Copyright (c) 2016, ownCloud, Inc.
*
2015-03-26 13:44:34 +03:00
* @author Christian Berendt <berendt@b1-systems.de>
2016-07-21 17:49:16 +03:00
* @author Joas Schilling <coding@schilljs.com>
2015-03-26 13:44:34 +03:00
* @author Morris Jobke <hey@morrisjobke.de>
2016-07-21 19:13:36 +03:00
* @author Robin Appelman <robin@icewind.nl>
2016-01-12 17:02:16 +03:00
* @author Robin McCorkell <robin@mccorkell.me.uk>
* @author Roeland Jago Douma <roeland@famdouma.nl>
2016-01-12 17:02:16 +03:00
* @author Thomas Müller <thomas.mueller@tmit.eu>
2013-10-22 15:36:23 +04:00
*
2015-03-26 13:44:34 +03:00
* @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 OCA\Files_External\Tests\Storage;
use GuzzleHttp\Exception\ClientException;
use OCA\Files_External\Lib\Storage\Swift;
/**
* Class SwiftTest
*
* @group DB
*
* @package OCA\Files_External\Tests\Storage
*/
class SwiftTest extends \Test\Files\Storage\Storage {
private $config;
/**
* @var Swift instance
*/
protected $instance;
protected function setUp(): void {
parent::setUp();
2015-02-11 03:06:07 +03:00
$this->config = include('files_external/tests/config.swift.php');
if (!is_array($this->config) or !$this->config['run']) {
2013-10-22 15:36:23 +04:00
$this->markTestSkipped('OpenStack Object Storage backend not configured');
}
$this->instance = new Swift($this->config);
}
protected function tearDown(): void {
if ($this->instance) {
try {
$container = $this->instance->getContainer();
$objects = $container->listObjects();
foreach ($objects as $object) {
$object->delete();
}
$container->delete();
} catch (ClientException $e) {
// container didn't exist, so we don't need to delete it
2013-10-22 15:36:23 +04:00
}
}
parent::tearDown();
}
2015-09-24 16:33:54 +03:00
public function testStat() {
$this->markTestSkipped('Swift doesn\'t update the parents folder mtime');
}
}