nextcloud/apps/files_sharing/tests/PermissionsTest.php

164 lines
5.8 KiB
PHP
Raw Normal View History

<?php
/**
2016-05-26 20:56:05 +03:00
* @author Björn Schießle <bjoern@schiessle.org>
2015-03-26 13:44:34 +03:00
* @author Joas Schilling <nickvergessen@owncloud.com>
2015-06-25 12:43:55 +03:00
* @author Robin Appelman <icewind@owncloud.com>
2016-05-26 20:56:05 +03:00
* @author Roeland Jago Douma <rullzer@owncloud.com>
2015-03-26 13:44:34 +03:00
* @author Thomas Müller <thomas.mueller@tmit.eu>
* @author Vincent Petry <pvince81@owncloud.com>
*
2016-01-12 17:02:16 +03:00
* @copyright Copyright (c) 2016, ownCloud, Inc.
2015-03-26 13:44:34 +03:00
* @license AGPL-3.0
*
2015-03-26 13:44:34 +03:00
* 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.
*
2015-03-26 13:44:34 +03:00
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
2015-03-26 13:44:34 +03:00
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
2015-03-26 13:44:34 +03:00
* 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/>
*
*/
2016-05-17 12:42:03 +03:00
namespace OCA\Files_Sharing\Tests;
2014-06-05 22:03:32 +04:00
use OC\Files\Cache\Cache;
use OC\Files\Storage\Storage;
use OC\Files\View;
2015-11-03 03:52:41 +03:00
/**
2016-05-17 12:42:03 +03:00
* Class PermissionsTest
2015-11-03 03:52:41 +03:00
*
* @group DB
*/
2016-05-17 12:42:03 +03:00
class PermissionsTest extends TestCase {
2016-04-15 10:02:17 +03:00
/** @var Storage */
2014-04-08 21:57:07 +04:00
private $sharedStorageRestrictedShare;
2014-06-05 22:03:32 +04:00
2016-04-15 10:02:17 +03:00
/** @var Storage */
2014-04-08 21:57:07 +04:00
private $sharedCacheRestrictedShare;
2016-04-15 10:02:17 +03:00
/** @var View */
2014-06-05 22:03:32 +04:00
private $secondView;
2016-04-15 10:02:17 +03:00
/** @var Storage */
2014-06-05 22:03:32 +04:00
private $ownerStorage;
2016-04-15 10:02:17 +03:00
/** @var Storage */
2014-06-05 22:03:32 +04:00
private $sharedStorage;
2016-04-15 10:02:17 +03:00
/** @var Cache */
2014-06-05 22:03:32 +04:00
private $sharedCache;
2016-04-15 10:02:17 +03:00
/** @var Cache */
2014-06-05 22:03:32 +04:00
private $ownerCache;
protected function setUp() {
parent::setUp();
self::loginHelper(self::TEST_FILES_SHARING_API_USER1);
// prepare user1's dir structure
$textData = "dummy file data\n";
$this->view->mkdir('container');
$this->view->mkdir('container/shareddir');
$this->view->mkdir('container/shareddir/subdir');
$this->view->mkdir('container/shareddirrestricted');
$this->view->mkdir('container/shareddirrestricted/subdir');
$this->view->file_put_contents('container/shareddir/textfile.txt', $textData);
$this->view->file_put_contents('container/shareddirrestricted/textfile1.txt', $textData);
list($this->ownerStorage, $internalPath) = $this->view->resolvePath('');
$this->ownerCache = $this->ownerStorage->getCache();
$this->ownerStorage->getScanner()->scan('');
// share "shareddir" with user2
2016-04-15 10:02:17 +03:00
$rootFolder = \OC::$server->getUserFolder(self::TEST_FILES_SHARING_API_USER1);
$node = $rootFolder->get('container/shareddir');
$share = $this->shareManager->newShare();
$share->setNode($node)
->setShareType(\OCP\Share::SHARE_TYPE_USER)
->setSharedWith(self::TEST_FILES_SHARING_API_USER2)
->setSharedBy(self::TEST_FILES_SHARING_API_USER1)
->setPermissions(\OCP\Constants::PERMISSION_ALL);
$this->shareManager->createShare($share);
$node = $rootFolder->get('container/shareddirrestricted');
$share = $this->shareManager->newShare();
$share->setNode($node)
->setShareType(\OCP\Share::SHARE_TYPE_USER)
->setSharedWith(self::TEST_FILES_SHARING_API_USER2)
->setSharedBy(self::TEST_FILES_SHARING_API_USER1)
->setPermissions(\OCP\Constants::PERMISSION_READ | \OCP\Constants::PERMISSION_CREATE | \OCP\Constants::PERMISSION_UPDATE);
$this->shareManager->createShare($share);
// login as user2
self::loginHelper(self::TEST_FILES_SHARING_API_USER2);
// retrieve the shared storage
$this->secondView = new \OC\Files\View('/' . self::TEST_FILES_SHARING_API_USER2);
2014-04-08 21:57:07 +04:00
list($this->sharedStorage, $internalPath) = $this->secondView->resolvePath('files/shareddir');
list($this->sharedStorageRestrictedShare, $internalPath) = $this->secondView->resolvePath('files/shareddirrestricted');
$this->sharedCache = $this->sharedStorage->getCache();
2014-04-08 21:57:07 +04:00
$this->sharedCacheRestrictedShare = $this->sharedStorageRestrictedShare->getCache();
}
protected function tearDown() {
if ($this->sharedCache) {
$this->sharedCache->clear();
}
self::loginHelper(self::TEST_FILES_SHARING_API_USER1);
2016-04-15 10:02:17 +03:00
$shares = $this->shareManager->getSharesBy(self::TEST_FILES_SHARING_API_USER1, \OCP\Share::SHARE_TYPE_USER);
foreach ($shares as $share) {
$this->shareManager->deleteShare($share);
}
$this->view->deleteAll('container');
$this->ownerCache->clear();
parent::tearDown();
}
/**
* Test that the permissions of shared directory are returned correctly
*/
function testGetPermissions() {
$sharedDirPerms = $this->sharedStorage->getPermissions('shareddir');
$this->assertEquals(31, $sharedDirPerms);
$sharedDirPerms = $this->sharedStorage->getPermissions('shareddir/textfile.txt');
$this->assertEquals(31, $sharedDirPerms);
2014-04-08 21:57:07 +04:00
$sharedDirRestrictedPerms = $this->sharedStorageRestrictedShare->getPermissions('shareddirrestricted');
$this->assertEquals(7, $sharedDirRestrictedPerms);
2014-04-08 21:57:07 +04:00
$sharedDirRestrictedPerms = $this->sharedStorageRestrictedShare->getPermissions('shareddirrestricted/textfile.txt');
$this->assertEquals(7, $sharedDirRestrictedPerms);
}
/**
* Test that the permissions of shared directory are returned correctly
*/
function testGetDirectoryPermissions() {
2014-04-08 21:57:07 +04:00
$contents = $this->secondView->getDirectoryContent('files/shareddir');
$this->assertEquals('subdir', $contents[0]['name']);
$this->assertEquals(31, $contents[0]['permissions']);
$this->assertEquals('textfile.txt', $contents[1]['name']);
2014-06-05 22:33:52 +04:00
// 27 is correct because create is reserved to folders only - requires more unit tests overall to ensure this
$this->assertEquals(27, $contents[1]['permissions']);
2014-04-08 21:57:07 +04:00
$contents = $this->secondView->getDirectoryContent('files/shareddirrestricted');
$this->assertEquals('subdir', $contents[0]['name']);
2014-06-24 16:00:15 +04:00
$this->assertEquals(7, $contents[0]['permissions']);
$this->assertEquals('textfile1.txt', $contents[1]['name']);
2014-06-05 22:33:52 +04:00
// 3 is correct because create is reserved to folders only
2014-06-24 16:00:15 +04:00
$this->assertEquals(3, $contents[1]['permissions']);
}
}