2012-05-17 01:51:45 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2015-03-26 10:44:34 +00:00
|
|
|
* @author Joas Schilling <nickvergessen@owncloud.com>
|
|
|
|
* @author Michael Gapczynski <GapczynskiM@gmail.com>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
2015-10-06 07:52:19 +00:00
|
|
|
* @author Robin McCorkell <rmccorkell@karoshi.org.uk>
|
2012-10-11 19:12:52 +00:00
|
|
|
*
|
2015-03-26 10:44:34 +00:00
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @license AGPL-3.0
|
2012-10-11 19:12:52 +00:00
|
|
|
*
|
2015-03-26 10:44:34 +00: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.
|
2012-10-11 19:12:52 +00:00
|
|
|
*
|
2015-03-26 10:44:34 +00:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2012-10-11 19:12:52 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 10:44:34 +00: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/>
|
2012-10-11 19:12:52 +00:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 10:37:37 +00:00
|
|
|
|
2012-09-22 12:51:15 +00:00
|
|
|
namespace Test\Files\Storage;
|
|
|
|
|
2012-10-11 20:54:39 +00:00
|
|
|
class AmazonS3 extends Storage {
|
2012-05-17 01:51:45 +00:00
|
|
|
|
2012-10-11 19:12:52 +00:00
|
|
|
private $config;
|
2012-05-17 01:51:45 +00:00
|
|
|
|
2014-11-10 21:28:12 +00:00
|
|
|
protected function setUp() {
|
|
|
|
parent::setUp();
|
|
|
|
|
2015-09-15 15:40:52 +00:00
|
|
|
$this->config = include('files_external/tests/config.amazons3.php');
|
|
|
|
if ( ! is_array($this->config) or ! $this->config['run']) {
|
2012-10-11 19:12:52 +00:00
|
|
|
$this->markTestSkipped('AmazonS3 backend not configured');
|
2012-05-17 01:51:45 +00:00
|
|
|
}
|
2015-09-15 15:40:52 +00:00
|
|
|
$this->instance = new \OC\Files\Storage\AmazonS3($this->config);
|
2012-10-11 19:12:52 +00:00
|
|
|
}
|
2012-05-17 01:51:45 +00:00
|
|
|
|
2014-11-10 21:28:12 +00:00
|
|
|
protected function tearDown() {
|
2012-10-11 19:12:52 +00:00
|
|
|
if ($this->instance) {
|
2014-08-01 12:20:00 +00:00
|
|
|
$this->instance->rmdir('');
|
2012-05-17 01:51:45 +00:00
|
|
|
}
|
2014-11-10 21:28:12 +00:00
|
|
|
|
|
|
|
parent::tearDown();
|
2012-05-17 01:51:45 +00:00
|
|
|
}
|
2014-08-01 13:06:05 +00:00
|
|
|
|
|
|
|
public function testStat() {
|
|
|
|
$this->markTestSkipped('S3 doesn\'t update the parents folder mtime');
|
|
|
|
}
|
2012-05-17 01:51:45 +00:00
|
|
|
}
|