2013-09-19 16:39:51 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* ownCloud
|
|
|
|
*
|
|
|
|
* @author Bjoern Schiessle
|
|
|
|
* @copyright 2013 Bjoern Schiessle <schiessle@owncloud.com>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* This library 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 along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
require_once __DIR__ . '/../../../lib/base.php';
|
|
|
|
|
|
|
|
use OCA\Files\Share;
|
|
|
|
|
|
|
|
/**
|
2013-09-25 11:43:16 +04:00
|
|
|
* Class Test_Files_Sharing_Api
|
2013-09-19 16:39:51 +04:00
|
|
|
*/
|
|
|
|
class Test_Files_Sharing_Api extends \PHPUnit_Framework_TestCase {
|
|
|
|
|
|
|
|
const TEST_FILES_SHARING_API_USER1 = "test-share-user1";
|
|
|
|
const TEST_FILES_SHARING_API_USER2 = "test-share-user2";
|
|
|
|
|
2013-09-19 22:14:34 +04:00
|
|
|
public $stateFilesEncryption;
|
2013-09-19 16:39:51 +04:00
|
|
|
public $filename;
|
|
|
|
public $data;
|
|
|
|
/**
|
|
|
|
* @var OC_FilesystemView
|
|
|
|
*/
|
|
|
|
public $view;
|
|
|
|
public $folder;
|
|
|
|
|
|
|
|
public static function setUpBeforeClass() {
|
|
|
|
// reset backend
|
|
|
|
\OC_User::clearBackends();
|
|
|
|
\OC_User::useBackend('database');
|
|
|
|
|
|
|
|
// clear share hooks
|
|
|
|
\OC_Hook::clear('OCP\\Share');
|
|
|
|
\OC::registerShareHooks();
|
|
|
|
\OCP\Util::connectHook('OC_Filesystem', 'setup', '\OC\Files\Storage\Shared', 'setup');
|
|
|
|
|
|
|
|
// create users
|
|
|
|
self::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1, true);
|
|
|
|
self::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, true);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function setUp() {
|
2013-10-10 12:47:35 +04:00
|
|
|
|
|
|
|
//login as user1
|
|
|
|
\Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1);
|
|
|
|
|
2013-09-19 16:39:51 +04:00
|
|
|
$this->data = 'foobar';
|
|
|
|
$this->view = new \OC_FilesystemView('/' . \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1 . '/files');
|
|
|
|
|
2013-09-20 13:24:18 +04:00
|
|
|
$this->folder = '/folder_share_api_test';
|
2013-09-19 16:39:51 +04:00
|
|
|
|
|
|
|
$this->filename = 'share-api-test.txt';
|
|
|
|
|
2013-09-20 13:24:18 +04:00
|
|
|
// remember files_encryption state
|
|
|
|
$this->stateFilesEncryption = \OC_App::isEnabled('files_encryption');
|
|
|
|
|
|
|
|
//we don't want to tests with app files_encryption enabled
|
|
|
|
\OC_App::disable('files_encryption');
|
|
|
|
|
|
|
|
|
|
|
|
$this->assertTrue(!\OC_App::isEnabled('files_encryption'));
|
|
|
|
|
2013-09-19 16:39:51 +04:00
|
|
|
// save file with content
|
|
|
|
$this->view->file_put_contents($this->filename, $this->data);
|
|
|
|
$this->view->mkdir($this->folder);
|
|
|
|
$this->view->file_put_contents($this->folder.'/'.$this->filename, $this->data);
|
2013-09-19 22:14:34 +04:00
|
|
|
|
2013-09-19 16:39:51 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
function tearDown() {
|
|
|
|
$this->view->unlink($this->filename);
|
|
|
|
$this->view->deleteAll($this->folder);
|
2013-09-20 13:24:18 +04:00
|
|
|
// reset app files_encryption
|
|
|
|
if ($this->stateFilesEncryption) {
|
|
|
|
\OC_App::enable('files_encryption');
|
2013-09-19 22:14:34 +04:00
|
|
|
} else {
|
2013-09-20 13:24:18 +04:00
|
|
|
\OC_App::disable('files_encryption');
|
2013-09-19 22:14:34 +04:00
|
|
|
}
|
2013-09-19 16:39:51 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public static function tearDownAfterClass() {
|
|
|
|
|
|
|
|
// cleanup users
|
|
|
|
\OC_User::deleteUser(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1);
|
|
|
|
\OC_User::deleteUser(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @medium
|
|
|
|
*/
|
|
|
|
function testCreateShare() {
|
|
|
|
|
|
|
|
// share to user
|
|
|
|
|
|
|
|
// simulate a post request
|
|
|
|
$_POST['path'] = $this->filename;
|
|
|
|
$_POST['shareWith'] = \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2;
|
|
|
|
$_POST['shareType'] = \OCP\Share::SHARE_TYPE_USER;
|
|
|
|
|
|
|
|
$result = Share\Api::createShare(array());
|
|
|
|
|
|
|
|
$this->assertTrue($result->succeeded());
|
|
|
|
$data = $result->getData();
|
|
|
|
|
|
|
|
$share = $this->getShareFromId($data['id']);
|
|
|
|
|
|
|
|
$items = \OCP\Share::getItemShared('file', $share['item_source']);
|
|
|
|
|
|
|
|
$this->assertTrue(!empty($items));
|
|
|
|
|
|
|
|
// share link
|
|
|
|
|
|
|
|
// simulate a post request
|
|
|
|
$_POST['path'] = $this->folder;
|
|
|
|
$_POST['shareType'] = \OCP\Share::SHARE_TYPE_LINK;
|
|
|
|
|
|
|
|
$result = Share\Api::createShare(array());
|
|
|
|
|
|
|
|
// check if API call was successful
|
|
|
|
$this->assertTrue($result->succeeded());
|
|
|
|
|
|
|
|
$data = $result->getData();
|
|
|
|
|
|
|
|
// check if we have a token
|
|
|
|
$this->assertTrue(is_string($data['token']));
|
|
|
|
|
|
|
|
$share = $this->getShareFromId($data['id']);
|
|
|
|
|
|
|
|
$items = \OCP\Share::getItemShared('file', $share['item_source']);
|
|
|
|
|
|
|
|
$this->assertTrue(!empty($items));
|
|
|
|
|
2013-09-20 14:38:23 +04:00
|
|
|
$fileinfo = $this->view->getFileInfo($this->filename);
|
|
|
|
|
|
|
|
\OCP\Share::unshare('file', $fileinfo['fileid'], \OCP\Share::SHARE_TYPE_USER,
|
|
|
|
\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
|
|
|
|
|
|
|
|
$fileinfo = $this->view->getFileInfo($this->folder);
|
|
|
|
|
2013-09-30 14:57:55 +04:00
|
|
|
\OCP\Share::unshare('folder', $fileinfo['fileid'], \OCP\Share::SHARE_TYPE_LINK, null);
|
2013-09-20 14:38:23 +04:00
|
|
|
|
2013-09-19 16:39:51 +04:00
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @medium
|
|
|
|
* @depends testCreateShare
|
|
|
|
*/
|
|
|
|
function testGetAllShares() {
|
|
|
|
|
2013-09-20 14:38:23 +04:00
|
|
|
$fileinfo = $this->view->getFileInfo($this->filename);
|
|
|
|
|
|
|
|
\OCP\Share::shareItem('file', $fileinfo['fileid'], \OCP\Share::SHARE_TYPE_USER,
|
|
|
|
\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31);
|
|
|
|
|
2013-09-19 16:39:51 +04:00
|
|
|
$result = Share\Api::getAllShares(array());
|
|
|
|
|
|
|
|
$this->assertTrue($result->succeeded());
|
|
|
|
|
|
|
|
// test should return two shares created from testCreateShare()
|
2013-09-20 14:38:23 +04:00
|
|
|
$this->assertTrue(count($result->getData()) === 1);
|
|
|
|
|
|
|
|
\OCP\Share::unshare('file', $fileinfo['fileid'], \OCP\Share::SHARE_TYPE_USER,
|
|
|
|
\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
|
2013-09-19 16:39:51 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @medium
|
|
|
|
* @depends testCreateShare
|
|
|
|
*/
|
2013-09-27 16:01:04 +04:00
|
|
|
function testGetShareFromSource() {
|
2013-09-19 16:39:51 +04:00
|
|
|
|
|
|
|
$fileInfo = $this->view->getFileInfo($this->filename);
|
|
|
|
|
2013-09-20 14:38:23 +04:00
|
|
|
\OCP\Share::shareItem('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER,
|
|
|
|
\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31);
|
|
|
|
|
|
|
|
\OCP\Share::shareItem('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_LINK,
|
|
|
|
null, 1);
|
|
|
|
|
2013-10-11 12:28:01 +04:00
|
|
|
$params = array('itemSource' => $fileInfo['fileid'],
|
|
|
|
'itemType' => 'file');
|
2013-09-19 16:39:51 +04:00
|
|
|
|
|
|
|
$result = Share\Api::getShare($params);
|
|
|
|
|
|
|
|
$this->assertTrue($result->succeeded());
|
|
|
|
|
|
|
|
// test should return one share created from testCreateShare()
|
2013-09-20 14:38:23 +04:00
|
|
|
$this->assertTrue(count($result->getData()) === 2);
|
|
|
|
|
|
|
|
\OCP\Share::unshare('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER,
|
|
|
|
\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
|
|
|
|
|
|
|
|
\OCP\Share::unshare('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_LINK, null);
|
2013-09-19 16:39:51 +04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @medium
|
|
|
|
* @depends testCreateShare
|
2013-09-27 16:01:04 +04:00
|
|
|
*/
|
|
|
|
function testGetShareFromId() {
|
|
|
|
|
|
|
|
$fileInfo = $this->view->getFileInfo($this->filename);
|
|
|
|
|
|
|
|
$result = \OCP\Share::shareItem('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER,
|
2013-09-30 00:16:48 +04:00
|
|
|
\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31);
|
2013-09-27 16:01:04 +04:00
|
|
|
|
|
|
|
// share was successful?
|
|
|
|
$this->assertTrue($result);
|
|
|
|
|
2013-09-27 16:04:28 +04:00
|
|
|
// get item to determine share ID
|
2013-09-27 16:01:04 +04:00
|
|
|
$result = \OCP\Share::getItemShared('file', $fileInfo['fileid']);
|
|
|
|
|
2013-09-30 00:20:42 +04:00
|
|
|
$this->assertEquals(1, count($result));
|
2013-09-27 16:01:04 +04:00
|
|
|
|
|
|
|
// get first element
|
|
|
|
$share = reset($result);
|
|
|
|
|
2013-09-27 16:04:28 +04:00
|
|
|
// call getShare() with share ID
|
2013-09-27 16:01:04 +04:00
|
|
|
$params = array('id' => $share['id']);
|
|
|
|
$result = Share\Api::getShare($params);
|
|
|
|
|
|
|
|
$this->assertTrue($result->succeeded());
|
|
|
|
|
2013-09-30 00:16:48 +04:00
|
|
|
// test should return one share created from testCreateShare()
|
2013-09-30 00:20:42 +04:00
|
|
|
$this->assertEquals(1, count($result->getData()));
|
2013-09-27 16:01:04 +04:00
|
|
|
|
|
|
|
\OCP\Share::unshare('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER,
|
2013-09-30 00:16:48 +04:00
|
|
|
\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-09-30 14:38:36 +04:00
|
|
|
/**
|
|
|
|
* @medium
|
|
|
|
*/
|
|
|
|
function testGetShareFromFolder() {
|
|
|
|
|
|
|
|
$fileInfo1 = $this->view->getFileInfo($this->filename);
|
|
|
|
$fileInfo2 = $this->view->getFileInfo($this->folder.'/'.$this->filename);
|
|
|
|
|
|
|
|
$result = \OCP\Share::shareItem('file', $fileInfo1['fileid'], \OCP\Share::SHARE_TYPE_USER,
|
|
|
|
\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31);
|
|
|
|
|
|
|
|
// share was successful?
|
|
|
|
$this->assertTrue($result);
|
|
|
|
|
2013-09-30 14:57:55 +04:00
|
|
|
$result = \OCP\Share::shareItem('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_LINK,
|
2013-09-30 14:38:36 +04:00
|
|
|
null, 1);
|
|
|
|
|
|
|
|
// share was successful?
|
|
|
|
$this->assertTrue(is_string($result));
|
|
|
|
|
2013-10-04 16:32:15 +04:00
|
|
|
$_GET['path'] = $this->folder;
|
|
|
|
$_GET['subfiles'] = 'true';
|
2013-09-30 14:38:36 +04:00
|
|
|
|
|
|
|
$result = Share\Api::getAllShares(array());
|
|
|
|
|
|
|
|
$this->assertTrue($result->succeeded());
|
|
|
|
|
|
|
|
// test should return one share within $this->folder
|
|
|
|
$this->assertTrue(count($result->getData()) === 1);
|
|
|
|
|
|
|
|
\OCP\Share::unshare('file', $fileInfo1['fileid'], \OCP\Share::SHARE_TYPE_USER,
|
|
|
|
\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
|
|
|
|
|
2013-09-30 14:57:55 +04:00
|
|
|
\OCP\Share::unshare('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_LINK, null);
|
2013-09-30 14:38:36 +04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-09-30 00:16:48 +04:00
|
|
|
/**
|
|
|
|
* @medium
|
|
|
|
*/
|
|
|
|
function testGetShareFromUnknownId() {
|
|
|
|
|
|
|
|
$params = array('id' => 0);
|
|
|
|
|
|
|
|
$result = Share\Api::getShare($params);
|
|
|
|
|
|
|
|
$this->assertEquals(404, $result->getStatusCode());
|
2013-10-09 01:05:19 +04:00
|
|
|
$meta = $result->getMeta();
|
|
|
|
$this->assertEquals('share doesn\'t exist', $meta['message']);
|
2013-09-27 16:01:04 +04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @medium
|
|
|
|
* @depends testCreateShare
|
2013-09-19 16:39:51 +04:00
|
|
|
*/
|
|
|
|
function testUpdateShare() {
|
|
|
|
|
2013-09-20 14:38:23 +04:00
|
|
|
$fileInfo = $this->view->getFileInfo($this->filename);
|
|
|
|
|
2013-09-25 17:05:23 +04:00
|
|
|
$result = \OCP\Share::shareItem('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER,
|
2013-09-20 14:38:23 +04:00
|
|
|
\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31);
|
|
|
|
|
2013-09-25 17:05:23 +04:00
|
|
|
// share was successful?
|
|
|
|
$this->assertTrue($result);
|
|
|
|
|
|
|
|
$result = \OCP\Share::shareItem('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_LINK,
|
2013-09-20 14:38:23 +04:00
|
|
|
null, 1);
|
|
|
|
|
2013-09-25 17:05:23 +04:00
|
|
|
// share was successful?
|
|
|
|
$this->assertTrue(is_string($result));
|
|
|
|
|
2013-09-19 16:39:51 +04:00
|
|
|
$items = \OCP\Share::getItemShared('file', null);
|
|
|
|
|
2013-09-25 17:05:23 +04:00
|
|
|
// make sure that we found a link share and a user share
|
|
|
|
$this->assertEquals(count($items), 2);
|
|
|
|
|
2013-09-19 16:39:51 +04:00
|
|
|
$linkShare = null;
|
|
|
|
$userShare = null;
|
|
|
|
|
|
|
|
foreach ($items as $item) {
|
|
|
|
if ($item['share_type'] === \OCP\Share::SHARE_TYPE_LINK) {
|
|
|
|
$linkShare = $item;
|
|
|
|
}
|
|
|
|
if ($item['share_type'] === \OCP\Share::SHARE_TYPE_USER) {
|
|
|
|
$userShare = $item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// make sure that we found a link share and a user share
|
|
|
|
$this->assertTrue(is_array($linkShare));
|
|
|
|
$this->assertTrue(is_array($userShare));
|
|
|
|
|
|
|
|
// update permissions
|
|
|
|
|
2013-09-30 00:20:42 +04:00
|
|
|
$this->assertEquals('31', $userShare['permissions']);
|
2013-09-19 16:39:51 +04:00
|
|
|
|
|
|
|
$params = array();
|
|
|
|
$params['id'] = $userShare['id'];
|
|
|
|
$params['_put'] = array();
|
|
|
|
$params['_put']['permissions'] = 1;
|
|
|
|
|
|
|
|
$result = Share\Api::updateShare($params);
|
|
|
|
|
2013-10-09 01:05:19 +04:00
|
|
|
$meta = $result->getMeta();
|
|
|
|
$this->assertTrue($result->succeeded(), $meta['message']);
|
2013-09-19 16:39:51 +04:00
|
|
|
|
|
|
|
$items = \OCP\Share::getItemShared('file', $userShare['file_source']);
|
|
|
|
|
|
|
|
$newUserShare = null;
|
|
|
|
foreach ($items as $item) {
|
|
|
|
if ($item['share_with'] === \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2) {
|
|
|
|
$newUserShare = $item;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->assertTrue(is_array($newUserShare));
|
|
|
|
|
2013-09-30 00:20:42 +04:00
|
|
|
$this->assertEquals('1', $newUserShare['permissions']);
|
2013-09-19 16:39:51 +04:00
|
|
|
|
|
|
|
// update password for link share
|
|
|
|
|
|
|
|
$this->assertTrue(empty($linkShare['share_with']));
|
|
|
|
|
|
|
|
$params = array();
|
|
|
|
$params['id'] = $linkShare['id'];
|
|
|
|
$params['_put'] = array();
|
|
|
|
$params['_put']['password'] = 'foo';
|
|
|
|
|
|
|
|
$result = Share\Api::updateShare($params);
|
|
|
|
|
|
|
|
$this->assertTrue($result->succeeded());
|
|
|
|
|
|
|
|
$items = \OCP\Share::getItemShared('file', $linkShare['file_source']);
|
|
|
|
|
|
|
|
$newLinkShare = null;
|
|
|
|
foreach ($items as $item) {
|
|
|
|
if ($item['share_type'] === \OCP\Share::SHARE_TYPE_LINK) {
|
|
|
|
$newLinkShare = $item;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->assertTrue(is_array($newLinkShare));
|
|
|
|
$this->assertTrue(!empty($newLinkShare['share_with']));
|
|
|
|
|
2013-09-20 14:38:23 +04:00
|
|
|
\OCP\Share::unshare('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER,
|
|
|
|
\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
|
|
|
|
|
|
|
|
\OCP\Share::unshare('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_LINK, null);
|
|
|
|
|
2013-09-19 16:39:51 +04:00
|
|
|
}
|
|
|
|
|
2013-09-30 14:57:55 +04:00
|
|
|
/**
|
|
|
|
* @medium
|
|
|
|
*/
|
|
|
|
function testUpdateShareUpload() {
|
|
|
|
|
|
|
|
$fileInfo = $this->view->getFileInfo($this->folder);
|
|
|
|
|
|
|
|
$result = \OCP\Share::shareItem('folder', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_LINK,
|
|
|
|
null, 1);
|
|
|
|
|
|
|
|
// share was successful?
|
|
|
|
$this->assertTrue(is_string($result));
|
|
|
|
|
|
|
|
$items = \OCP\Share::getItemShared('file', null);
|
|
|
|
|
|
|
|
// make sure that we found a link share and a user share
|
|
|
|
$this->assertEquals(count($items), 1);
|
|
|
|
|
|
|
|
$linkShare = null;
|
|
|
|
|
|
|
|
foreach ($items as $item) {
|
|
|
|
if ($item['share_type'] === \OCP\Share::SHARE_TYPE_LINK) {
|
|
|
|
$linkShare = $item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// make sure that we found a link share
|
|
|
|
$this->assertTrue(is_array($linkShare));
|
|
|
|
|
|
|
|
// update public upload
|
|
|
|
|
|
|
|
$params = array();
|
|
|
|
$params['id'] = $linkShare['id'];
|
|
|
|
$params['_put'] = array();
|
2013-10-04 16:32:15 +04:00
|
|
|
$params['_put']['publicUpload'] = 'true';
|
2013-09-30 14:57:55 +04:00
|
|
|
|
|
|
|
$result = Share\Api::updateShare($params);
|
|
|
|
|
|
|
|
$this->assertTrue($result->succeeded());
|
|
|
|
|
|
|
|
$items = \OCP\Share::getItemShared('file', $linkShare['file_source']);
|
|
|
|
|
|
|
|
$updatedLinkShare = null;
|
|
|
|
foreach ($items as $item) {
|
|
|
|
if ($item['share_type'] === \OCP\Share::SHARE_TYPE_LINK) {
|
|
|
|
$updatedLinkShare = $item;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->assertTrue(is_array($updatedLinkShare));
|
|
|
|
$this->assertEquals(7, $updatedLinkShare['permissions']);
|
|
|
|
|
|
|
|
// cleanup
|
|
|
|
|
|
|
|
\OCP\Share::unshare('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_LINK, null);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-09-19 16:39:51 +04:00
|
|
|
/**
|
|
|
|
* @medium
|
|
|
|
* @depends testCreateShare
|
|
|
|
*/
|
|
|
|
function testDeleteShare() {
|
2013-09-30 14:23:44 +04:00
|
|
|
|
|
|
|
$fileInfo = $this->view->getFileInfo($this->filename);
|
|
|
|
|
|
|
|
\OCP\Share::shareItem('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER,
|
|
|
|
\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31);
|
|
|
|
|
|
|
|
\OCP\Share::shareItem('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_LINK,
|
|
|
|
null, 1);
|
|
|
|
|
2013-09-19 16:39:51 +04:00
|
|
|
$items = \OCP\Share::getItemShared('file', null);
|
|
|
|
|
2013-09-30 14:23:44 +04:00
|
|
|
$this->assertEquals(2, count($items));
|
|
|
|
|
2013-09-19 16:39:51 +04:00
|
|
|
foreach ($items as $item) {
|
|
|
|
$result = Share\Api::deleteShare(array('id' => $item['id']));
|
|
|
|
|
|
|
|
$this->assertTrue($result->succeeded());
|
|
|
|
}
|
|
|
|
|
|
|
|
$itemsAfterDelete = \OCP\Share::getItemShared('file', null);
|
|
|
|
|
|
|
|
$this->assertTrue(empty($itemsAfterDelete));
|
2013-09-30 14:23:44 +04:00
|
|
|
|
2013-09-19 16:39:51 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param $user
|
|
|
|
* @param bool $create
|
|
|
|
* @param bool $password
|
|
|
|
*/
|
|
|
|
private static function loginHelper($user, $create = false, $password = false) {
|
|
|
|
if ($create) {
|
|
|
|
\OC_User::createUser($user, $user);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($password === false) {
|
|
|
|
$password = $user;
|
|
|
|
}
|
|
|
|
|
|
|
|
\OC_Util::tearDownFS();
|
|
|
|
\OC_User::setUserId('');
|
|
|
|
\OC\Files\Filesystem::tearDown();
|
|
|
|
\OC_Util::setupFS($user);
|
|
|
|
\OC_User::setUserId($user);
|
|
|
|
|
|
|
|
$params['uid'] = $user;
|
|
|
|
$params['password'] = $password;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief get some information from a given share
|
|
|
|
* @param int $shareID
|
|
|
|
* @return array with: item_source, share_type, share_with, item_type, permissions
|
|
|
|
*/
|
|
|
|
private 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;
|
|
|
|
|
|
|
|
if ($result && $result->numRows() > 0) {
|
|
|
|
$share = $result->fetchRow();
|
|
|
|
}
|
|
|
|
|
|
|
|
return $share;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|