2012-05-17 05:51:45 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2012-10-11 23:12:52 +04:00
|
|
|
* ownCloud
|
|
|
|
*
|
|
|
|
* @author Michael Gapczynski
|
2013-07-03 20:03:23 +04:00
|
|
|
* @author Christian Berendt
|
2012-10-11 23:12:52 +04:00
|
|
|
* @copyright 2012 Michael Gapczynski mtgap@owncloud.com
|
2013-07-03 20:03:23 +04:00
|
|
|
* @copyright 2013 Christian Berendt berendt@b1-systems.de
|
2012-10-11 23:12:52 +04:00
|
|
|
*
|
|
|
|
* 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-05-17 05:51:45 +04:00
|
|
|
|
2012-09-22 16:51:15 +04:00
|
|
|
namespace Test\Files\Storage;
|
|
|
|
|
2012-10-12 00:54:39 +04:00
|
|
|
class AmazonS3 extends Storage {
|
2012-05-17 05:51:45 +04:00
|
|
|
|
2012-10-11 23:12:52 +04:00
|
|
|
private $config;
|
2012-05-17 05:51:45 +04:00
|
|
|
|
2012-10-11 23:12:52 +04:00
|
|
|
public function setUp() {
|
|
|
|
$this->config = include('files_external/tests/config.php');
|
2012-11-30 19:27:11 +04:00
|
|
|
if ( ! is_array($this->config) or ! isset($this->config['amazons3']) or ! $this->config['amazons3']['run']) {
|
2012-10-11 23:12:52 +04:00
|
|
|
$this->markTestSkipped('AmazonS3 backend not configured');
|
2012-05-17 05:51:45 +04:00
|
|
|
}
|
2012-10-12 00:54:39 +04:00
|
|
|
$this->instance = new \OC\Files\Storage\AmazonS3($this->config['amazons3']);
|
2012-10-11 23:12:52 +04:00
|
|
|
}
|
2012-05-17 05:51:45 +04:00
|
|
|
|
2012-10-11 23:12:52 +04:00
|
|
|
public function tearDown() {
|
|
|
|
if ($this->instance) {
|
2013-07-03 20:03:23 +04:00
|
|
|
$connection = $this->instance->getConnection();
|
|
|
|
|
2013-07-08 17:25:49 +04:00
|
|
|
try {
|
|
|
|
// NOTE(berendt): clearBucket() is not working with Ceph
|
|
|
|
$iterator = $connection->getIterator('ListObjects', array(
|
|
|
|
'Bucket' => $this->config['amazons3']['bucket']
|
2013-07-03 20:03:23 +04:00
|
|
|
));
|
2013-07-08 17:25:49 +04:00
|
|
|
|
|
|
|
foreach ($iterator as $object) {
|
|
|
|
$connection->deleteObject(array(
|
|
|
|
'Bucket' => $this->config['amazons3']['bucket'],
|
|
|
|
'Key' => $object['Key']
|
|
|
|
));
|
|
|
|
}
|
|
|
|
} catch (S3Exception $e) {
|
2012-05-17 05:51:45 +04:00
|
|
|
}
|
2013-07-03 20:03:23 +04:00
|
|
|
|
|
|
|
$connection->deleteBucket(array(
|
|
|
|
'Bucket' => $this->config['amazons3']['bucket']
|
|
|
|
));
|
2013-07-08 17:25:49 +04:00
|
|
|
|
|
|
|
$connection->waitUntilBucketNotExists(array(
|
|
|
|
'Bucket' => $this->config['amazons3']['bucket']
|
|
|
|
));
|
2012-05-17 05:51:45 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|