123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310 |
- <?php
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Björn Schießle <bjoern@schiessle.org>
- * @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>
- *
- * @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;
- use OC\Files\FileInfo;
- use OC\Files\Mount\MountPoint;
- use OC\Files\View;
- use OC\Share20\ShareAttributes;
- use OCA\Files_Sharing\SharedMount;
- use OCA\Files_Sharing\SharedStorage;
- use OCP\Constants;
- use OCP\Files\Cache\ICacheEntry;
- use OCP\Files\Mount\IMountPoint;
- use OCP\Files\Storage;
- use OCP\ICache;
- use OCP\Share\IManager;
- use OCP\Share\IShare;
- /**
- * Class NodeTest
- *
- * @group DB
- * @package OCA\DAV\Tests\unit\Connector\Sabre
- */
- class NodeTest extends \Test\TestCase {
- public function davPermissionsProvider() {
- return [
- [Constants::PERMISSION_ALL, 'file', false, Constants::PERMISSION_ALL, false, 'test', 'RGDNVW'],
- [Constants::PERMISSION_ALL, 'dir', false, Constants::PERMISSION_ALL, false, 'test', 'RGDNVCK'],
- [Constants::PERMISSION_ALL, 'file', true, Constants::PERMISSION_ALL, false, 'test', 'SRGDNVW'],
- [Constants::PERMISSION_ALL, 'file', true, Constants::PERMISSION_ALL, true, 'test', 'SRMGDNVW'],
- [Constants::PERMISSION_ALL, 'file', true, Constants::PERMISSION_ALL, true, '' , 'SRMGDNVW'],
- [Constants::PERMISSION_ALL, 'file', true, Constants::PERMISSION_ALL - Constants::PERMISSION_UPDATE, true, '' , 'SRMGDNV'],
- [Constants::PERMISSION_ALL - Constants::PERMISSION_SHARE, 'file', true, Constants::PERMISSION_ALL, false, 'test', 'SGDNVW'],
- [Constants::PERMISSION_ALL - Constants::PERMISSION_UPDATE, 'file', false, Constants::PERMISSION_ALL, false, 'test', 'RGD'],
- [Constants::PERMISSION_ALL - Constants::PERMISSION_DELETE, 'file', false, Constants::PERMISSION_ALL, false, 'test', 'RGNVW'],
- [Constants::PERMISSION_ALL - Constants::PERMISSION_CREATE, 'file', false, Constants::PERMISSION_ALL, false, 'test', 'RGDNVW'],
- [Constants::PERMISSION_ALL - Constants::PERMISSION_READ, 'file', false, Constants::PERMISSION_ALL, false, 'test', 'RDNVW'],
- [Constants::PERMISSION_ALL - Constants::PERMISSION_CREATE, 'dir', false, Constants::PERMISSION_ALL, false, 'test', 'RGDNV'],
- [Constants::PERMISSION_ALL - Constants::PERMISSION_READ, 'dir', false, Constants::PERMISSION_ALL, false, 'test', 'RDNVCK'],
- ];
- }
- /**
- * @dataProvider davPermissionsProvider
- */
- public function testDavPermissions($permissions, $type, $shared, $shareRootPermissions, $mounted, $internalPath, $expected): void {
- $info = $this->getMockBuilder(FileInfo::class)
- ->disableOriginalConstructor()
- ->onlyMethods(['getPermissions', 'isShared', 'isMounted', 'getType', 'getInternalPath', 'getStorage', 'getMountPoint'])
- ->getMock();
- $info->method('getPermissions')
- ->willReturn($permissions);
- $info->method('isShared')
- ->willReturn($shared);
- $info->method('isMounted')
- ->willReturn($mounted);
- $info->method('getType')
- ->willReturn($type);
- $info->method('getInternalPath')
- ->willReturn($internalPath);
- $info->method('getMountPoint')
- ->willReturnCallback(function () use ($shared) {
- if ($shared) {
- return $this->createMock(SharedMount::class);
- } else {
- return $this->createMock(MountPoint::class);
- }
- });
- $storage = $this->createMock(Storage\IStorage::class);
- if ($shared) {
- $storage->method('instanceOfStorage')
- ->willReturn(true);
- $cache = $this->createMock(ICache::class);
- $storage->method('getCache')
- ->willReturn($cache);
- $shareRootEntry = $this->createMock(ICacheEntry::class);
- $cache->method('get')
- ->willReturn($shareRootEntry);
- $shareRootEntry->method('getPermissions')
- ->willReturn($shareRootPermissions);
- } else {
- $storage->method('instanceOfStorage')
- ->willReturn(false);
- }
- $info->method('getStorage')
- ->willReturn($storage);
- $view = $this->getMockBuilder(View::class)
- ->disableOriginalConstructor()
- ->getMock();
- $node = new \OCA\DAV\Connector\Sabre\File($view, $info);
- $this->assertEquals($expected, $node->getDavPermissions());
- }
- public function sharePermissionsProvider() {
- return [
- [\OCP\Files\FileInfo::TYPE_FILE, null, 1, 1],
- [\OCP\Files\FileInfo::TYPE_FILE, null, 3, 3],
- [\OCP\Files\FileInfo::TYPE_FILE, null, 5, 1],
- [\OCP\Files\FileInfo::TYPE_FILE, null, 7, 3],
- [\OCP\Files\FileInfo::TYPE_FILE, null, 9, 1],
- [\OCP\Files\FileInfo::TYPE_FILE, null, 11, 3],
- [\OCP\Files\FileInfo::TYPE_FILE, null, 13, 1],
- [\OCP\Files\FileInfo::TYPE_FILE, null, 15, 3],
- [\OCP\Files\FileInfo::TYPE_FILE, null, 17, 17],
- [\OCP\Files\FileInfo::TYPE_FILE, null, 19, 19],
- [\OCP\Files\FileInfo::TYPE_FILE, null, 21, 17],
- [\OCP\Files\FileInfo::TYPE_FILE, null, 23, 19],
- [\OCP\Files\FileInfo::TYPE_FILE, null, 25, 17],
- [\OCP\Files\FileInfo::TYPE_FILE, null, 27, 19],
- [\OCP\Files\FileInfo::TYPE_FILE, null, 29, 17],
- [\OCP\Files\FileInfo::TYPE_FILE, null, 30, 18],
- [\OCP\Files\FileInfo::TYPE_FILE, null, 31, 19],
- [\OCP\Files\FileInfo::TYPE_FOLDER, null, 1, 1],
- [\OCP\Files\FileInfo::TYPE_FOLDER, null, 3, 3],
- [\OCP\Files\FileInfo::TYPE_FOLDER, null, 5, 5],
- [\OCP\Files\FileInfo::TYPE_FOLDER, null, 7, 7],
- [\OCP\Files\FileInfo::TYPE_FOLDER, null, 9, 9],
- [\OCP\Files\FileInfo::TYPE_FOLDER, null, 11, 11],
- [\OCP\Files\FileInfo::TYPE_FOLDER, null, 13, 13],
- [\OCP\Files\FileInfo::TYPE_FOLDER, null, 15, 15],
- [\OCP\Files\FileInfo::TYPE_FOLDER, null, 17, 17],
- [\OCP\Files\FileInfo::TYPE_FOLDER, null, 19, 19],
- [\OCP\Files\FileInfo::TYPE_FOLDER, null, 21, 21],
- [\OCP\Files\FileInfo::TYPE_FOLDER, null, 23, 23],
- [\OCP\Files\FileInfo::TYPE_FOLDER, null, 25, 25],
- [\OCP\Files\FileInfo::TYPE_FOLDER, null, 27, 27],
- [\OCP\Files\FileInfo::TYPE_FOLDER, null, 29, 29],
- [\OCP\Files\FileInfo::TYPE_FOLDER, null, 30, 30],
- [\OCP\Files\FileInfo::TYPE_FOLDER, null, 31, 31],
- [\OCP\Files\FileInfo::TYPE_FOLDER, 'shareToken', 7, 7],
- ];
- }
- /**
- * @dataProvider sharePermissionsProvider
- */
- public function testSharePermissions($type, $user, $permissions, $expected): void {
- $storage = $this->getMockBuilder(Storage::class)
- ->disableOriginalConstructor()
- ->getMock();
- $storage->method('getPermissions')->willReturn($permissions);
- $mountpoint = $this->getMockBuilder(IMountPoint::class)
- ->disableOriginalConstructor()
- ->getMock();
- $mountpoint->method('getMountPoint')->willReturn('myPath');
- $shareManager = $this->getMockBuilder(IManager::class)->disableOriginalConstructor()->getMock();
- $share = $this->getMockBuilder(IShare::class)->disableOriginalConstructor()->getMock();
- if ($user === null) {
- $shareManager->expects($this->never())->method('getShareByToken');
- $share->expects($this->never())->method('getPermissions');
- } else {
- $shareManager->expects($this->once())->method('getShareByToken')->with($user)
- ->willReturn($share);
- $share->expects($this->once())->method('getPermissions')->willReturn($permissions);
- }
- $info = $this->getMockBuilder(FileInfo::class)
- ->disableOriginalConstructor()
- ->setMethods(['getStorage', 'getType', 'getMountPoint', 'getPermissions'])
- ->getMock();
- $info->method('getStorage')->willReturn($storage);
- $info->method('getType')->willReturn($type);
- $info->method('getMountPoint')->willReturn($mountpoint);
- $info->method('getPermissions')->willReturn($permissions);
- $view = $this->getMockBuilder(View::class)
- ->disableOriginalConstructor()
- ->getMock();
- $node = new \OCA\DAV\Connector\Sabre\File($view, $info);
- $this->invokePrivate($node, 'shareManager', [$shareManager]);
- $this->assertEquals($expected, $node->getSharePermissions($user));
- }
- public function testShareAttributes(): void {
- $storage = $this->getMockBuilder(SharedStorage::class)
- ->disableOriginalConstructor()
- ->setMethods(['getShare'])
- ->getMock();
- $shareManager = $this->getMockBuilder(IManager::class)->disableOriginalConstructor()->getMock();
- $share = $this->getMockBuilder(IShare::class)->disableOriginalConstructor()->getMock();
- $storage->expects($this->once())
- ->method('getShare')
- ->willReturn($share);
- $attributes = new ShareAttributes();
- $attributes->setAttribute('permissions', 'download', false);
- $share->expects($this->once())->method('getAttributes')->willReturn($attributes);
- $info = $this->getMockBuilder(FileInfo::class)
- ->disableOriginalConstructor()
- ->setMethods(['getStorage', 'getType'])
- ->getMock();
- $info->method('getStorage')->willReturn($storage);
- $info->method('getType')->willReturn(FileInfo::TYPE_FOLDER);
- $view = $this->getMockBuilder(View::class)
- ->disableOriginalConstructor()
- ->getMock();
- $node = new \OCA\DAV\Connector\Sabre\File($view, $info);
- $this->invokePrivate($node, 'shareManager', [$shareManager]);
- $this->assertEquals($attributes->toArray(), $node->getShareAttributes());
- }
- public function testShareAttributesNonShare(): void {
- $storage = $this->getMockBuilder(Storage::class)
- ->disableOriginalConstructor()
- ->getMock();
- $shareManager = $this->getMockBuilder(IManager::class)->disableOriginalConstructor()->getMock();
- $info = $this->getMockBuilder(FileInfo::class)
- ->disableOriginalConstructor()
- ->setMethods(['getStorage', 'getType'])
- ->getMock();
- $info->method('getStorage')->willReturn($storage);
- $info->method('getType')->willReturn(FileInfo::TYPE_FOLDER);
- $view = $this->getMockBuilder(View::class)
- ->disableOriginalConstructor()
- ->getMock();
- $node = new \OCA\DAV\Connector\Sabre\File($view, $info);
- $this->invokePrivate($node, 'shareManager', [$shareManager]);
- $this->assertEquals([], $node->getShareAttributes());
- }
- public function sanitizeMtimeProvider() {
- return [
- [123456789, 123456789],
- ['987654321', 987654321],
- ];
- }
- /**
- * @dataProvider sanitizeMtimeProvider
- */
- public function testSanitizeMtime($mtime, $expected): void {
- $view = $this->getMockBuilder(View::class)
- ->disableOriginalConstructor()
- ->getMock();
- $info = $this->getMockBuilder(FileInfo::class)
- ->disableOriginalConstructor()
- ->getMock();
- $node = new \OCA\DAV\Connector\Sabre\File($view, $info);
- $result = $this->invokePrivate($node, 'sanitizeMtime', [$mtime]);
- $this->assertEquals($expected, $result);
- }
- public function invalidSanitizeMtimeProvider() {
- return [
- [-1337], [0], ['abcdef'], ['-1337'], ['0'], [12321], [24 * 60 * 60 - 1],
- ];
- }
- /**
- * @dataProvider invalidSanitizeMtimeProvider
- */
- public function testInvalidSanitizeMtime($mtime): void {
- $this->expectException(\InvalidArgumentException::class);
- $view = $this->getMockBuilder(View::class)
- ->disableOriginalConstructor()
- ->getMock();
- $info = $this->getMockBuilder(FileInfo::class)
- ->disableOriginalConstructor()
- ->getMock();
- $node = new \OCA\DAV\Connector\Sabre\File($view, $info);
- $result = $this->invokePrivate($node, 'sanitizeMtime', [$mtime]);
- }
- }
|