2014-06-13 15:27:02 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @author Jörn Friedrich Dreyer
|
|
|
|
* @copyright (c) 2014 Jörn Friedrich Dreyer <jfd@owncloud.com>
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\ObjectStore\Tests\Unit;
|
|
|
|
|
2014-06-18 00:06:56 +04:00
|
|
|
use OC\Files\ObjectStore\ObjectStoreStorage;
|
2014-06-13 15:27:02 +04:00
|
|
|
use OC\Files\ObjectStore\Swift as ObjectStoreToTest;
|
|
|
|
|
|
|
|
use PHPUnit_Framework_TestCase;
|
|
|
|
|
2014-06-23 18:29:01 +04:00
|
|
|
//class Swift extends PHPUnit_Framework_TestCase {
|
|
|
|
class Swift extends \Test\Files\Storage\Storage {
|
2014-06-18 00:06:56 +04:00
|
|
|
|
|
|
|
private $objectStorage;
|
2014-06-23 18:29:01 +04:00
|
|
|
|
2014-11-07 17:23:15 +03:00
|
|
|
protected function setUp() {
|
|
|
|
parent::setUp();
|
|
|
|
|
2014-07-29 23:51:21 +04:00
|
|
|
if (!getenv('RUN_OBJECTSTORE_TESTS')) {
|
2014-12-04 12:09:13 +03:00
|
|
|
$this->markTestSkipped('objectstore tests are unreliable in some environments');
|
2014-07-29 23:51:21 +04:00
|
|
|
}
|
2014-06-23 18:29:01 +04:00
|
|
|
|
2014-06-13 15:27:02 +04:00
|
|
|
\OC_App::disable('files_sharing');
|
|
|
|
\OC_App::disable('files_versions');
|
|
|
|
|
|
|
|
// reset backend
|
|
|
|
\OC_User::clearBackends();
|
|
|
|
\OC_User::useBackend('database');
|
|
|
|
|
|
|
|
// create users
|
|
|
|
$users = array('test');
|
|
|
|
foreach($users as $userName) {
|
|
|
|
\OC_User::deleteUser($userName);
|
|
|
|
\OC_User::createUser($userName, $userName);
|
|
|
|
}
|
|
|
|
|
|
|
|
// main test user
|
|
|
|
$userName = 'test';
|
|
|
|
\OC_Util::tearDownFS();
|
|
|
|
\OC_User::setUserId('');
|
|
|
|
\OC\Files\Filesystem::tearDown();
|
|
|
|
\OC_User::setUserId('test');
|
2014-06-13 19:22:21 +04:00
|
|
|
|
|
|
|
$testContainer = 'oc-test-container-'.substr( md5(rand()), 0, 7);
|
|
|
|
|
2014-06-13 15:27:02 +04:00
|
|
|
$params = array(
|
|
|
|
'username' => 'facebook100000330192569',
|
|
|
|
'password' => 'Dbdj1sXnRSHxIGc4',
|
2014-06-13 19:22:21 +04:00
|
|
|
'container' => $testContainer,
|
|
|
|
'autocreate' => true,
|
2014-06-13 15:27:02 +04:00
|
|
|
'region' => 'RegionOne', //required, trystack defaults to 'RegionOne'
|
|
|
|
'url' => 'http://8.21.28.222:5000/v2.0', // The Identity / Keystone endpoint
|
|
|
|
'tenantName' => 'facebook100000330192569', // required on trystack
|
|
|
|
'serviceName' => 'swift', //trystack uses swift by default, the lib defaults to 'cloudFiles' if omitted
|
|
|
|
'user' => \OC_User::getManager()->get($userName)
|
|
|
|
);
|
2014-06-18 00:06:56 +04:00
|
|
|
$this->objectStorage = new ObjectStoreToTest($params);
|
|
|
|
$params['objectstore'] = $this->objectStorage;
|
2014-06-23 18:29:01 +04:00
|
|
|
$this->instance = new ObjectStoreStorage($params);
|
2014-06-13 15:27:02 +04:00
|
|
|
}
|
|
|
|
|
2014-11-07 17:23:15 +03:00
|
|
|
protected function tearDown() {
|
2014-06-23 18:29:01 +04:00
|
|
|
if (is_null($this->instance)) {
|
2014-06-13 15:27:02 +04:00
|
|
|
return;
|
|
|
|
}
|
2014-06-18 00:06:56 +04:00
|
|
|
$this->objectStorage->deleteContainer(true);
|
2014-06-23 18:29:01 +04:00
|
|
|
$this->instance->getCache()->clear();
|
2014-11-07 17:23:15 +03:00
|
|
|
|
|
|
|
parent::tearDown();
|
2014-06-27 14:14:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testStat() {
|
2014-07-12 13:20:12 +04:00
|
|
|
|
2014-06-27 14:14:31 +04:00
|
|
|
$textFile = \OC::$SERVERROOT . '/tests/data/lorem.txt';
|
|
|
|
$ctimeStart = time();
|
|
|
|
$this->instance->file_put_contents('/lorem.txt', file_get_contents($textFile));
|
|
|
|
$this->assertTrue($this->instance->isReadable('/lorem.txt'));
|
|
|
|
$ctimeEnd = time();
|
|
|
|
$mTime = $this->instance->filemtime('/lorem.txt');
|
|
|
|
|
|
|
|
// check that ($ctimeStart - 5) <= $mTime <= ($ctimeEnd + 1)
|
|
|
|
$this->assertGreaterThanOrEqual(($ctimeStart - 5), $mTime);
|
|
|
|
$this->assertLessThanOrEqual(($ctimeEnd + 1), $mTime);
|
|
|
|
$this->assertEquals(filesize($textFile), $this->instance->filesize('/lorem.txt'));
|
|
|
|
|
|
|
|
$stat = $this->instance->stat('/lorem.txt');
|
|
|
|
//only size and mtime are required in the result
|
|
|
|
$this->assertEquals($stat['size'], $this->instance->filesize('/lorem.txt'));
|
|
|
|
$this->assertEquals($stat['mtime'], $mTime);
|
|
|
|
|
|
|
|
if ($this->instance->touch('/lorem.txt', 100) !== false) {
|
|
|
|
$mTime = $this->instance->filemtime('/lorem.txt');
|
|
|
|
$this->assertEquals($mTime, 100);
|
|
|
|
}
|
2014-06-13 15:27:02 +04:00
|
|
|
}
|
|
|
|
|
2014-09-08 14:53:42 +04:00
|
|
|
/**
|
|
|
|
* @dataProvider copyAndMoveProvider
|
|
|
|
*/
|
|
|
|
public function testMove($source, $target) {
|
|
|
|
$this->initSourceAndTarget($source);
|
|
|
|
$sourceId = $this->instance->getCache()->getId(ltrim('/',$source));
|
|
|
|
$this->assertNotEquals(-1, $sourceId);
|
|
|
|
|
|
|
|
$this->instance->rename($source, $target);
|
|
|
|
|
|
|
|
$this->assertTrue($this->instance->file_exists($target), $target.' was not created');
|
|
|
|
$this->assertFalse($this->instance->file_exists($source), $source.' still exists');
|
|
|
|
$this->assertSameAsLorem($target);
|
|
|
|
|
|
|
|
$targetId = $this->instance->getCache()->getId(ltrim('/',$target));
|
|
|
|
$this->assertSame($sourceId, $targetId, 'fileid must be stable on move or shares will break');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testRenameDirectory() {
|
|
|
|
$this->instance->mkdir('source');
|
|
|
|
$this->instance->file_put_contents('source/test1.txt', 'foo');
|
|
|
|
$this->instance->file_put_contents('source/test2.txt', 'qwerty');
|
|
|
|
$this->instance->mkdir('source/subfolder');
|
|
|
|
$this->instance->file_put_contents('source/subfolder/test.txt', 'bar');
|
|
|
|
$sourceId = $this->instance->getCache()->getId('source');
|
|
|
|
$this->assertNotEquals(-1, $sourceId);
|
|
|
|
$this->instance->rename('source', 'target');
|
|
|
|
|
|
|
|
$this->assertFalse($this->instance->file_exists('source'));
|
|
|
|
$this->assertFalse($this->instance->file_exists('source/test1.txt'));
|
|
|
|
$this->assertFalse($this->instance->file_exists('source/test2.txt'));
|
|
|
|
$this->assertFalse($this->instance->file_exists('source/subfolder'));
|
|
|
|
$this->assertFalse($this->instance->file_exists('source/subfolder/test.txt'));
|
|
|
|
|
|
|
|
$this->assertTrue($this->instance->file_exists('target'));
|
|
|
|
$this->assertTrue($this->instance->file_exists('target/test1.txt'));
|
|
|
|
$this->assertTrue($this->instance->file_exists('target/test2.txt'));
|
|
|
|
$this->assertTrue($this->instance->file_exists('target/subfolder'));
|
|
|
|
$this->assertTrue($this->instance->file_exists('target/subfolder/test.txt'));
|
|
|
|
|
|
|
|
$this->assertEquals('foo', $this->instance->file_get_contents('target/test1.txt'));
|
|
|
|
$this->assertEquals('qwerty', $this->instance->file_get_contents('target/test2.txt'));
|
|
|
|
$this->assertEquals('bar', $this->instance->file_get_contents('target/subfolder/test.txt'));
|
|
|
|
$targetId = $this->instance->getCache()->getId('target');
|
|
|
|
$this->assertSame($sourceId, $targetId, 'fileid must be stable on move or shares will break');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testRenameOverWriteDirectory() {
|
|
|
|
$this->instance->mkdir('source');
|
|
|
|
$this->instance->file_put_contents('source/test1.txt', 'foo');
|
|
|
|
$sourceId = $this->instance->getCache()->getId('source');
|
|
|
|
$this->assertNotEquals(-1, $sourceId);
|
|
|
|
|
|
|
|
$this->instance->mkdir('target');
|
|
|
|
$this->instance->file_put_contents('target/test1.txt', 'bar');
|
|
|
|
$this->instance->file_put_contents('target/test2.txt', 'bar');
|
|
|
|
|
|
|
|
$this->instance->rename('source', 'target');
|
|
|
|
|
|
|
|
$this->assertFalse($this->instance->file_exists('source'));
|
|
|
|
$this->assertFalse($this->instance->file_exists('source/test1.txt'));
|
|
|
|
$this->assertFalse($this->instance->file_exists('target/test2.txt'));
|
|
|
|
$this->assertEquals('foo', $this->instance->file_get_contents('target/test1.txt'));
|
|
|
|
$targetId = $this->instance->getCache()->getId('target');
|
|
|
|
$this->assertSame($sourceId, $targetId, 'fileid must be stable on move or shares will break');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testRenameOverWriteDirectoryOverFile() {
|
|
|
|
$this->instance->mkdir('source');
|
|
|
|
$this->instance->file_put_contents('source/test1.txt', 'foo');
|
|
|
|
$sourceId = $this->instance->getCache()->getId('source');
|
|
|
|
$this->assertNotEquals(-1, $sourceId);
|
|
|
|
|
|
|
|
$this->instance->file_put_contents('target', 'bar');
|
|
|
|
|
|
|
|
$this->instance->rename('source', 'target');
|
|
|
|
|
|
|
|
$this->assertFalse($this->instance->file_exists('source'));
|
|
|
|
$this->assertFalse($this->instance->file_exists('source/test1.txt'));
|
|
|
|
$this->assertEquals('foo', $this->instance->file_get_contents('target/test1.txt'));
|
|
|
|
$targetId = $this->instance->getCache()->getId('target');
|
|
|
|
$this->assertSame($sourceId, $targetId, 'fileid must be stable on move or shares will break');
|
|
|
|
}
|
2014-06-13 15:27:02 +04:00
|
|
|
}
|