2015-09-28 18:16:49 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2015 Robin Appelman <icewind@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Test\Files\Node;
|
|
|
|
|
|
|
|
use OC\Files\Filesystem;
|
|
|
|
use OC\Files\Node\Root;
|
|
|
|
use OC\Files\Storage\Temporary;
|
|
|
|
use OC\Files\View;
|
|
|
|
use OCP\Files\Node;
|
2016-11-03 01:16:51 +03:00
|
|
|
use OCP\ILogger;
|
|
|
|
use OCP\IUserManager;
|
2015-09-28 18:16:49 +03:00
|
|
|
use Test\TestCase;
|
|
|
|
use Test\Traits\MountProviderTrait;
|
|
|
|
use Test\Traits\UserTrait;
|
|
|
|
|
2015-11-20 13:27:11 +03:00
|
|
|
/**
|
2016-05-20 16:38:20 +03:00
|
|
|
* Class HookConnectorTest
|
2015-11-20 13:27:11 +03:00
|
|
|
*
|
|
|
|
* @group DB
|
2015-12-02 15:19:19 +03:00
|
|
|
*
|
2015-11-20 13:27:11 +03:00
|
|
|
* @package Test\Files\Node
|
|
|
|
*/
|
2016-05-20 16:38:20 +03:00
|
|
|
class HookConnectorTest extends TestCase {
|
2015-09-28 18:16:49 +03:00
|
|
|
use UserTrait;
|
|
|
|
use MountProviderTrait;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var View
|
|
|
|
*/
|
|
|
|
private $view;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var Root
|
|
|
|
*/
|
|
|
|
private $root;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
private $userId;
|
|
|
|
|
|
|
|
public function setUp() {
|
|
|
|
parent::setUp();
|
|
|
|
$this->userId = $this->getUniqueID();
|
|
|
|
$this->createUser($this->userId, 'pass');
|
|
|
|
$this->registerMount($this->userId, new Temporary(), '/' . $this->userId . '/files/');
|
|
|
|
\OC_Util::setupFS($this->userId);
|
|
|
|
$this->view = new View();
|
2016-09-18 19:36:53 +03:00
|
|
|
$this->root = new Root(
|
|
|
|
Filesystem::getMountManager(),
|
|
|
|
$this->view,
|
|
|
|
\OC::$server->getUserManager()->get($this->userId),
|
2016-11-03 01:16:51 +03:00
|
|
|
\OC::$server->getUserMountCache(),
|
|
|
|
$this->createMock(ILogger::class),
|
|
|
|
$this->createMock(IUserManager::class)
|
2016-09-18 19:36:53 +03:00
|
|
|
);
|
2015-09-28 18:16:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function tearDown() {
|
|
|
|
parent::tearDown();
|
|
|
|
\OC_Hook::clear('OC_Filesystem');
|
|
|
|
\OC_Util::tearDownFS();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function viewToNodeProvider() {
|
|
|
|
return [
|
|
|
|
[function () {
|
|
|
|
Filesystem::file_put_contents('test.txt', 'asd');
|
|
|
|
}, 'preWrite'],
|
|
|
|
[function () {
|
|
|
|
Filesystem::file_put_contents('test.txt', 'asd');
|
|
|
|
}, 'postWrite'],
|
|
|
|
[function () {
|
|
|
|
Filesystem::file_put_contents('test.txt', 'asd');
|
|
|
|
}, 'preCreate'],
|
|
|
|
[function () {
|
|
|
|
Filesystem::file_put_contents('test.txt', 'asd');
|
|
|
|
}, 'postCreate'],
|
|
|
|
[function () {
|
|
|
|
Filesystem::mkdir('test.txt');
|
|
|
|
}, 'preCreate'],
|
|
|
|
[function () {
|
|
|
|
Filesystem::mkdir('test.txt');
|
|
|
|
}, 'postCreate'],
|
|
|
|
[function () {
|
|
|
|
Filesystem::touch('test.txt');
|
|
|
|
}, 'preTouch'],
|
|
|
|
[function () {
|
|
|
|
Filesystem::touch('test.txt');
|
|
|
|
}, 'postTouch'],
|
|
|
|
[function () {
|
|
|
|
Filesystem::touch('test.txt');
|
|
|
|
}, 'preCreate'],
|
|
|
|
[function () {
|
|
|
|
Filesystem::touch('test.txt');
|
|
|
|
}, 'postCreate'],
|
|
|
|
[function () {
|
|
|
|
Filesystem::file_put_contents('test.txt', 'asd');
|
|
|
|
Filesystem::unlink('test.txt');
|
|
|
|
}, 'preDelete'],
|
|
|
|
[function () {
|
|
|
|
Filesystem::file_put_contents('test.txt', 'asd');
|
|
|
|
Filesystem::unlink('test.txt');
|
|
|
|
}, 'postDelete'],
|
|
|
|
[function () {
|
|
|
|
Filesystem::mkdir('test.txt');
|
|
|
|
Filesystem::rmdir('test.txt');
|
|
|
|
}, 'preDelete'],
|
|
|
|
[function () {
|
|
|
|
Filesystem::mkdir('test.txt');
|
|
|
|
Filesystem::rmdir('test.txt');
|
|
|
|
}, 'postDelete'],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param callable $operation
|
|
|
|
* @param string $expectedHook
|
|
|
|
* @dataProvider viewToNodeProvider
|
|
|
|
*/
|
|
|
|
public function testViewToNode(callable $operation, $expectedHook) {
|
|
|
|
$connector = new \OC\Files\Node\HookConnector($this->root, $this->view);
|
|
|
|
$connector->viewToNode();
|
|
|
|
$hookCalled = false;
|
|
|
|
/** @var Node $hookNode */
|
|
|
|
$hookNode = null;
|
|
|
|
|
|
|
|
$this->root->listen('\OC\Files', $expectedHook, function ($node) use (&$hookNode, &$hookCalled) {
|
|
|
|
$hookCalled = true;
|
|
|
|
$hookNode = $node;
|
|
|
|
});
|
|
|
|
|
|
|
|
$operation();
|
|
|
|
|
|
|
|
$this->assertTrue($hookCalled);
|
|
|
|
$this->assertEquals('/' . $this->userId . '/files/test.txt', $hookNode->getPath());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function viewToNodeProviderCopyRename() {
|
|
|
|
return [
|
|
|
|
[function () {
|
|
|
|
Filesystem::file_put_contents('source', 'asd');
|
|
|
|
Filesystem::rename('source', 'target');
|
|
|
|
}, 'preRename'],
|
|
|
|
[function () {
|
|
|
|
Filesystem::file_put_contents('source', 'asd');
|
|
|
|
Filesystem::rename('source', 'target');
|
|
|
|
}, 'postRename'],
|
|
|
|
[function () {
|
|
|
|
Filesystem::file_put_contents('source', 'asd');
|
|
|
|
Filesystem::copy('source', 'target');
|
|
|
|
}, 'preCopy'],
|
|
|
|
[function () {
|
|
|
|
Filesystem::file_put_contents('source', 'asd');
|
|
|
|
Filesystem::copy('source', 'target');
|
|
|
|
}, 'postCopy'],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param callable $operation
|
|
|
|
* @param string $expectedHook
|
|
|
|
* @dataProvider viewToNodeProviderCopyRename
|
|
|
|
*/
|
|
|
|
public function testViewToNodeCopyRename(callable $operation, $expectedHook) {
|
|
|
|
$connector = new \OC\Files\Node\HookConnector($this->root, $this->view);
|
|
|
|
$connector->viewToNode();
|
|
|
|
$hookCalled = false;
|
|
|
|
/** @var Node $hookSourceNode */
|
|
|
|
$hookSourceNode = null;
|
|
|
|
/** @var Node $hookTargetNode */
|
|
|
|
$hookTargetNode = null;
|
|
|
|
|
|
|
|
$this->root->listen('\OC\Files', $expectedHook, function ($sourceNode, $targetNode) use (&$hookCalled, &$hookSourceNode, &$hookTargetNode) {
|
|
|
|
$hookCalled = true;
|
|
|
|
$hookSourceNode = $sourceNode;
|
|
|
|
$hookTargetNode = $targetNode;
|
|
|
|
});
|
|
|
|
|
|
|
|
$operation();
|
|
|
|
|
|
|
|
$this->assertTrue($hookCalled);
|
|
|
|
$this->assertEquals('/' . $this->userId . '/files/source', $hookSourceNode->getPath());
|
|
|
|
$this->assertEquals('/' . $this->userId . '/files/target', $hookTargetNode->getPath());
|
|
|
|
}
|
2015-12-02 15:19:19 +03:00
|
|
|
|
|
|
|
public function testPostDeleteMeta() {
|
|
|
|
$connector = new \OC\Files\Node\HookConnector($this->root, $this->view);
|
|
|
|
$connector->viewToNode();
|
|
|
|
$hookCalled = false;
|
|
|
|
/** @var Node $hookNode */
|
|
|
|
$hookNode = null;
|
|
|
|
|
|
|
|
$this->root->listen('\OC\Files', 'postDelete', function ($node) use (&$hookNode, &$hookCalled) {
|
|
|
|
$hookCalled = true;
|
|
|
|
$hookNode = $node;
|
|
|
|
});
|
|
|
|
|
|
|
|
Filesystem::file_put_contents('test.txt', 'asd');
|
|
|
|
$info = Filesystem::getFileInfo('test.txt');
|
|
|
|
Filesystem::unlink('test.txt');
|
|
|
|
|
|
|
|
$this->assertTrue($hookCalled);
|
|
|
|
$this->assertEquals($hookNode->getId(), $info->getId());
|
|
|
|
}
|
2015-09-28 18:16:49 +03:00
|
|
|
}
|