2015-02-12 14:29:01 +03:00
|
|
|
<?php
|
2016-01-12 17:02:16 +03:00
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* 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, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
*/
|
2019-11-22 22:52:10 +03:00
|
|
|
|
2016-05-25 17:04:15 +03:00
|
|
|
namespace OCA\DAV\Tests\unit\Connector\Sabre;
|
2015-02-12 14:29:01 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2015 Vincent Petry <pvince81@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
2015-11-03 03:52:41 +03:00
|
|
|
|
2017-10-26 11:36:17 +03:00
|
|
|
use OCA\DAV\Connector\Sabre\Directory;
|
|
|
|
use OCA\DAV\Connector\Sabre\File;
|
2017-10-24 16:26:53 +03:00
|
|
|
use OCP\IUser;
|
|
|
|
use Sabre\DAV\Tree;
|
|
|
|
|
2015-11-03 03:52:41 +03:00
|
|
|
/**
|
|
|
|
* Class CustomPropertiesBackend
|
|
|
|
*
|
|
|
|
* @group DB
|
|
|
|
*
|
2016-05-25 17:04:15 +03:00
|
|
|
* @package OCA\DAV\Tests\unit\Connector\Sabre
|
2015-11-03 03:52:41 +03:00
|
|
|
*/
|
2016-05-25 17:04:15 +03:00
|
|
|
class CustomPropertiesBackendTest extends \Test\TestCase {
|
2015-02-12 14:29:01 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Sabre\DAV\Server
|
|
|
|
*/
|
|
|
|
private $server;
|
|
|
|
|
|
|
|
/**
|
2015-10-30 18:05:25 +03:00
|
|
|
* @var \Sabre\DAV\Tree
|
2015-02-12 14:29:01 +03:00
|
|
|
*/
|
|
|
|
private $tree;
|
|
|
|
|
|
|
|
/**
|
2015-08-30 20:13:01 +03:00
|
|
|
* @var \OCA\DAV\Connector\Sabre\CustomPropertiesBackend
|
2015-02-12 14:29:01 +03:00
|
|
|
*/
|
|
|
|
private $plugin;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \OCP\IUser
|
|
|
|
*/
|
|
|
|
private $user;
|
|
|
|
|
2019-11-27 17:27:18 +03:00
|
|
|
protected function setUp(): void {
|
2015-02-12 14:29:01 +03:00
|
|
|
parent::setUp();
|
|
|
|
$this->server = new \Sabre\DAV\Server();
|
2017-10-24 16:26:53 +03:00
|
|
|
$this->tree = $this->getMockBuilder(Tree::class)
|
2015-02-12 14:29:01 +03:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$userId = $this->getUniqueID('testcustompropertiesuser');
|
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
$this->user = $this->getMockBuilder(IUser::class)
|
2016-07-15 10:52:46 +03:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
2015-02-12 14:29:01 +03:00
|
|
|
$this->user->expects($this->any())
|
|
|
|
->method('getUID')
|
|
|
|
->will($this->returnValue($userId));
|
|
|
|
|
2015-08-30 20:13:01 +03:00
|
|
|
$this->plugin = new \OCA\DAV\Connector\Sabre\CustomPropertiesBackend(
|
2015-02-12 14:29:01 +03:00
|
|
|
$this->tree,
|
|
|
|
\OC::$server->getDatabaseConnection(),
|
|
|
|
$this->user
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-11-27 17:27:18 +03:00
|
|
|
protected function tearDown(): void {
|
2015-02-12 14:29:01 +03:00
|
|
|
$connection = \OC::$server->getDatabaseConnection();
|
|
|
|
$deleteStatement = $connection->prepare(
|
|
|
|
'DELETE FROM `*PREFIX*properties`' .
|
|
|
|
' WHERE `userid` = ?'
|
|
|
|
);
|
|
|
|
$deleteStatement->execute(
|
|
|
|
array(
|
|
|
|
$this->user->getUID(),
|
|
|
|
)
|
|
|
|
);
|
|
|
|
$deleteStatement->closeCursor();
|
|
|
|
}
|
|
|
|
|
|
|
|
private function createTestNode($class) {
|
|
|
|
$node = $this->getMockBuilder($class)
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
$node->expects($this->any())
|
|
|
|
->method('getId')
|
|
|
|
->will($this->returnValue(123));
|
|
|
|
|
|
|
|
$node->expects($this->any())
|
|
|
|
->method('getPath')
|
|
|
|
->will($this->returnValue('/dummypath'));
|
|
|
|
|
|
|
|
return $node;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function applyDefaultProps($path = '/dummypath') {
|
|
|
|
// properties to set
|
|
|
|
$propPatch = new \Sabre\DAV\PropPatch(array(
|
|
|
|
'customprop' => 'value1',
|
|
|
|
'customprop2' => 'value2',
|
|
|
|
));
|
|
|
|
|
|
|
|
$this->plugin->propPatch(
|
|
|
|
$path,
|
|
|
|
$propPatch
|
|
|
|
);
|
|
|
|
|
|
|
|
$propPatch->commit();
|
|
|
|
|
|
|
|
$this->assertEmpty($propPatch->getRemainingMutations());
|
|
|
|
|
|
|
|
$result = $propPatch->getResult();
|
|
|
|
$this->assertEquals(200, $result['customprop']);
|
|
|
|
$this->assertEquals(200, $result['customprop2']);
|
|
|
|
}
|
|
|
|
|
2015-03-18 14:30:23 +03:00
|
|
|
/**
|
|
|
|
* Test that propFind on a missing file soft fails
|
|
|
|
*/
|
|
|
|
public function testPropFindMissingFileSoftFail() {
|
2015-03-23 19:41:32 +03:00
|
|
|
$this->tree->expects($this->at(0))
|
2015-03-18 14:30:23 +03:00
|
|
|
->method('getNodeForPath')
|
|
|
|
->with('/dummypath')
|
|
|
|
->will($this->throwException(new \Sabre\DAV\Exception\NotFound()));
|
|
|
|
|
2015-03-23 19:41:32 +03:00
|
|
|
$this->tree->expects($this->at(1))
|
|
|
|
->method('getNodeForPath')
|
|
|
|
->with('/dummypath')
|
|
|
|
->will($this->throwException(new \Sabre\DAV\Exception\ServiceUnavailable()));
|
|
|
|
|
2015-03-18 14:30:23 +03:00
|
|
|
$propFind = new \Sabre\DAV\PropFind(
|
|
|
|
'/dummypath',
|
|
|
|
array(
|
|
|
|
'customprop',
|
|
|
|
'customprop2',
|
|
|
|
'unsetprop',
|
|
|
|
),
|
|
|
|
0
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->plugin->propFind(
|
|
|
|
'/dummypath',
|
|
|
|
$propFind
|
|
|
|
);
|
|
|
|
|
2015-03-23 19:41:32 +03:00
|
|
|
$this->plugin->propFind(
|
|
|
|
'/dummypath',
|
|
|
|
$propFind
|
|
|
|
);
|
|
|
|
|
2015-03-18 14:30:23 +03:00
|
|
|
// no exception, soft fail
|
2018-01-25 13:23:12 +03:00
|
|
|
$this->addToAssertionCount(1);
|
2015-03-18 14:30:23 +03:00
|
|
|
}
|
|
|
|
|
2015-02-12 14:29:01 +03:00
|
|
|
/**
|
|
|
|
* Test setting/getting properties
|
|
|
|
*/
|
|
|
|
public function testSetGetPropertiesForFile() {
|
2017-10-26 11:36:17 +03:00
|
|
|
$node = $this->createTestNode(File::class);
|
2015-02-12 14:29:01 +03:00
|
|
|
$this->tree->expects($this->any())
|
|
|
|
->method('getNodeForPath')
|
|
|
|
->with('/dummypath')
|
|
|
|
->will($this->returnValue($node));
|
|
|
|
|
|
|
|
$this->applyDefaultProps();
|
|
|
|
|
|
|
|
$propFind = new \Sabre\DAV\PropFind(
|
|
|
|
'/dummypath',
|
|
|
|
array(
|
|
|
|
'customprop',
|
|
|
|
'customprop2',
|
|
|
|
'unsetprop',
|
|
|
|
),
|
|
|
|
0
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->plugin->propFind(
|
|
|
|
'/dummypath',
|
|
|
|
$propFind
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertEquals('value1', $propFind->get('customprop'));
|
|
|
|
$this->assertEquals('value2', $propFind->get('customprop2'));
|
|
|
|
$this->assertEquals(array('unsetprop'), $propFind->get404Properties());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test getting properties from directory
|
|
|
|
*/
|
|
|
|
public function testGetPropertiesForDirectory() {
|
2017-10-26 11:36:17 +03:00
|
|
|
$rootNode = $this->createTestNode(Directory::class);
|
2015-02-12 14:29:01 +03:00
|
|
|
|
2017-10-24 16:26:53 +03:00
|
|
|
$nodeSub = $this->getMockBuilder(File::class)
|
2015-02-12 14:29:01 +03:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
$nodeSub->expects($this->any())
|
|
|
|
->method('getId')
|
|
|
|
->will($this->returnValue(456));
|
|
|
|
|
|
|
|
$nodeSub->expects($this->any())
|
|
|
|
->method('getPath')
|
|
|
|
->will($this->returnValue('/dummypath/test.txt'));
|
|
|
|
|
|
|
|
$this->tree->expects($this->at(0))
|
|
|
|
->method('getNodeForPath')
|
|
|
|
->with('/dummypath')
|
|
|
|
->will($this->returnValue($rootNode));
|
|
|
|
|
|
|
|
$this->tree->expects($this->at(1))
|
|
|
|
->method('getNodeForPath')
|
|
|
|
->with('/dummypath/test.txt')
|
|
|
|
->will($this->returnValue($nodeSub));
|
|
|
|
|
|
|
|
$this->tree->expects($this->at(2))
|
|
|
|
->method('getNodeForPath')
|
|
|
|
->with('/dummypath')
|
|
|
|
->will($this->returnValue($rootNode));
|
|
|
|
|
|
|
|
$this->tree->expects($this->at(3))
|
|
|
|
->method('getNodeForPath')
|
|
|
|
->with('/dummypath/test.txt')
|
|
|
|
->will($this->returnValue($nodeSub));
|
|
|
|
|
|
|
|
$this->applyDefaultProps('/dummypath');
|
|
|
|
$this->applyDefaultProps('/dummypath/test.txt');
|
|
|
|
|
|
|
|
$propNames = array(
|
|
|
|
'customprop',
|
|
|
|
'customprop2',
|
|
|
|
'unsetprop',
|
|
|
|
);
|
|
|
|
|
|
|
|
$propFindRoot = new \Sabre\DAV\PropFind(
|
|
|
|
'/dummypath',
|
|
|
|
$propNames,
|
|
|
|
1
|
|
|
|
);
|
|
|
|
|
|
|
|
$propFindSub = new \Sabre\DAV\PropFind(
|
|
|
|
'/dummypath/test.txt',
|
|
|
|
$propNames,
|
|
|
|
0
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->plugin->propFind(
|
|
|
|
'/dummypath',
|
|
|
|
$propFindRoot
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->plugin->propFind(
|
|
|
|
'/dummypath/test.txt',
|
|
|
|
$propFindSub
|
|
|
|
);
|
|
|
|
|
|
|
|
// TODO: find a way to assert that no additional SQL queries were
|
|
|
|
// run while doing the second propFind
|
|
|
|
|
|
|
|
$this->assertEquals('value1', $propFindRoot->get('customprop'));
|
|
|
|
$this->assertEquals('value2', $propFindRoot->get('customprop2'));
|
|
|
|
$this->assertEquals(array('unsetprop'), $propFindRoot->get404Properties());
|
|
|
|
|
|
|
|
$this->assertEquals('value1', $propFindSub->get('customprop'));
|
|
|
|
$this->assertEquals('value2', $propFindSub->get('customprop2'));
|
|
|
|
$this->assertEquals(array('unsetprop'), $propFindSub->get404Properties());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test delete property
|
|
|
|
*/
|
|
|
|
public function testDeleteProperty() {
|
2017-10-26 11:36:17 +03:00
|
|
|
$node = $this->createTestNode(File::class);
|
2015-02-12 14:29:01 +03:00
|
|
|
$this->tree->expects($this->any())
|
|
|
|
->method('getNodeForPath')
|
|
|
|
->with('/dummypath')
|
|
|
|
->will($this->returnValue($node));
|
|
|
|
|
|
|
|
$this->applyDefaultProps();
|
|
|
|
|
|
|
|
$propPatch = new \Sabre\DAV\PropPatch(array(
|
|
|
|
'customprop' => null,
|
|
|
|
));
|
|
|
|
|
|
|
|
$this->plugin->propPatch(
|
|
|
|
'/dummypath',
|
|
|
|
$propPatch
|
|
|
|
);
|
|
|
|
|
|
|
|
$propPatch->commit();
|
|
|
|
|
|
|
|
$this->assertEmpty($propPatch->getRemainingMutations());
|
|
|
|
|
|
|
|
$result = $propPatch->getResult();
|
|
|
|
$this->assertEquals(204, $result['customprop']);
|
|
|
|
}
|
|
|
|
}
|