2013-11-05 22:30:52 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2015-02-26 13:37:37 +03:00
|
|
|
* ownCloud
|
2013-11-05 22:30:52 +04:00
|
|
|
*
|
2015-02-26 13:37:37 +03:00
|
|
|
* @author Bjoern Schiessle
|
|
|
|
* @copyright 2013 Bjoern Schiessle <schiessle@owncloud.com>
|
2013-11-05 22:30:52 +04:00
|
|
|
*
|
2015-02-26 13:37:37 +03:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or any later version.
|
2013-11-05 22:30:52 +04:00
|
|
|
*
|
2015-02-26 13:37:37 +03:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2013-11-05 22:30:52 +04:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-02-26 13:37:37 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
|
2013-11-05 22:30:52 +04:00
|
|
|
*
|
2015-02-26 13:37:37 +03:00
|
|
|
* You should have received a copy of the GNU Affero General Public
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2013-11-05 22:30:52 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2014-10-30 19:20:40 +03:00
|
|
|
namespace OCA\Files_Sharing\Tests;
|
2013-11-05 22:30:52 +04:00
|
|
|
|
2014-10-15 13:58:44 +04:00
|
|
|
use OC\Files\Filesystem;
|
2013-11-05 22:30:52 +04:00
|
|
|
use OCA\Files\Share;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class Test_Files_Sharing_Base
|
|
|
|
*
|
|
|
|
* Base class for sharing tests.
|
|
|
|
*/
|
2014-11-11 00:28:12 +03:00
|
|
|
abstract class TestCase extends \Test\TestCase {
|
2013-11-05 22:30:52 +04:00
|
|
|
|
|
|
|
const TEST_FILES_SHARING_API_USER1 = "test-share-user1";
|
|
|
|
const TEST_FILES_SHARING_API_USER2 = "test-share-user2";
|
|
|
|
const TEST_FILES_SHARING_API_USER3 = "test-share-user3";
|
|
|
|
|
2014-08-01 18:24:19 +04:00
|
|
|
const TEST_FILES_SHARING_API_GROUP1 = "test-share-group1";
|
|
|
|
|
2014-10-10 17:34:19 +04:00
|
|
|
public static $stateFilesEncryption;
|
2013-11-05 22:30:52 +04:00
|
|
|
public $filename;
|
|
|
|
public $data;
|
|
|
|
/**
|
2014-10-30 19:20:40 +03:00
|
|
|
* @var \OC\Files\View
|
2013-11-05 22:30:52 +04:00
|
|
|
*/
|
|
|
|
public $view;
|
|
|
|
public $folder;
|
2014-02-25 18:28:21 +04:00
|
|
|
public $subfolder;
|
2013-11-05 22:30:52 +04:00
|
|
|
|
|
|
|
public static function setUpBeforeClass() {
|
2014-11-11 00:28:12 +03:00
|
|
|
parent::setUpBeforeClass();
|
2014-10-10 17:34:19 +04:00
|
|
|
|
|
|
|
// remember files_encryption state
|
|
|
|
self::$stateFilesEncryption = \OC_App::isEnabled('files_encryption');
|
|
|
|
|
|
|
|
//we don't want to tests with app files_encryption enabled
|
|
|
|
\OC_App::disable('files_encryption');
|
|
|
|
|
2013-11-05 22:30:52 +04:00
|
|
|
// reset backend
|
|
|
|
\OC_User::clearBackends();
|
2015-02-25 17:30:48 +03:00
|
|
|
\OC_Group::clearBackends();
|
2013-11-05 22:30:52 +04:00
|
|
|
|
|
|
|
// clear share hooks
|
|
|
|
\OC_Hook::clear('OCP\\Share');
|
|
|
|
\OC::registerShareHooks();
|
|
|
|
\OCP\Util::connectHook('OC_Filesystem', 'setup', '\OC\Files\Storage\Shared', 'setup');
|
|
|
|
|
|
|
|
// create users
|
2014-11-04 17:15:58 +03:00
|
|
|
$backend = new \OC_User_Dummy();
|
|
|
|
\OC_User::useBackend($backend);
|
|
|
|
$backend->createUser(self::TEST_FILES_SHARING_API_USER1, self::TEST_FILES_SHARING_API_USER1);
|
|
|
|
$backend->createUser(self::TEST_FILES_SHARING_API_USER2, self::TEST_FILES_SHARING_API_USER2);
|
|
|
|
$backend->createUser(self::TEST_FILES_SHARING_API_USER3, self::TEST_FILES_SHARING_API_USER3);
|
2013-11-05 22:30:52 +04:00
|
|
|
|
2014-08-01 18:24:19 +04:00
|
|
|
// create group
|
2014-11-06 20:31:33 +03:00
|
|
|
$groupBackend = new \OC_Group_Dummy();
|
|
|
|
$groupBackend->createGroup(self::TEST_FILES_SHARING_API_GROUP1);
|
|
|
|
$groupBackend->createGroup('group');
|
|
|
|
$groupBackend->addToGroup(self::TEST_FILES_SHARING_API_USER1, 'group');
|
|
|
|
$groupBackend->addToGroup(self::TEST_FILES_SHARING_API_USER2, 'group');
|
|
|
|
$groupBackend->addToGroup(self::TEST_FILES_SHARING_API_USER3, 'group');
|
|
|
|
$groupBackend->addToGroup(self::TEST_FILES_SHARING_API_USER2, self::TEST_FILES_SHARING_API_GROUP1);
|
|
|
|
\OC_Group::useBackend($groupBackend);
|
2014-08-01 18:24:19 +04:00
|
|
|
|
2013-11-05 22:30:52 +04:00
|
|
|
}
|
|
|
|
|
2014-11-11 00:28:12 +03:00
|
|
|
protected function setUp() {
|
|
|
|
parent::setUp();
|
2013-11-05 22:30:52 +04:00
|
|
|
|
|
|
|
//login as user1
|
|
|
|
self::loginHelper(self::TEST_FILES_SHARING_API_USER1);
|
|
|
|
|
|
|
|
$this->data = 'foobar';
|
2014-05-12 18:30:39 +04:00
|
|
|
$this->view = new \OC\Files\View('/' . self::TEST_FILES_SHARING_API_USER1 . '/files');
|
2015-02-16 18:41:51 +03:00
|
|
|
|
|
|
|
$this->assertFalse(\OC_App::isEnabled('files_encryption'));
|
2013-11-05 22:30:52 +04:00
|
|
|
}
|
|
|
|
|
2014-11-11 00:28:12 +03:00
|
|
|
protected function tearDown() {
|
2014-09-22 20:13:40 +04:00
|
|
|
$query = \OCP\DB::prepare('DELETE FROM `*PREFIX*share`');
|
|
|
|
$query->execute();
|
2014-11-11 00:28:12 +03:00
|
|
|
|
|
|
|
parent::tearDown();
|
2013-11-05 22:30:52 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public static function tearDownAfterClass() {
|
|
|
|
// cleanup users
|
|
|
|
\OC_User::deleteUser(self::TEST_FILES_SHARING_API_USER1);
|
|
|
|
\OC_User::deleteUser(self::TEST_FILES_SHARING_API_USER2);
|
|
|
|
\OC_User::deleteUser(self::TEST_FILES_SHARING_API_USER3);
|
2014-08-01 18:24:19 +04:00
|
|
|
|
|
|
|
// delete group
|
|
|
|
\OC_Group::deleteGroup(self::TEST_FILES_SHARING_API_GROUP1);
|
2014-10-10 17:34:19 +04:00
|
|
|
|
|
|
|
// reset app files_encryption
|
|
|
|
if (self::$stateFilesEncryption) {
|
|
|
|
\OC_App::enable('files_encryption');
|
|
|
|
} else {
|
|
|
|
\OC_App::disable('files_encryption');
|
|
|
|
}
|
2014-10-15 13:58:44 +04:00
|
|
|
|
|
|
|
\OC_Util::tearDownFS();
|
|
|
|
\OC_User::setUserId('');
|
|
|
|
Filesystem::tearDown();
|
2014-11-11 00:28:12 +03:00
|
|
|
|
2015-02-25 17:30:48 +03:00
|
|
|
// reset backend
|
|
|
|
\OC_User::clearBackends();
|
|
|
|
\OC_User::useBackend('database');
|
|
|
|
\OC_Group::clearBackends();
|
|
|
|
\OC_Group::useBackend(new \OC_Group_Database());
|
|
|
|
|
2014-11-11 00:28:12 +03:00
|
|
|
parent::tearDownAfterClass();
|
2013-11-05 22:30:52 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-13 15:29:25 +04:00
|
|
|
* @param string $user
|
2013-11-05 22:30:52 +04:00
|
|
|
* @param bool $create
|
|
|
|
* @param bool $password
|
|
|
|
*/
|
|
|
|
protected static function loginHelper($user, $create = false, $password = false) {
|
|
|
|
|
|
|
|
if ($password === false) {
|
|
|
|
$password = $user;
|
|
|
|
}
|
|
|
|
|
2014-04-08 21:57:07 +04:00
|
|
|
if ($create) {
|
|
|
|
\OC_User::createUser($user, $password);
|
2014-05-13 17:22:18 +04:00
|
|
|
\OC_Group::createGroup('group');
|
|
|
|
\OC_Group::addToGroup($user, 'group');
|
2014-04-08 21:57:07 +04:00
|
|
|
}
|
|
|
|
|
2013-11-05 22:30:52 +04:00
|
|
|
\OC_Util::tearDownFS();
|
2014-08-29 16:36:00 +04:00
|
|
|
\OC::$server->getUserSession()->setUser(null);
|
2013-11-05 22:30:52 +04:00
|
|
|
\OC\Files\Filesystem::tearDown();
|
2014-08-29 16:36:00 +04:00
|
|
|
\OC::$server->getUserSession()->login($user, $password);
|
2014-04-08 21:57:07 +04:00
|
|
|
\OC_Util::setupFS($user);
|
2013-11-05 22:30:52 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* get some information from a given share
|
2013-11-05 22:30:52 +04:00
|
|
|
* @param int $shareID
|
|
|
|
* @return array with: item_source, share_type, share_with, item_type, permissions
|
|
|
|
*/
|
|
|
|
protected function getShareFromId($shareID) {
|
|
|
|
$sql = 'SELECT `item_source`, `share_type`, `share_with`, `item_type`, `permissions` FROM `*PREFIX*share` WHERE `id` = ?';
|
|
|
|
$args = array($shareID);
|
|
|
|
$query = \OCP\DB::prepare($sql);
|
|
|
|
$result = $query->execute($args);
|
|
|
|
|
|
|
|
$share = Null;
|
|
|
|
|
2013-12-18 21:23:07 +04:00
|
|
|
if ($result) {
|
|
|
|
$share = $result->fetchRow();
|
2013-11-05 22:30:52 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return $share;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|