123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268 |
- <?php
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Joas Schilling <coding@schilljs.com>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Robin Appelman <robin@icewind.nl>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- * @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/>
- *
- */
- namespace OCA\DAV\Tests\unit\Connector\Sabre;
- /**
- * 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.
- */
- use OCA\DAV\Connector\Sabre\Directory;
- use OCA\DAV\Connector\Sabre\File;
- use OCP\IUser;
- use Sabre\DAV\Tree;
- /**
- * Class CustomPropertiesBackend
- *
- * @group DB
- *
- * @package OCA\DAV\Tests\unit\Connector\Sabre
- */
- class CustomPropertiesBackendTest extends \Test\TestCase {
- /**
- * @var \Sabre\DAV\Server
- */
- private $server;
- /**
- * @var \Sabre\DAV\Tree
- */
- private $tree;
- /**
- * @var \OCA\DAV\DAV\CustomPropertiesBackend
- */
- private $plugin;
- /**
- * @var \OCP\IUser
- */
- private $user;
- protected function setUp(): void {
- parent::setUp();
- $this->server = new \Sabre\DAV\Server();
- $this->tree = $this->getMockBuilder(Tree::class)
- ->disableOriginalConstructor()
- ->getMock();
- $userId = $this->getUniqueID('testcustompropertiesuser');
- $this->user = $this->getMockBuilder(IUser::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->user->expects($this->any())
- ->method('getUID')
- ->willReturn($userId);
- $this->plugin = new \OCA\DAV\DAV\CustomPropertiesBackend(
- $this->tree,
- \OC::$server->getDatabaseConnection(),
- $this->user
- );
- }
- protected function tearDown(): void {
- $connection = \OC::$server->getDatabaseConnection();
- $deleteStatement = $connection->prepare(
- 'DELETE FROM `*PREFIX*properties`' .
- ' WHERE `userid` = ?'
- );
- $deleteStatement->execute(
- [
- $this->user->getUID(),
- ]
- );
- $deleteStatement->closeCursor();
- }
- private function createTestNode($class) {
- $node = $this->getMockBuilder($class)
- ->disableOriginalConstructor()
- ->getMock();
- $node->expects($this->any())
- ->method('getId')
- ->willReturn(123);
- $node->expects($this->any())
- ->method('getPath')
- ->willReturn('/dummypath');
- return $node;
- }
- private function applyDefaultProps($path = '/dummypath') {
- // properties to set
- $propPatch = new \Sabre\DAV\PropPatch([
- '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']);
- }
- /**
- * Test that propFind on a missing file soft fails
- */
- public function testPropFindMissingFileSoftFail() {
- $propFind = new \Sabre\DAV\PropFind(
- '/dummypath',
- [
- 'customprop',
- 'customprop2',
- 'unsetprop',
- ],
- 0
- );
- $this->plugin->propFind(
- '/dummypath',
- $propFind
- );
- $this->plugin->propFind(
- '/dummypath',
- $propFind
- );
- // assert that the above didn't throw exceptions
- $this->assertTrue(true);
- }
- /**
- * Test setting/getting properties
- */
- public function testSetGetPropertiesForFile() {
- $this->applyDefaultProps();
- $propFind = new \Sabre\DAV\PropFind(
- '/dummypath',
- [
- 'customprop',
- 'customprop2',
- 'unsetprop',
- ],
- 0
- );
- $this->plugin->propFind(
- '/dummypath',
- $propFind
- );
- $this->assertEquals('value1', $propFind->get('customprop'));
- $this->assertEquals('value2', $propFind->get('customprop2'));
- $this->assertEquals(['unsetprop'], $propFind->get404Properties());
- }
- /**
- * Test getting properties from directory
- */
- public function testGetPropertiesForDirectory() {
- $this->applyDefaultProps('/dummypath');
- $this->applyDefaultProps('/dummypath/test.txt');
- $propNames = [
- '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(['unsetprop'], $propFindRoot->get404Properties());
- $this->assertEquals('value1', $propFindSub->get('customprop'));
- $this->assertEquals('value2', $propFindSub->get('customprop2'));
- $this->assertEquals(['unsetprop'], $propFindSub->get404Properties());
- }
- /**
- * Test delete property
- */
- public function testDeleteProperty() {
- $this->applyDefaultProps();
- $propPatch = new \Sabre\DAV\PropPatch([
- 'customprop' => null,
- ]);
- $this->plugin->propPatch(
- '/dummypath',
- $propPatch
- );
- $propPatch->commit();
- $this->assertEmpty($propPatch->getRemainingMutations());
- $result = $propPatch->getResult();
- $this->assertEquals(204, $result['customprop']);
- }
- }
|