2016-08-08 16:50:15 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2016 Robin Appelman <robin@icewind.nl>
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* 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,
|
|
|
|
* 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 program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Test\Files\ObjectStore;
|
|
|
|
|
2019-01-28 16:51:19 +03:00
|
|
|
use Icewind\Streams\Wrapper;
|
2016-08-08 16:50:15 +03:00
|
|
|
use OC\Files\ObjectStore\S3;
|
|
|
|
|
2017-09-21 15:47:14 +03:00
|
|
|
class MultiPartUploadS3 extends S3 {
|
2020-04-10 17:51:06 +03:00
|
|
|
public function writeObject($urn, $stream) {
|
2018-01-24 19:22:05 +03:00
|
|
|
$this->getConnection()->upload($this->bucket, $urn, $stream, 'private', [
|
2020-03-19 17:28:02 +03:00
|
|
|
'mup_threshold' => 1,
|
2018-01-24 19:22:05 +03:00
|
|
|
]);
|
2017-09-21 15:47:14 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-28 16:51:19 +03:00
|
|
|
class NonSeekableStream extends Wrapper {
|
|
|
|
public static function wrap($source) {
|
2020-03-26 11:30:18 +03:00
|
|
|
$context = stream_context_create([
|
|
|
|
'nonseek' => [
|
2020-03-19 17:28:02 +03:00
|
|
|
'source' => $source,
|
|
|
|
],
|
2020-03-26 11:30:18 +03:00
|
|
|
]);
|
2019-01-28 16:51:19 +03:00
|
|
|
return Wrapper::wrapSource($source, $context, 'nonseek', self::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function dir_opendir($path, $options) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function stream_open($path, $mode, $options, &$opened_path) {
|
|
|
|
$this->loadContext('nonseek');
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function stream_seek($offset, $whence = SEEK_SET) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-16 14:43:38 +03:00
|
|
|
/**
|
|
|
|
* @group PRIMARY-s3
|
|
|
|
*/
|
2016-08-08 16:50:15 +03:00
|
|
|
class S3Test extends ObjectStoreTest {
|
|
|
|
protected function getInstance() {
|
|
|
|
$config = \OC::$server->getConfig()->getSystemValue('objectstore');
|
|
|
|
if (!is_array($config) || $config['class'] !== 'OC\\Files\\ObjectStore\\S3') {
|
|
|
|
$this->markTestSkipped('objectstore not configured for s3');
|
|
|
|
}
|
|
|
|
|
2018-01-24 19:22:05 +03:00
|
|
|
return new S3($config['arguments']);
|
2017-09-21 15:47:14 +03:00
|
|
|
}
|
|
|
|
|
2019-01-28 16:51:19 +03:00
|
|
|
public function testUploadNonSeekable() {
|
2018-01-24 19:22:05 +03:00
|
|
|
$config = \OC::$server->getConfig()->getSystemValue('objectstore');
|
|
|
|
if (!is_array($config) || $config['class'] !== 'OC\\Files\\ObjectStore\\S3') {
|
|
|
|
$this->markTestSkipped('objectstore not configured for s3');
|
|
|
|
}
|
|
|
|
|
2019-01-28 16:51:19 +03:00
|
|
|
$s3 = $this->getInstance();
|
2017-09-21 15:47:14 +03:00
|
|
|
|
2019-01-28 16:51:19 +03:00
|
|
|
$s3->writeObject('multiparttest', NonSeekableStream::wrap(fopen(__FILE__, 'r')));
|
2017-09-21 15:47:14 +03:00
|
|
|
|
|
|
|
$result = $s3->readObject('multiparttest');
|
|
|
|
|
|
|
|
$this->assertEquals(file_get_contents(__FILE__), stream_get_contents($result));
|
2016-08-08 16:50:15 +03:00
|
|
|
}
|
2020-03-19 17:28:02 +03:00
|
|
|
|
|
|
|
public function testSeek() {
|
|
|
|
$data = file_get_contents(__FILE__);
|
|
|
|
|
|
|
|
$instance = $this->getInstance();
|
|
|
|
$instance->writeObject('seek', $this->stringToStream($data));
|
|
|
|
|
|
|
|
$read = $instance->readObject('seek');
|
|
|
|
$this->assertEquals(substr($data, 0, 100), fread($read, 100));
|
|
|
|
|
|
|
|
fseek($read, 10);
|
|
|
|
$this->assertEquals(substr($data, 10, 100), fread($read, 100));
|
|
|
|
|
|
|
|
fseek($read, 100, SEEK_CUR);
|
|
|
|
$this->assertEquals(substr($data, 210, 100), fread($read, 100));
|
|
|
|
}
|
2016-08-08 16:50:15 +03:00
|
|
|
}
|