2013-09-24 13:44:02 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2013 Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
2015-02-18 17:28:24 +00:00
|
|
|
namespace Test\Connector\Sabre;
|
|
|
|
|
2015-05-12 17:08:04 +00:00
|
|
|
use Test\HookHelper;
|
|
|
|
use OC\Files\Filesystem;
|
|
|
|
|
2015-02-18 17:28:24 +00:00
|
|
|
class File extends \Test\TestCase {
|
2013-09-24 13:44:02 +00:00
|
|
|
|
2015-05-12 17:08:04 +00:00
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
private $user;
|
|
|
|
|
|
|
|
public function setUp() {
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
\OC_Hook::clear();
|
|
|
|
|
|
|
|
$this->user = $this->getUniqueID('user_');
|
|
|
|
$userManager = \OC::$server->getUserManager();
|
|
|
|
$userManager->createUser($this->user, 'pass');
|
|
|
|
|
|
|
|
$this->loginAsUser($this->user);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function tearDown() {
|
|
|
|
$userManager = \OC::$server->getUserManager();
|
|
|
|
$userManager->get($this->user)->delete();
|
|
|
|
|
|
|
|
parent::tearDown();
|
|
|
|
}
|
|
|
|
|
2015-04-14 13:25:52 +00:00
|
|
|
private function getStream($string) {
|
|
|
|
$stream = fopen('php://temp', 'r+');
|
|
|
|
fwrite($stream, $string);
|
|
|
|
fseek($stream, 0);
|
|
|
|
return $stream;
|
|
|
|
}
|
|
|
|
|
2013-09-24 13:44:02 +00:00
|
|
|
/**
|
2014-01-09 13:25:48 +00:00
|
|
|
* @expectedException \Sabre\DAV\Exception
|
2013-09-24 13:44:02 +00:00
|
|
|
*/
|
|
|
|
public function testSimplePutFails() {
|
|
|
|
// setup
|
2015-04-09 12:46:25 +00:00
|
|
|
$storage = $this->getMock('\OC\Files\Storage\Local', ['fopen'], [['datadir' => \OC::$server->getTempManager()->getTemporaryFolder()]]);
|
2015-05-12 17:08:04 +00:00
|
|
|
$view = $this->getMock('\OC\Files\View', array('getRelativePath', 'resolvePath'), array());
|
2014-03-03 13:27:24 +00:00
|
|
|
$view->expects($this->any())
|
2015-04-09 12:46:25 +00:00
|
|
|
->method('resolvePath')
|
|
|
|
->will($this->returnValue(array($storage, '')));
|
|
|
|
$storage->expects($this->once())
|
|
|
|
->method('fopen')
|
2014-03-03 13:27:24 +00:00
|
|
|
->will($this->returnValue(false));
|
|
|
|
|
|
|
|
$view->expects($this->any())
|
|
|
|
->method('getRelativePath')
|
|
|
|
->will($this->returnValue('/test.txt'));
|
|
|
|
|
|
|
|
$info = new \OC\Files\FileInfo('/test.txt', null, null, array(
|
2015-04-14 13:25:52 +00:00
|
|
|
'permissions' => \OCP\Constants::PERMISSION_ALL
|
2014-12-16 13:24:48 +00:00
|
|
|
), null);
|
2014-03-03 13:27:24 +00:00
|
|
|
|
2015-02-12 11:29:01 +00:00
|
|
|
$file = new \OC\Connector\Sabre\File($view, $info);
|
2013-09-24 13:44:02 +00:00
|
|
|
|
|
|
|
// action
|
2014-07-08 07:44:46 +00:00
|
|
|
$file->put('test data');
|
2013-09-24 13:44:02 +00:00
|
|
|
}
|
|
|
|
|
2015-05-12 17:08:04 +00:00
|
|
|
private function doPut($path, $viewRoot = null) {
|
|
|
|
$view = \OC\Files\Filesystem::getView();
|
|
|
|
if (!is_null($viewRoot)) {
|
|
|
|
$view = new \OC\Files\View($viewRoot);
|
|
|
|
} else {
|
|
|
|
$viewRoot = '/' . $this->user . '/files';
|
|
|
|
}
|
|
|
|
|
|
|
|
$info = new \OC\Files\FileInfo(
|
|
|
|
$viewRoot . '/' . ltrim($path, '/'),
|
|
|
|
null,
|
|
|
|
null,
|
|
|
|
['permissions' => \OCP\Constants::PERMISSION_ALL],
|
|
|
|
null
|
|
|
|
);
|
2015-01-26 16:48:28 +00:00
|
|
|
|
2015-02-12 11:29:01 +00:00
|
|
|
$file = new \OC\Connector\Sabre\File($view, $info);
|
2015-01-26 16:48:28 +00:00
|
|
|
|
2015-04-14 13:25:52 +00:00
|
|
|
$this->assertNotEmpty($file->put($this->getStream('test data')));
|
2015-01-26 16:48:28 +00:00
|
|
|
}
|
|
|
|
|
2015-05-12 17:08:04 +00:00
|
|
|
/**
|
|
|
|
* Test putting a single file
|
|
|
|
*/
|
|
|
|
public function testPutSingleFile() {
|
|
|
|
$this->doPut('/foo.txt');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test that putting a file triggers create hooks
|
|
|
|
*/
|
|
|
|
public function testPutSingleFileTriggersHooks() {
|
|
|
|
HookHelper::setUpHooks();
|
|
|
|
|
|
|
|
$this->doPut('/foo.txt');
|
|
|
|
|
|
|
|
$this->assertCount(4, HookHelper::$hookCalls);
|
|
|
|
$this->assertHookCall(
|
|
|
|
HookHelper::$hookCalls[0],
|
|
|
|
Filesystem::signal_create,
|
|
|
|
'/foo.txt'
|
|
|
|
);
|
|
|
|
$this->assertHookCall(
|
|
|
|
HookHelper::$hookCalls[1],
|
|
|
|
Filesystem::signal_write,
|
|
|
|
'/foo.txt'
|
|
|
|
);
|
|
|
|
$this->assertHookCall(
|
|
|
|
HookHelper::$hookCalls[2],
|
|
|
|
Filesystem::signal_post_create,
|
|
|
|
'/foo.txt'
|
|
|
|
);
|
|
|
|
$this->assertHookCall(
|
|
|
|
HookHelper::$hookCalls[3],
|
|
|
|
Filesystem::signal_post_write,
|
|
|
|
'/foo.txt'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test that putting a file triggers update hooks
|
|
|
|
*/
|
|
|
|
public function testPutOverwriteFileTriggersHooks() {
|
|
|
|
$view = \OC\Files\Filesystem::getView();
|
|
|
|
$view->file_put_contents('/foo.txt', 'some content that will be replaced');
|
|
|
|
|
|
|
|
HookHelper::setUpHooks();
|
|
|
|
|
|
|
|
$this->doPut('/foo.txt');
|
|
|
|
|
|
|
|
$this->assertCount(4, HookHelper::$hookCalls);
|
|
|
|
$this->assertHookCall(
|
|
|
|
HookHelper::$hookCalls[0],
|
|
|
|
Filesystem::signal_update,
|
|
|
|
'/foo.txt'
|
|
|
|
);
|
|
|
|
$this->assertHookCall(
|
|
|
|
HookHelper::$hookCalls[1],
|
|
|
|
Filesystem::signal_write,
|
|
|
|
'/foo.txt'
|
|
|
|
);
|
|
|
|
$this->assertHookCall(
|
|
|
|
HookHelper::$hookCalls[2],
|
|
|
|
Filesystem::signal_post_update,
|
|
|
|
'/foo.txt'
|
|
|
|
);
|
|
|
|
$this->assertHookCall(
|
|
|
|
HookHelper::$hookCalls[3],
|
|
|
|
Filesystem::signal_post_write,
|
|
|
|
'/foo.txt'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test that putting a file triggers hooks with the correct path
|
|
|
|
* if the passed view was chrooted (can happen with public webdav
|
|
|
|
* where the root is the share root)
|
|
|
|
*/
|
|
|
|
public function testPutSingleFileTriggersHooksDifferentRoot() {
|
|
|
|
$view = \OC\Files\Filesystem::getView();
|
|
|
|
$view->mkdir('noderoot');
|
|
|
|
|
|
|
|
HookHelper::setUpHooks();
|
|
|
|
|
|
|
|
// happens with public webdav where the view root is the share root
|
|
|
|
$this->doPut('/foo.txt', '/' . $this->user . '/files/noderoot');
|
|
|
|
|
|
|
|
$this->assertCount(4, HookHelper::$hookCalls);
|
|
|
|
$this->assertHookCall(
|
|
|
|
HookHelper::$hookCalls[0],
|
|
|
|
Filesystem::signal_create,
|
|
|
|
'/noderoot/foo.txt'
|
|
|
|
);
|
|
|
|
$this->assertHookCall(
|
|
|
|
HookHelper::$hookCalls[1],
|
|
|
|
Filesystem::signal_write,
|
|
|
|
'/noderoot/foo.txt'
|
|
|
|
);
|
|
|
|
$this->assertHookCall(
|
|
|
|
HookHelper::$hookCalls[2],
|
|
|
|
Filesystem::signal_post_create,
|
|
|
|
'/noderoot/foo.txt'
|
|
|
|
);
|
|
|
|
$this->assertHookCall(
|
|
|
|
HookHelper::$hookCalls[3],
|
|
|
|
Filesystem::signal_post_write,
|
|
|
|
'/noderoot/foo.txt'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function cancellingHook($params) {
|
|
|
|
self::$hookCalls[] = array(
|
|
|
|
'signal' => Filesystem::signal_post_create,
|
|
|
|
'params' => $params
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test put file with cancelled hook
|
|
|
|
*
|
|
|
|
* @expectedException \Sabre\DAV\Exception
|
|
|
|
*/
|
|
|
|
public function testPutSingleFileCancelPreHook() {
|
|
|
|
\OCP\Util::connectHook(
|
|
|
|
Filesystem::CLASSNAME,
|
|
|
|
Filesystem::signal_create,
|
|
|
|
'\Test\HookHelper',
|
|
|
|
'cancellingCallback'
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->doPut('/foo.txt');
|
|
|
|
}
|
|
|
|
|
2013-09-30 09:30:34 +00:00
|
|
|
/**
|
2014-01-09 13:25:48 +00:00
|
|
|
* @expectedException \Sabre\DAV\Exception
|
2013-09-30 09:30:34 +00:00
|
|
|
*/
|
|
|
|
public function testSimplePutFailsOnRename() {
|
|
|
|
// setup
|
2014-07-08 07:44:46 +00:00
|
|
|
$view = $this->getMock('\OC\Files\View',
|
2015-05-12 17:08:04 +00:00
|
|
|
array('rename', 'getRelativePath', 'filesize'));
|
2014-03-03 13:27:24 +00:00
|
|
|
$view->expects($this->any())
|
|
|
|
->method('rename')
|
|
|
|
->withAnyParameters()
|
|
|
|
->will($this->returnValue(false));
|
|
|
|
$view->expects($this->any())
|
|
|
|
->method('getRelativePath')
|
|
|
|
->will($this->returnValue('/test.txt'));
|
2014-07-08 07:44:46 +00:00
|
|
|
$view->expects($this->any())
|
|
|
|
->method('filesize')
|
|
|
|
->will($this->returnValue(123456));
|
|
|
|
|
|
|
|
$_SERVER['CONTENT_LENGTH'] = 123456;
|
2014-09-12 20:02:42 +00:00
|
|
|
$_SERVER['REQUEST_METHOD'] = 'PUT';
|
2014-03-03 13:27:24 +00:00
|
|
|
|
|
|
|
$info = new \OC\Files\FileInfo('/test.txt', null, null, array(
|
2014-11-25 15:28:41 +00:00
|
|
|
'permissions' => \OCP\Constants::PERMISSION_ALL
|
2014-12-16 13:24:48 +00:00
|
|
|
), null);
|
2014-03-03 13:27:24 +00:00
|
|
|
|
2015-02-12 11:29:01 +00:00
|
|
|
$file = new \OC\Connector\Sabre\File($view, $info);
|
2013-09-30 09:30:34 +00:00
|
|
|
|
|
|
|
// action
|
2015-04-14 13:25:52 +00:00
|
|
|
$file->put($this->getStream('test data'));
|
2013-09-30 09:30:34 +00:00
|
|
|
}
|
|
|
|
|
2014-01-13 12:14:05 +00:00
|
|
|
/**
|
2015-02-18 17:28:24 +00:00
|
|
|
* @expectedException \OC\Connector\Sabre\Exception\InvalidPath
|
2014-01-13 12:14:05 +00:00
|
|
|
*/
|
|
|
|
public function testSimplePutInvalidChars() {
|
|
|
|
// setup
|
2015-05-12 17:08:04 +00:00
|
|
|
$view = $this->getMock('\OC\Files\View', array('getRelativePath'));
|
2014-03-03 13:27:24 +00:00
|
|
|
$view->expects($this->any())
|
|
|
|
->method('getRelativePath')
|
2015-02-18 17:28:24 +00:00
|
|
|
->will($this->returnValue('/*'));
|
2014-03-03 13:27:24 +00:00
|
|
|
|
2015-02-18 17:28:24 +00:00
|
|
|
$info = new \OC\Files\FileInfo('/*', null, null, array(
|
2014-11-25 15:28:41 +00:00
|
|
|
'permissions' => \OCP\Constants::PERMISSION_ALL
|
2014-12-16 13:24:48 +00:00
|
|
|
), null);
|
2015-02-12 11:29:01 +00:00
|
|
|
$file = new \OC\Connector\Sabre\File($view, $info);
|
2014-01-13 12:14:05 +00:00
|
|
|
|
|
|
|
// action
|
2015-04-14 13:25:52 +00:00
|
|
|
$file->put($this->getStream('test data'));
|
2014-01-13 12:14:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test setting name with setName() with invalid chars
|
2015-04-14 13:25:52 +00:00
|
|
|
*
|
2015-02-18 17:28:24 +00:00
|
|
|
* @expectedException \OC\Connector\Sabre\Exception\InvalidPath
|
2014-01-13 12:14:05 +00:00
|
|
|
*/
|
|
|
|
public function testSetNameInvalidChars() {
|
|
|
|
// setup
|
2014-08-04 14:17:11 +00:00
|
|
|
$view = $this->getMock('\OC\Files\View', array('getRelativePath'));
|
2014-03-03 13:27:24 +00:00
|
|
|
|
|
|
|
$view->expects($this->any())
|
|
|
|
->method('getRelativePath')
|
2015-02-18 17:28:24 +00:00
|
|
|
->will($this->returnValue('/*'));
|
2014-03-03 13:27:24 +00:00
|
|
|
|
2015-02-18 17:28:24 +00:00
|
|
|
$info = new \OC\Files\FileInfo('/*', null, null, array(
|
2014-11-25 15:28:41 +00:00
|
|
|
'permissions' => \OCP\Constants::PERMISSION_ALL
|
2014-12-16 13:24:48 +00:00
|
|
|
), null);
|
2015-02-12 11:29:01 +00:00
|
|
|
$file = new \OC\Connector\Sabre\File($view, $info);
|
2014-01-13 12:14:05 +00:00
|
|
|
$file->setName('/super*star.txt');
|
|
|
|
}
|
2014-07-08 07:44:46 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @expectedException \Sabre\DAV\Exception\BadRequest
|
|
|
|
*/
|
|
|
|
public function testUploadAbort() {
|
|
|
|
// setup
|
|
|
|
$view = $this->getMock('\OC\Files\View',
|
2015-05-12 17:08:04 +00:00
|
|
|
array('rename', 'getRelativePath', 'filesize'));
|
2014-07-08 07:44:46 +00:00
|
|
|
$view->expects($this->any())
|
|
|
|
->method('rename')
|
|
|
|
->withAnyParameters()
|
|
|
|
->will($this->returnValue(false));
|
|
|
|
$view->expects($this->any())
|
|
|
|
->method('getRelativePath')
|
|
|
|
->will($this->returnValue('/test.txt'));
|
|
|
|
$view->expects($this->any())
|
|
|
|
->method('filesize')
|
|
|
|
->will($this->returnValue(123456));
|
|
|
|
|
|
|
|
$_SERVER['CONTENT_LENGTH'] = 12345;
|
2014-09-12 20:02:42 +00:00
|
|
|
$_SERVER['REQUEST_METHOD'] = 'PUT';
|
2014-07-08 07:44:46 +00:00
|
|
|
|
|
|
|
$info = new \OC\Files\FileInfo('/test.txt', null, null, array(
|
2014-11-25 15:28:41 +00:00
|
|
|
'permissions' => \OCP\Constants::PERMISSION_ALL
|
2014-12-16 13:24:48 +00:00
|
|
|
), null);
|
2014-07-08 07:44:46 +00:00
|
|
|
|
2015-02-12 11:29:01 +00:00
|
|
|
$file = new \OC\Connector\Sabre\File($view, $info);
|
2014-07-08 07:44:46 +00:00
|
|
|
|
|
|
|
// action
|
2015-04-14 13:25:52 +00:00
|
|
|
$file->put($this->getStream('test data'));
|
2014-07-08 07:44:46 +00:00
|
|
|
}
|
2014-09-22 10:19:34 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public function testDeleteWhenAllowed() {
|
|
|
|
// setup
|
|
|
|
$view = $this->getMock('\OC\Files\View',
|
|
|
|
array());
|
|
|
|
|
|
|
|
$view->expects($this->once())
|
|
|
|
->method('unlink')
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
|
|
|
|
$info = new \OC\Files\FileInfo('/test.txt', null, null, array(
|
2014-11-25 15:28:41 +00:00
|
|
|
'permissions' => \OCP\Constants::PERMISSION_ALL
|
2014-12-16 13:24:48 +00:00
|
|
|
), null);
|
2014-09-22 10:19:34 +00:00
|
|
|
|
2015-02-12 11:29:01 +00:00
|
|
|
$file = new \OC\Connector\Sabre\File($view, $info);
|
2014-09-22 10:19:34 +00:00
|
|
|
|
|
|
|
// action
|
|
|
|
$file->delete();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @expectedException \Sabre\DAV\Exception\Forbidden
|
|
|
|
*/
|
|
|
|
public function testDeleteThrowsWhenDeletionNotAllowed() {
|
|
|
|
// setup
|
|
|
|
$view = $this->getMock('\OC\Files\View',
|
|
|
|
array());
|
|
|
|
|
|
|
|
$info = new \OC\Files\FileInfo('/test.txt', null, null, array(
|
|
|
|
'permissions' => 0
|
2014-12-16 13:24:48 +00:00
|
|
|
), null);
|
2014-09-22 10:19:34 +00:00
|
|
|
|
2015-02-12 11:29:01 +00:00
|
|
|
$file = new \OC\Connector\Sabre\File($view, $info);
|
2014-09-22 10:19:34 +00:00
|
|
|
|
|
|
|
// action
|
|
|
|
$file->delete();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @expectedException \Sabre\DAV\Exception\Forbidden
|
|
|
|
*/
|
|
|
|
public function testDeleteThrowsWhenDeletionFailed() {
|
|
|
|
// setup
|
|
|
|
$view = $this->getMock('\OC\Files\View',
|
|
|
|
array());
|
|
|
|
|
|
|
|
// but fails
|
|
|
|
$view->expects($this->once())
|
|
|
|
->method('unlink')
|
|
|
|
->will($this->returnValue(false));
|
|
|
|
|
|
|
|
$info = new \OC\Files\FileInfo('/test.txt', null, null, array(
|
2014-11-25 15:28:41 +00:00
|
|
|
'permissions' => \OCP\Constants::PERMISSION_ALL
|
2014-12-16 13:24:48 +00:00
|
|
|
), null);
|
2014-09-22 10:19:34 +00:00
|
|
|
|
2015-02-12 11:29:01 +00:00
|
|
|
$file = new \OC\Connector\Sabre\File($view, $info);
|
2014-09-22 10:19:34 +00:00
|
|
|
|
|
|
|
// action
|
|
|
|
$file->delete();
|
|
|
|
}
|
2015-05-12 17:08:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Asserts hook call
|
|
|
|
*
|
|
|
|
* @param array $callData hook call data to check
|
|
|
|
* @param string $signal signal name
|
|
|
|
* @param string $hookPath hook path
|
|
|
|
*/
|
|
|
|
protected function assertHookCall($callData, $signal, $hookPath) {
|
|
|
|
$this->assertEquals($signal, $callData['signal']);
|
|
|
|
$params = $callData['params'];
|
|
|
|
$this->assertEquals(
|
|
|
|
$hookPath,
|
|
|
|
$params[Filesystem::signal_param_path]
|
|
|
|
);
|
|
|
|
}
|
2013-09-24 13:44:02 +00:00
|
|
|
}
|