2014-06-13 15:27:02 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-08-08 16:13:44 +03:00
|
|
|
* @copyright Copyright (c) 2016 Robin Appelman <robin@icewind.nl>
|
2014-06-13 15:27:02 +04:00
|
|
|
*
|
2016-08-08 16:13:44 +03:00
|
|
|
* @license GNU AGPL version 3 or any later version
|
2014-06-13 15:27:02 +04:00
|
|
|
*
|
2016-08-08 16:13:44 +03:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
2014-06-13 15:27:02 +04:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2016-08-08 16:13:44 +03:00
|
|
|
* GNU Affero General Public License for more details.
|
2014-06-13 15:27:02 +04:00
|
|
|
*
|
2016-08-08 16:13:44 +03:00
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2014-06-13 15:27:02 +04:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-05-20 16:38:20 +03:00
|
|
|
namespace Test\Files\ObjectStore;
|
2014-06-13 15:27:02 +04:00
|
|
|
|
2016-05-19 09:41:01 +03:00
|
|
|
use OC\Files\ObjectStore\Swift;
|
2014-06-13 15:27:02 +04:00
|
|
|
|
2018-02-07 19:16:54 +03:00
|
|
|
/**
|
|
|
|
* @group PRIMARY-swift
|
|
|
|
*/
|
2016-08-08 16:13:44 +03:00
|
|
|
class SwiftTest extends ObjectStoreTest {
|
2015-09-28 17:38:01 +03:00
|
|
|
/**
|
2016-08-08 16:13:44 +03:00
|
|
|
* @return \OCP\Files\ObjectStore\IObjectStore
|
2015-09-28 17:38:01 +03:00
|
|
|
*/
|
2016-08-08 16:13:44 +03:00
|
|
|
protected function getInstance() {
|
2015-09-28 17:38:01 +03:00
|
|
|
$config = \OC::$server->getConfig()->getSystemValue('objectstore');
|
2016-08-08 16:13:44 +03:00
|
|
|
if (!is_array($config) || $config['class'] !== 'OC\\Files\\ObjectStore\\Swift') {
|
|
|
|
$this->markTestSkipped('objectstore not configured for swift');
|
2014-06-27 14:14:31 +04:00
|
|
|
}
|
2014-09-08 14:53:42 +04:00
|
|
|
|
2016-08-08 16:13:44 +03:00
|
|
|
return new Swift($config['arguments']);
|
2014-09-08 14:53:42 +04:00
|
|
|
}
|
2014-06-13 15:27:02 +04:00
|
|
|
}
|