2013-09-19 16:39:51 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Björn Schießle <bjoern@schiessle.org>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
2013-09-19 16:39:51 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
2013-09-19 16:39:51 +04:00
|
|
|
*
|
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.
|
2013-09-19 16:39:51 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2013-09-19 16:39:51 +04:00
|
|
|
* 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.
|
2013-09-19 16:39:51 +04:00
|
|
|
*
|
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/>
|
2013-09-19 16:39:51 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2016-05-17 12:42:03 +03:00
|
|
|
namespace OCA\Files_Sharing\Tests;
|
2016-08-17 11:05:09 +03:00
|
|
|
|
2016-09-20 12:45:06 +03:00
|
|
|
use OC\Files\Cache\Scanner;
|
2016-10-21 21:25:07 +03:00
|
|
|
use OCA\Files_Sharing\Controller\ShareAPIController;
|
2016-07-20 15:24:22 +03:00
|
|
|
use OCP\AppFramework\OCS\OCSBadRequestException;
|
|
|
|
use OCP\AppFramework\OCS\OCSException;
|
|
|
|
use OCP\AppFramework\OCS\OCSForbiddenException;
|
|
|
|
use OCP\AppFramework\OCS\OCSNotFoundException;
|
2013-09-19 16:39:51 +04:00
|
|
|
|
|
|
|
/**
|
2016-05-17 12:42:03 +03:00
|
|
|
* Class ApiTest
|
2015-11-03 03:52:41 +03:00
|
|
|
*
|
|
|
|
* @group DB
|
2016-07-20 15:24:22 +03:00
|
|
|
* TODO: convert to real intergration tests
|
2013-09-19 16:39:51 +04:00
|
|
|
*/
|
2016-05-17 12:42:03 +03:00
|
|
|
class ApiTest extends TestCase {
|
2013-09-19 16:39:51 +04:00
|
|
|
|
2014-05-08 13:00:19 +04:00
|
|
|
const TEST_FOLDER_NAME = '/folder_share_api_test';
|
2016-07-20 15:24:22 +03:00
|
|
|
const APP_NAME = 'files_sharing';
|
2014-05-08 13:00:19 +04:00
|
|
|
|
|
|
|
private static $tempStorage;
|
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
/** @var \OCP\Files\Folder */
|
|
|
|
private $userFolder;
|
|
|
|
|
2016-08-17 11:05:09 +03:00
|
|
|
/** @var string */
|
|
|
|
private $subsubfolder;
|
|
|
|
|
2014-11-11 00:28:12 +03:00
|
|
|
protected function setUp() {
|
2013-11-05 22:30:52 +04:00
|
|
|
parent::setUp();
|
2013-09-19 16:39:51 +04:00
|
|
|
|
2014-11-06 20:31:33 +03:00
|
|
|
\OC::$server->getAppConfig()->setValue('core', 'shareapi_exclude_groups', 'no');
|
|
|
|
\OC::$server->getAppConfig()->setValue('core', 'shareapi_expire_after_n_days', '7');
|
|
|
|
|
2014-05-08 13:00:19 +04:00
|
|
|
$this->folder = self::TEST_FOLDER_NAME;
|
2014-02-25 18:28:21 +04:00
|
|
|
$this->subfolder = '/subfolder_share_api_test';
|
2014-03-11 15:58:46 +04:00
|
|
|
$this->subsubfolder = '/subsubfolder_share_api_test';
|
2013-09-19 16:39:51 +04:00
|
|
|
|
2014-03-11 15:58:46 +04:00
|
|
|
$this->filename = '/share-api-test.txt';
|
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);
|
2014-03-11 15:58:46 +04:00
|
|
|
$this->view->mkdir($this->folder . $this->subfolder);
|
|
|
|
$this->view->mkdir($this->folder . $this->subfolder . $this->subsubfolder);
|
|
|
|
$this->view->file_put_contents($this->folder.$this->filename, $this->data);
|
|
|
|
$this->view->file_put_contents($this->folder . $this->subfolder . $this->filename, $this->data);
|
2016-09-20 12:45:06 +03:00
|
|
|
$mount = $this->view->getMount($this->filename);
|
|
|
|
$mount->getStorage()->getScanner()->scan('', Scanner::SCAN_RECURSIVE);
|
2016-02-11 14:32:05 +03:00
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->userFolder = \OC::$server->getUserFolder(self::TEST_FILES_SHARING_API_USER1);
|
2013-09-19 16:39:51 +04:00
|
|
|
}
|
|
|
|
|
2014-11-11 00:28:12 +03:00
|
|
|
protected function tearDown() {
|
2014-07-11 16:27:43 +04:00
|
|
|
if($this->view instanceof \OC\Files\View) {
|
|
|
|
$this->view->unlink($this->filename);
|
|
|
|
$this->view->deleteAll($this->folder);
|
|
|
|
}
|
2013-09-19 16:39:51 +04:00
|
|
|
|
2014-05-08 13:00:19 +04:00
|
|
|
self::$tempStorage = null;
|
|
|
|
|
2013-11-05 22:30:52 +04:00
|
|
|
parent::tearDown();
|
2013-09-19 16:39:51 +04:00
|
|
|
}
|
|
|
|
|
2016-02-11 14:32:05 +03:00
|
|
|
/**
|
|
|
|
* @param string $userId The userId of the caller
|
2016-10-21 21:25:07 +03:00
|
|
|
* @return \OCA\Files_Sharing\Controller\ShareAPIController
|
2016-02-11 14:32:05 +03:00
|
|
|
*/
|
2016-08-17 11:37:11 +03:00
|
|
|
private function createOCS($userId) {
|
2016-07-15 13:22:53 +03:00
|
|
|
$l = $this->getMockBuilder('\OCP\IL10N')->getMock();
|
2016-04-15 15:05:36 +03:00
|
|
|
$l->method('t')
|
|
|
|
->will($this->returnCallback(function($text, $parameters = []) {
|
|
|
|
return vsprintf($text, $parameters);
|
|
|
|
}));
|
|
|
|
|
2016-10-21 21:25:07 +03:00
|
|
|
return new ShareAPIController(
|
2016-07-20 15:24:22 +03:00
|
|
|
self::APP_NAME,
|
2016-08-17 11:37:11 +03:00
|
|
|
$this->getMockBuilder('OCP\IRequest')->getMock(),
|
2016-02-11 14:32:05 +03:00
|
|
|
$this->shareManager,
|
|
|
|
\OC::$server->getGroupManager(),
|
|
|
|
\OC::$server->getUserManager(),
|
|
|
|
\OC::$server->getRootFolder(),
|
|
|
|
\OC::$server->getURLGenerator(),
|
2016-10-21 21:25:07 +03:00
|
|
|
$userId,
|
2016-04-15 15:05:36 +03:00
|
|
|
$l
|
2016-02-11 14:32:05 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2015-08-28 18:44:40 +03:00
|
|
|
function testCreateShareUserFile() {
|
2016-09-20 12:45:06 +03:00
|
|
|
$this->setUp(); // for some reasons phpunit refuses to do this for us only for this test
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-08-16 23:45:49 +03:00
|
|
|
$result = $ocs->createShare($this->filename, \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_USER, self::TEST_FILES_SHARING_API_USER2);
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2015-08-28 18:44:40 +03:00
|
|
|
|
2016-08-09 11:04:29 +03:00
|
|
|
$data = $result->getData();
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->assertEquals(19, $data['permissions']);
|
2015-08-28 18:44:40 +03:00
|
|
|
$this->assertEmpty($data['expiration']);
|
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->shareManager->getShareById('ocinternal:'.$data['id']);
|
2013-09-19 16:39:51 +04:00
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->deleteShare($data['id']);
|
|
|
|
|
|
|
|
$ocs->cleanup();
|
2015-08-28 18:44:40 +03:00
|
|
|
}
|
2013-09-19 16:39:51 +04:00
|
|
|
|
2015-08-28 18:44:40 +03:00
|
|
|
function testCreateShareUserFolder() {
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-08-16 23:45:49 +03:00
|
|
|
$result = $ocs->createShare($this->folder, \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_USER, self::TEST_FILES_SHARING_API_USER2);
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2013-09-19 16:39:51 +04:00
|
|
|
|
2016-08-09 11:04:29 +03:00
|
|
|
$data = $result->getData();
|
2015-08-28 18:44:40 +03:00
|
|
|
$this->assertEquals(31, $data['permissions']);
|
|
|
|
$this->assertEmpty($data['expiration']);
|
2013-09-19 16:39:51 +04:00
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->shareManager->getShareById('ocinternal:'.$data['id']);
|
2015-08-28 18:44:40 +03:00
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->deleteShare($data['id']);
|
|
|
|
$ocs->cleanup();
|
|
|
|
|
2015-08-28 18:44:40 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function testCreateShareGroupFile() {
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-08-16 23:45:49 +03:00
|
|
|
$result = $ocs->createShare($this->filename, \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_GROUP, self::TEST_FILES_SHARING_API_GROUP1);
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2013-09-19 16:39:51 +04:00
|
|
|
|
2016-08-09 11:04:29 +03:00
|
|
|
$data = $result->getData();
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->assertEquals(19, $data['permissions']);
|
2015-08-28 18:44:40 +03:00
|
|
|
$this->assertEmpty($data['expiration']);
|
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->shareManager->getShareById('ocinternal:'.$data['id']);
|
2015-08-28 18:44:40 +03:00
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->deleteShare($data['id']);
|
|
|
|
$ocs->cleanup();
|
2015-08-28 18:44:40 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
function testCreateShareGroupFolder() {
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-08-16 23:45:49 +03:00
|
|
|
$result = $ocs->createShare($this->folder, \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_GROUP, self::TEST_FILES_SHARING_API_GROUP1);
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2015-08-28 18:44:40 +03:00
|
|
|
|
2016-08-09 11:04:29 +03:00
|
|
|
$data = $result->getData();
|
2015-08-28 18:44:40 +03:00
|
|
|
$this->assertEquals(31, $data['permissions']);
|
|
|
|
$this->assertEmpty($data['expiration']);
|
2013-09-19 16:39:51 +04:00
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->shareManager->getShareById('ocinternal:'.$data['id']);
|
2013-09-19 16:39:51 +04:00
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->deleteShare($data['id']);
|
|
|
|
$ocs->cleanup();
|
|
|
|
|
2015-08-28 18:44:40 +03:00
|
|
|
}
|
2013-09-19 16:39:51 +04:00
|
|
|
|
2015-08-28 18:44:40 +03:00
|
|
|
public function testCreateShareLink() {
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-08-16 23:45:49 +03:00
|
|
|
$result = $ocs->createShare($this->folder, \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_LINK);
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2013-09-19 16:39:51 +04:00
|
|
|
|
2016-08-09 11:04:29 +03:00
|
|
|
$data = $result->getData();
|
2015-08-28 18:44:40 +03:00
|
|
|
$this->assertEquals(1, $data['permissions']);
|
|
|
|
$this->assertEmpty($data['expiration']);
|
2013-09-19 16:39:51 +04:00
|
|
|
$this->assertTrue(is_string($data['token']));
|
|
|
|
|
2015-03-20 15:38:08 +03:00
|
|
|
// check for correct link
|
|
|
|
$url = \OC::$server->getURLGenerator()->getAbsoluteURL('/index.php/s/' . $data['token']);
|
|
|
|
$this->assertEquals($url, $data['url']);
|
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->shareManager->getShareById('ocinternal:'.$data['id']);
|
2015-03-20 15:38:08 +03:00
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->deleteShare($data['id']);
|
|
|
|
$ocs->cleanup();
|
2015-08-28 18:44:40 +03:00
|
|
|
}
|
2013-09-20 14:38:23 +04:00
|
|
|
|
2015-08-28 18:44:40 +03:00
|
|
|
public function testCreateShareLinkPublicUpload() {
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-08-16 23:45:49 +03:00
|
|
|
$result = $ocs->createShare($this->folder, \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_LINK, null, 'true');
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2015-08-28 18:44:40 +03:00
|
|
|
|
2016-08-09 11:04:29 +03:00
|
|
|
$data = $result->getData();
|
2016-06-23 16:43:21 +03:00
|
|
|
$this->assertEquals(
|
|
|
|
\OCP\Constants::PERMISSION_READ |
|
|
|
|
\OCP\Constants::PERMISSION_CREATE |
|
|
|
|
\OCP\Constants::PERMISSION_UPDATE |
|
|
|
|
\OCP\Constants::PERMISSION_DELETE,
|
|
|
|
$data['permissions']
|
|
|
|
);
|
2015-08-28 18:44:40 +03:00
|
|
|
$this->assertEmpty($data['expiration']);
|
|
|
|
$this->assertTrue(is_string($data['token']));
|
2013-09-20 14:38:23 +04:00
|
|
|
|
2015-08-28 18:44:40 +03:00
|
|
|
// check for correct link
|
|
|
|
$url = \OC::$server->getURLGenerator()->getAbsoluteURL('/index.php/s/' . $data['token']);
|
|
|
|
$this->assertEquals($url, $data['url']);
|
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->shareManager->getShareById('ocinternal:'.$data['id']);
|
2015-08-28 18:44:40 +03:00
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->deleteShare($data['id']);
|
|
|
|
$ocs->cleanup();
|
2015-02-27 15:15:56 +03:00
|
|
|
}
|
|
|
|
|
2014-05-12 14:19:07 +04:00
|
|
|
function testEnfoceLinkPassword() {
|
|
|
|
|
2016-10-27 13:27:09 +03:00
|
|
|
$password = md5(time());
|
2014-05-12 14:19:07 +04:00
|
|
|
$appConfig = \OC::$server->getAppConfig();
|
|
|
|
$appConfig->setValue('core', 'shareapi_enforce_links_password', 'yes');
|
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-07-20 15:24:22 +03:00
|
|
|
try {
|
2016-08-16 23:45:49 +03:00
|
|
|
$ocs->createShare($this->folder, \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_LINK);
|
2016-07-20 15:24:22 +03:00
|
|
|
$this->fail();
|
|
|
|
} catch (OCSForbiddenException $e) {
|
|
|
|
|
|
|
|
}
|
|
|
|
$ocs->cleanup();
|
2014-05-12 14:19:07 +04:00
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-07-20 15:24:22 +03:00
|
|
|
try {
|
2016-08-16 23:45:49 +03:00
|
|
|
$ocs->createShare($this->folder, \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_LINK, null, 'false', '');
|
2016-07-20 15:24:22 +03:00
|
|
|
$this->fail();
|
|
|
|
} catch (OCSForbiddenException $e) {
|
|
|
|
|
|
|
|
}
|
|
|
|
$ocs->cleanup();
|
2014-05-12 14:19:07 +04:00
|
|
|
|
|
|
|
// share with password should succeed
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-10-27 13:27:09 +03:00
|
|
|
$result = $ocs->createShare($this->folder, \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_LINK, null, 'false', $password);
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2014-05-12 14:19:07 +04:00
|
|
|
|
2016-08-09 11:04:29 +03:00
|
|
|
$data = $result->getData();
|
2014-05-12 14:19:07 +04:00
|
|
|
|
|
|
|
// setting new password should succeed
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-10-27 13:27:09 +03:00
|
|
|
$ocs->updateShare($data['id'], null, $password);
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2014-05-12 14:19:07 +04:00
|
|
|
|
|
|
|
// removing password should fail
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-07-20 15:24:22 +03:00
|
|
|
try {
|
|
|
|
$ocs->updateShare($data['id']);
|
|
|
|
$this->fail();
|
|
|
|
} catch (OCSBadRequestException $e) {
|
|
|
|
|
|
|
|
}
|
|
|
|
$ocs->cleanup();
|
2014-05-12 14:19:07 +04:00
|
|
|
|
|
|
|
// cleanup
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->deleteShare($data['id']);
|
|
|
|
$ocs->cleanup();
|
2016-02-09 16:38:53 +03:00
|
|
|
|
2014-05-12 14:19:07 +04:00
|
|
|
$appConfig->setValue('core', 'shareapi_enforce_links_password', 'no');
|
2013-09-19 16:39:51 +04:00
|
|
|
}
|
|
|
|
|
2014-05-13 17:22:18 +04:00
|
|
|
/**
|
|
|
|
* @medium
|
|
|
|
*/
|
|
|
|
function testSharePermissions() {
|
|
|
|
// sharing file to a user should work if shareapi_exclude_groups is set
|
|
|
|
// to no
|
2014-10-17 14:08:31 +04:00
|
|
|
\OC::$server->getAppConfig()->setValue('core', 'shareapi_exclude_groups', 'no');
|
2014-05-13 17:22:18 +04:00
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-08-16 23:45:49 +03:00
|
|
|
$result = $ocs->createShare($this->filename, \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_USER, self::TEST_FILES_SHARING_API_USER2);
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2014-05-13 17:22:18 +04:00
|
|
|
|
2016-08-09 11:04:29 +03:00
|
|
|
$data = $result->getData();
|
2014-05-13 17:22:18 +04:00
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->shareManager->getShareById('ocinternal:'.$data['id']);
|
2014-05-13 17:22:18 +04:00
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-08-16 23:45:49 +03:00
|
|
|
$ocs->deleteShare($data['id']);
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2014-05-13 17:22:18 +04:00
|
|
|
|
|
|
|
// exclude groups, but not the group the user belongs to. Sharing should still work
|
2014-10-17 14:08:31 +04:00
|
|
|
\OC::$server->getAppConfig()->setValue('core', 'shareapi_exclude_groups', 'yes');
|
|
|
|
\OC::$server->getAppConfig()->setValue('core', 'shareapi_exclude_groups_list', 'admin,group1,group2');
|
2014-05-13 17:22:18 +04:00
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-08-16 23:45:49 +03:00
|
|
|
$result = $ocs->createShare($this->filename, \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_USER, self::TEST_FILES_SHARING_API_USER2);
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2014-05-13 17:22:18 +04:00
|
|
|
|
2016-08-09 11:04:29 +03:00
|
|
|
$data = $result->getData();
|
2014-05-13 17:22:18 +04:00
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->shareManager->getShareById('ocinternal:' . $data['id']);
|
2014-05-13 17:22:18 +04:00
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-08-17 11:05:09 +03:00
|
|
|
$ocs->deleteShare($data['id']);
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2014-05-13 17:22:18 +04:00
|
|
|
|
|
|
|
// now we exclude the group the user belongs to ('group'), sharing should fail now
|
2014-10-17 14:08:31 +04:00
|
|
|
\OC::$server->getAppConfig()->setValue('core', 'shareapi_exclude_groups_list', 'admin,group');
|
2014-05-13 17:22:18 +04:00
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-08-16 23:45:49 +03:00
|
|
|
$ocs->createShare($this->filename, \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_USER, self::TEST_FILES_SHARING_API_USER2);
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2014-05-13 17:22:18 +04:00
|
|
|
|
|
|
|
// cleanup
|
2014-10-17 14:08:31 +04:00
|
|
|
\OC::$server->getAppConfig()->setValue('core', 'shareapi_exclude_groups', 'no');
|
|
|
|
\OC::$server->getAppConfig()->setValue('core', 'shareapi_exclude_groups_list', '');
|
2014-05-13 17:22:18 +04:00
|
|
|
}
|
|
|
|
|
2014-05-12 14:19:07 +04:00
|
|
|
|
2013-09-19 16:39:51 +04:00
|
|
|
/**
|
|
|
|
* @medium
|
|
|
|
*/
|
|
|
|
function testGetAllShares() {
|
2016-02-09 16:38:53 +03:00
|
|
|
$node = $this->userFolder->get($this->filename);
|
2013-09-19 16:39:51 +04:00
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$share = $this->shareManager->newShare();
|
|
|
|
$share->setNode($node)
|
|
|
|
->setSharedBy(self::TEST_FILES_SHARING_API_USER1)
|
|
|
|
->setSharedWith(self::TEST_FILES_SHARING_API_USER2)
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_USER)
|
|
|
|
->setPermissions(19);
|
2013-09-20 14:38:23 +04:00
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$share = $this->shareManager->createShare($share);
|
2013-09-20 14:38:23 +04:00
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-02-09 16:38:53 +03:00
|
|
|
$result = $ocs->getShares();
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2013-09-19 16:39:51 +04:00
|
|
|
|
2016-08-09 11:04:29 +03:00
|
|
|
$this->assertTrue(count($result->getData()) === 1);
|
2013-09-20 14:38:23 +04:00
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->shareManager->deleteShare($share);
|
2013-09-19 16:39:51 +04:00
|
|
|
}
|
|
|
|
|
2015-08-11 16:16:35 +03:00
|
|
|
function testGetAllSharesWithMe() {
|
2016-02-09 16:38:53 +03:00
|
|
|
$node1 = $this->userFolder->get($this->filename);
|
|
|
|
$share1 = $this->shareManager->newShare();
|
|
|
|
$share1->setNode($node1)
|
|
|
|
->setSharedBy(self::TEST_FILES_SHARING_API_USER1)
|
|
|
|
->setSharedWith(self::TEST_FILES_SHARING_API_USER2)
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_USER)
|
|
|
|
->setPermissions(19);
|
|
|
|
$share1 = $this->shareManager->createShare($share1);
|
|
|
|
|
|
|
|
$node2 = $this->userFolder->get($this->folder);
|
|
|
|
$share2 = $this->shareManager->newShare();
|
|
|
|
$share2->setNode($node2)
|
|
|
|
->setSharedBy(self::TEST_FILES_SHARING_API_USER1)
|
|
|
|
->setSharedWith(self::TEST_FILES_SHARING_API_USER2)
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_USER)
|
|
|
|
->setPermissions(31);
|
|
|
|
$share2 = $this->shareManager->createShare($share2);
|
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER2);
|
2016-08-17 11:05:09 +03:00
|
|
|
$result = $ocs->getShares('true');
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2015-08-11 16:16:35 +03:00
|
|
|
|
2016-08-17 11:05:09 +03:00
|
|
|
$this->assertCount(2, $result->getData());
|
2015-08-11 16:16:35 +03:00
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->shareManager->deleteShare($share1);
|
|
|
|
$this->shareManager->deleteShare($share2);
|
2015-08-11 16:16:35 +03:00
|
|
|
}
|
|
|
|
|
2015-05-22 15:42:57 +03:00
|
|
|
/**
|
|
|
|
* @medium
|
|
|
|
*/
|
|
|
|
function testPublicLinkUrl() {
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-08-16 23:45:49 +03:00
|
|
|
$result = $ocs->createShare($this->folder, \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_LINK);
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2016-02-09 16:38:53 +03:00
|
|
|
|
2016-08-09 11:04:29 +03:00
|
|
|
$data = $result->getData();
|
2015-05-22 15:42:57 +03:00
|
|
|
|
|
|
|
// check if we have a token
|
|
|
|
$this->assertTrue(is_string($data['token']));
|
|
|
|
$id = $data['id'];
|
|
|
|
|
|
|
|
// check for correct link
|
|
|
|
$url = \OC::$server->getURLGenerator()->getAbsoluteURL('/index.php/s/' . $data['token']);
|
|
|
|
$this->assertEquals($url, $data['url']);
|
|
|
|
|
|
|
|
// check for link in getall shares
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-02-09 16:38:53 +03:00
|
|
|
$result = $ocs->getShares();
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2016-02-09 16:38:53 +03:00
|
|
|
|
2016-08-09 11:04:29 +03:00
|
|
|
$data = $result->getData();
|
2015-05-22 15:42:57 +03:00
|
|
|
$this->assertEquals($url, current($data)['url']);
|
|
|
|
|
|
|
|
// check for path
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-02-09 16:38:53 +03:00
|
|
|
$result = $ocs->getShares();
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2016-02-09 16:38:53 +03:00
|
|
|
|
2016-08-09 11:04:29 +03:00
|
|
|
$data = $result->getData();
|
2015-05-22 15:42:57 +03:00
|
|
|
$this->assertEquals($url, current($data)['url']);
|
|
|
|
|
|
|
|
// check in share id
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-02-09 16:38:53 +03:00
|
|
|
$result = $ocs->getShare($id);
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2016-02-09 16:38:53 +03:00
|
|
|
|
2016-08-09 11:04:29 +03:00
|
|
|
$data = $result->getData();
|
2015-05-22 15:42:57 +03:00
|
|
|
$this->assertEquals($url, current($data)['url']);
|
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->deleteShare($id);
|
|
|
|
$ocs->cleanup();
|
2015-05-22 15:42:57 +03:00
|
|
|
}
|
|
|
|
|
2013-09-19 16:39:51 +04:00
|
|
|
/**
|
|
|
|
* @medium
|
2015-08-28 18:44:40 +03:00
|
|
|
* @depends testCreateShareUserFile
|
|
|
|
* @depends testCreateShareLink
|
2013-09-19 16:39:51 +04:00
|
|
|
*/
|
2013-09-27 16:01:04 +04:00
|
|
|
function testGetShareFromSource() {
|
2016-02-09 16:38:53 +03:00
|
|
|
$node = $this->userFolder->get($this->filename);
|
|
|
|
$share = $this->shareManager->newShare();
|
|
|
|
$share->setNode($node)
|
|
|
|
->setSharedBy(self::TEST_FILES_SHARING_API_USER1)
|
|
|
|
->setSharedWith(self::TEST_FILES_SHARING_API_USER2)
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_USER)
|
|
|
|
->setPermissions(19);
|
|
|
|
$share1 = $this->shareManager->createShare($share);
|
|
|
|
|
|
|
|
$share = $this->shareManager->newShare();
|
|
|
|
$share->setNode($node)
|
|
|
|
->setSharedBy(self::TEST_FILES_SHARING_API_USER1)
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_LINK)
|
|
|
|
->setPermissions(1);
|
|
|
|
$share2 = $this->shareManager->createShare($share);
|
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-02-09 16:38:53 +03:00
|
|
|
$result = $ocs->getShares();
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2013-09-19 16:39:51 +04:00
|
|
|
|
2014-05-16 00:47:28 +04:00
|
|
|
// test should return one share created from testCreateShare()
|
2016-08-09 11:04:29 +03:00
|
|
|
$this->assertTrue(count($result->getData()) === 2);
|
2013-09-20 14:38:23 +04:00
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->shareManager->deleteShare($share1);
|
|
|
|
$this->shareManager->deleteShare($share2);
|
2013-09-19 16:39:51 +04:00
|
|
|
}
|
|
|
|
|
2013-10-17 14:23:37 +04:00
|
|
|
/**
|
|
|
|
* @medium
|
2015-08-28 18:44:40 +03:00
|
|
|
* @depends testCreateShareUserFile
|
|
|
|
* @depends testCreateShareLink
|
2013-10-17 14:23:37 +04:00
|
|
|
*/
|
|
|
|
function testGetShareFromSourceWithReshares() {
|
2016-02-09 16:38:53 +03:00
|
|
|
$node = $this->userFolder->get($this->filename);
|
|
|
|
$share1 = $this->shareManager->newShare();
|
|
|
|
$share1->setNode($node)
|
|
|
|
->setSharedBy(self::TEST_FILES_SHARING_API_USER1)
|
|
|
|
->setSharedWith(self::TEST_FILES_SHARING_API_USER2)
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_USER)
|
|
|
|
->setPermissions(19);
|
|
|
|
$share1 = $this->shareManager->createShare($share1);
|
|
|
|
|
|
|
|
$share2 = $this->shareManager->newShare();
|
|
|
|
$share2->setNode($node)
|
|
|
|
->setSharedBy(self::TEST_FILES_SHARING_API_USER2)
|
|
|
|
->setSharedWith(self::TEST_FILES_SHARING_API_USER3)
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_USER)
|
|
|
|
->setPermissions(19);
|
|
|
|
$share2 = $this->shareManager->createShare($share2);
|
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-02-09 16:38:53 +03:00
|
|
|
$result = $ocs->getShares();
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2013-10-17 14:23:37 +04:00
|
|
|
|
|
|
|
// test should return one share
|
2016-08-09 11:04:29 +03:00
|
|
|
$this->assertTrue(count($result->getData()) === 1);
|
2013-10-17 14:23:37 +04:00
|
|
|
|
|
|
|
// now also ask for the reshares
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-08-17 11:05:09 +03:00
|
|
|
$result = $ocs->getShares('false', 'true', 'false', $this->filename);
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2013-10-17 14:23:37 +04:00
|
|
|
|
|
|
|
// now we should get two shares, the initial share and the reshare
|
2016-08-09 11:04:29 +03:00
|
|
|
$this->assertCount(2, $result->getData());
|
2013-10-17 14:23:37 +04:00
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->shareManager->deleteShare($share1);
|
|
|
|
$this->shareManager->deleteShare($share2);
|
2013-10-17 14:23:37 +04:00
|
|
|
}
|
|
|
|
|
2013-09-19 16:39:51 +04:00
|
|
|
/**
|
|
|
|
* @medium
|
2015-08-28 18:44:40 +03:00
|
|
|
* @depends testCreateShareUserFile
|
2013-09-27 16:01:04 +04:00
|
|
|
*/
|
|
|
|
function testGetShareFromId() {
|
2016-02-09 16:38:53 +03:00
|
|
|
$node = $this->userFolder->get($this->filename);
|
|
|
|
$share1 = $this->shareManager->newShare();
|
|
|
|
$share1->setNode($node)
|
|
|
|
->setSharedBy(self::TEST_FILES_SHARING_API_USER1)
|
|
|
|
->setSharedWith(self::TEST_FILES_SHARING_API_USER2)
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_USER)
|
|
|
|
->setPermissions(19);
|
|
|
|
$share1 = $this->shareManager->createShare($share1);
|
2013-09-27 16:01:04 +04:00
|
|
|
|
2013-09-27 16:04:28 +04:00
|
|
|
// call getShare() with share ID
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-02-09 16:38:53 +03:00
|
|
|
$result = $ocs->getShare($share1->getId());
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2013-09-27 16:01:04 +04:00
|
|
|
|
2013-09-30 00:16:48 +04:00
|
|
|
// test should return one share created from testCreateShare()
|
2016-08-09 11:04:29 +03:00
|
|
|
$this->assertEquals(1, count($result->getData()));
|
2013-09-27 16:01:04 +04:00
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->shareManager->deleteShare($share1);
|
2013-09-30 00:16:48 +04:00
|
|
|
}
|
|
|
|
|
2013-09-30 14:38:36 +04:00
|
|
|
/**
|
|
|
|
* @medium
|
|
|
|
*/
|
|
|
|
function testGetShareFromFolder() {
|
2016-02-09 16:38:53 +03:00
|
|
|
$node1 = $this->userFolder->get($this->filename);
|
|
|
|
$share1 = $this->shareManager->newShare();
|
|
|
|
$share1->setNode($node1)
|
|
|
|
->setSharedBy(self::TEST_FILES_SHARING_API_USER1)
|
|
|
|
->setSharedWith(self::TEST_FILES_SHARING_API_USER2)
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_USER)
|
|
|
|
->setPermissions(19);
|
|
|
|
$share1 = $this->shareManager->createShare($share1);
|
|
|
|
|
|
|
|
$node2 = $this->userFolder->get($this->folder.'/'.$this->filename);
|
|
|
|
$share2 = $this->shareManager->newShare();
|
|
|
|
$share2->setNode($node2)
|
|
|
|
->setSharedBy(self::TEST_FILES_SHARING_API_USER1)
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_LINK)
|
|
|
|
->setPermissions(1);
|
|
|
|
$share2 = $this->shareManager->createShare($share2);
|
|
|
|
|
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-08-17 11:05:09 +03:00
|
|
|
$result = $ocs->getShares('false', 'false', 'true', $this->folder);
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2013-09-30 14:38:36 +04:00
|
|
|
|
2014-05-16 00:47:28 +04:00
|
|
|
// test should return one share within $this->folder
|
2016-08-09 11:04:29 +03:00
|
|
|
$this->assertTrue(count($result->getData()) === 1);
|
2013-09-30 14:38:36 +04:00
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->shareManager->deleteShare($share1);
|
|
|
|
$this->shareManager->deleteShare($share2);
|
2015-08-11 16:16:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
function testGetShareFromFolderWithFile() {
|
2016-02-09 16:38:53 +03:00
|
|
|
$node1 = $this->userFolder->get($this->filename);
|
|
|
|
$share1 = $this->shareManager->newShare();
|
|
|
|
$share1->setNode($node1)
|
|
|
|
->setSharedBy(self::TEST_FILES_SHARING_API_USER1)
|
|
|
|
->setSharedWith(self::TEST_FILES_SHARING_API_USER2)
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_USER)
|
|
|
|
->setPermissions(19);
|
|
|
|
$share1 = $this->shareManager->createShare($share1);
|
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-07-20 15:24:22 +03:00
|
|
|
try {
|
2016-08-17 11:05:09 +03:00
|
|
|
$ocs->getShares('false', 'false', 'true', $this->filename);
|
2016-07-20 15:24:22 +03:00
|
|
|
$this->fail();
|
|
|
|
} catch (OCSBadRequestException $e) {
|
|
|
|
$this->assertEquals('Not a directory', $e->getMessage());
|
|
|
|
}
|
|
|
|
$ocs->cleanup();
|
2015-08-11 16:16:35 +03:00
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->shareManager->deleteShare($share1);
|
2013-09-30 14:38:36 +04:00
|
|
|
}
|
|
|
|
|
2014-02-25 18:28:21 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* share a folder, than reshare a file within the shared folder and check if we construct the correct path
|
2014-02-25 18:28:21 +04:00
|
|
|
* @medium
|
|
|
|
*/
|
|
|
|
function testGetShareFromFolderReshares() {
|
2016-02-09 16:38:53 +03:00
|
|
|
$node1 = $this->userFolder->get($this->folder);
|
|
|
|
$share1 = $this->shareManager->newShare();
|
|
|
|
$share1->setNode($node1)
|
|
|
|
->setSharedBy(self::TEST_FILES_SHARING_API_USER1)
|
|
|
|
->setSharedWith(self::TEST_FILES_SHARING_API_USER2)
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_USER)
|
|
|
|
->setPermissions(31);
|
|
|
|
$share1 = $this->shareManager->createShare($share1);
|
|
|
|
|
|
|
|
$node2 = $this->userFolder->get($this->folder.'/'.$this->filename);
|
|
|
|
$share2 = $this->shareManager->newShare();
|
|
|
|
$share2->setNode($node2)
|
|
|
|
->setSharedBy(self::TEST_FILES_SHARING_API_USER2)
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_LINK)
|
|
|
|
->setPermissions(1);
|
|
|
|
$share2 = $this->shareManager->createShare($share2);
|
|
|
|
|
|
|
|
$node3 = $this->userFolder->get($this->folder.'/'.$this->subfolder.'/'.$this->filename);
|
|
|
|
$share3 = $this->shareManager->newShare();
|
|
|
|
$share3->setNode($node3)
|
|
|
|
->setSharedBy(self::TEST_FILES_SHARING_API_USER2)
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_LINK)
|
|
|
|
->setPermissions(1);
|
|
|
|
$share3 = $this->shareManager->createShare($share3);
|
2014-02-25 18:28:21 +04:00
|
|
|
|
|
|
|
$testValues=array(
|
2014-04-08 21:57:07 +04:00
|
|
|
array('query' => $this->folder,
|
|
|
|
'expectedResult' => $this->folder . $this->filename),
|
|
|
|
array('query' => $this->folder . $this->subfolder,
|
|
|
|
'expectedResult' => $this->folder . $this->subfolder . $this->filename),
|
2014-02-25 18:28:21 +04:00
|
|
|
);
|
|
|
|
foreach ($testValues as $value) {
|
|
|
|
|
2016-09-20 18:59:24 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER2);
|
2016-08-17 11:05:09 +03:00
|
|
|
$result = $ocs->getShares('false', 'false', 'true', $value['query']);
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2014-02-25 18:28:21 +04:00
|
|
|
|
|
|
|
// test should return one share within $this->folder
|
2016-08-09 11:04:29 +03:00
|
|
|
$data = $result->getData();
|
2014-02-25 18:28:21 +04:00
|
|
|
|
|
|
|
$this->assertEquals($value['expectedResult'], $data[0]['path']);
|
|
|
|
}
|
|
|
|
|
|
|
|
// cleanup
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->shareManager->deleteShare($share1);
|
|
|
|
$this->shareManager->deleteShare($share2);
|
|
|
|
$this->shareManager->deleteShare($share3);
|
2014-02-25 18:28:21 +04:00
|
|
|
}
|
|
|
|
|
2014-03-11 15:58:46 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* reshare a sub folder and check if we get the correct path
|
2014-03-11 15:58:46 +04:00
|
|
|
* @medium
|
|
|
|
*/
|
|
|
|
function testGetShareFromSubFolderReShares() {
|
2016-02-09 16:38:53 +03:00
|
|
|
$node1 = $this->userFolder->get($this->folder . $this->subfolder);
|
|
|
|
$share1 = $this->shareManager->newShare();
|
|
|
|
$share1->setNode($node1)
|
|
|
|
->setSharedBy(self::TEST_FILES_SHARING_API_USER1)
|
|
|
|
->setSharedWith(self::TEST_FILES_SHARING_API_USER2)
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_USER)
|
|
|
|
->setPermissions(31);
|
|
|
|
$share1 = $this->shareManager->createShare($share1);
|
|
|
|
|
|
|
|
$node2 = \OC::$server->getRootFolder()->getUserFolder(self::TEST_FILES_SHARING_API_USER2)->get($this->subfolder);
|
|
|
|
$share2 = $this->shareManager->newShare();
|
|
|
|
$share2->setNode($node2)
|
|
|
|
->setSharedBy(self::TEST_FILES_SHARING_API_USER2)
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_LINK)
|
|
|
|
->setPermissions(1);
|
|
|
|
$share2 = $this->shareManager->createShare($share2);
|
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER2);
|
2016-02-09 16:38:53 +03:00
|
|
|
$result = $ocs->getShares();
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2014-03-11 15:58:46 +04:00
|
|
|
|
|
|
|
// test should return one share within $this->folder
|
2016-08-09 11:04:29 +03:00
|
|
|
$data = $result->getData();
|
2014-03-11 15:58:46 +04:00
|
|
|
|
|
|
|
// we should get exactly one result
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->assertCount(1, $data);
|
2014-03-11 15:58:46 +04:00
|
|
|
|
2016-06-07 15:17:22 +03:00
|
|
|
$this->assertEquals($this->subfolder, $data[0]['path']);
|
2014-03-11 15:58:46 +04:00
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->shareManager->deleteShare($share2);
|
|
|
|
$this->shareManager->deleteShare($share1);
|
2014-03-11 15:58:46 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* test re-re-share of folder if the path gets constructed correctly
|
2014-03-11 15:58:46 +04:00
|
|
|
* @medium
|
|
|
|
*/
|
2016-07-20 15:24:22 +03:00
|
|
|
function XtestGetShareFromFolderReReShares() {
|
2016-02-09 16:38:53 +03:00
|
|
|
$node1 = $this->userFolder->get($this->folder . $this->subfolder);
|
|
|
|
$share1 = $this->shareManager->newShare();
|
|
|
|
$share1->setNode($node1)
|
|
|
|
->setSharedBy(self::TEST_FILES_SHARING_API_USER1)
|
|
|
|
->setSharedWith(self::TEST_FILES_SHARING_API_USER2)
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_USER)
|
|
|
|
->setPermissions(31);
|
|
|
|
$share1 = $this->shareManager->createShare($share1);
|
|
|
|
|
|
|
|
$node2 = $this->userFolder->get($this->folder . $this->subfolder . $this->subsubfolder);
|
|
|
|
$share2 = $this->shareManager->newShare();
|
|
|
|
$share2->setNode($node2)
|
|
|
|
->setSharedBy(self::TEST_FILES_SHARING_API_USER2)
|
|
|
|
->setSharedWith(self::TEST_FILES_SHARING_API_USER3)
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_USER)
|
|
|
|
->setPermissions(31);
|
|
|
|
$share2 = $this->shareManager->createShare($share2);
|
|
|
|
|
|
|
|
$share3 = $this->shareManager->newShare();
|
|
|
|
$share3->setNode($node2)
|
|
|
|
->setSharedBy(self::TEST_FILES_SHARING_API_USER3)
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_LINK)
|
|
|
|
->setPermissions(1);
|
|
|
|
$share3 = $this->shareManager->createShare($share3);
|
|
|
|
|
2016-06-07 15:21:48 +03:00
|
|
|
/*
|
|
|
|
* Test as recipient
|
|
|
|
*/
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER3);
|
2016-02-09 16:38:53 +03:00
|
|
|
$result = $ocs->getShares();
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2014-03-11 15:58:46 +04:00
|
|
|
|
|
|
|
// test should return one share within $this->folder
|
2016-08-09 11:04:29 +03:00
|
|
|
$data = $result->getData();
|
2014-03-11 15:58:46 +04:00
|
|
|
|
|
|
|
// we should get exactly one result
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->assertCount(1, $data);
|
2016-06-07 15:17:22 +03:00
|
|
|
$this->assertEquals($this->subsubfolder, $data[0]['path']);
|
2014-03-11 15:58:46 +04:00
|
|
|
|
2016-06-07 15:21:48 +03:00
|
|
|
/*
|
|
|
|
* Test for first owner/initiator
|
|
|
|
*/
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-06-07 15:21:48 +03:00
|
|
|
$result = $ocs->getShares();
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2016-06-07 15:21:48 +03:00
|
|
|
|
|
|
|
// test should return one share within $this->folder
|
2016-08-09 11:04:29 +03:00
|
|
|
$data = $result->getData();
|
2016-06-07 15:21:48 +03:00
|
|
|
|
|
|
|
// we should get exactly one result
|
|
|
|
$this->assertCount(1, $data);
|
|
|
|
$this->assertEquals($this->folder . $this->subfolder, $data[0]['path']);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Test for second initiator
|
|
|
|
*/
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER2);
|
2016-06-07 15:21:48 +03:00
|
|
|
$result = $ocs->getShares();
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2016-06-07 15:21:48 +03:00
|
|
|
|
|
|
|
// test should return one share within $this->folder
|
2016-08-09 11:04:29 +03:00
|
|
|
$data = $result->getData();
|
2016-06-07 15:21:48 +03:00
|
|
|
|
|
|
|
// we should get exactly one result
|
|
|
|
$this->assertCount(1, $data);
|
|
|
|
$this->assertEquals($this->subfolder . $this->subsubfolder, $data[0]['path']);
|
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->shareManager->deleteShare($share1);
|
|
|
|
$this->shareManager->deleteShare($share2);
|
|
|
|
$this->shareManager->deleteShare($share3);
|
2014-03-11 15:58:46 +04:00
|
|
|
}
|
|
|
|
|
2014-03-12 14:00:30 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* test multiple shared folder if the path gets constructed correctly
|
2014-03-12 14:00:30 +04:00
|
|
|
* @medium
|
|
|
|
*/
|
|
|
|
function testGetShareMultipleSharedFolder() {
|
2016-09-20 18:59:24 +03:00
|
|
|
$this->setUp();
|
2016-02-09 16:38:53 +03:00
|
|
|
$node1 = $this->userFolder->get($this->folder . $this->subfolder);
|
|
|
|
$share1 = $this->shareManager->newShare();
|
|
|
|
$share1->setNode($node1)
|
|
|
|
->setSharedBy(self::TEST_FILES_SHARING_API_USER1)
|
|
|
|
->setSharedWith(self::TEST_FILES_SHARING_API_USER2)
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_USER)
|
|
|
|
->setPermissions(31);
|
|
|
|
$share1 = $this->shareManager->createShare($share1);
|
|
|
|
|
|
|
|
$node2 = $this->userFolder->get($this->folder);
|
|
|
|
$share2 = $this->shareManager->newShare();
|
|
|
|
$share2->setNode($node2)
|
|
|
|
->setSharedBy(self::TEST_FILES_SHARING_API_USER1)
|
|
|
|
->setSharedWith(self::TEST_FILES_SHARING_API_USER2)
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_USER)
|
|
|
|
->setPermissions(31);
|
|
|
|
$share2 = $this->shareManager->createShare($share2);
|
|
|
|
|
|
|
|
$share3 = $this->shareManager->newShare();
|
|
|
|
$share3->setNode($node1)
|
|
|
|
->setSharedBy(self::TEST_FILES_SHARING_API_USER2)
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_LINK)
|
|
|
|
->setPermissions(1);
|
|
|
|
$share3 = $this->shareManager->createShare($share3);
|
|
|
|
|
2016-09-20 18:59:24 +03:00
|
|
|
// $request = $this->createRequest(['path' => $this->subfolder]);
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER2);
|
2016-09-20 18:59:24 +03:00
|
|
|
$result1 = $ocs->getShares('false','false','false', $this->subfolder);
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2014-03-12 14:00:30 +04:00
|
|
|
|
|
|
|
// test should return one share within $this->folder
|
2016-08-09 11:04:29 +03:00
|
|
|
$data1 = $result1->getData();
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->assertCount(1, $data1);
|
|
|
|
$s1 = reset($data1);
|
2014-03-12 14:00:30 +04:00
|
|
|
|
2016-09-20 18:59:24 +03:00
|
|
|
//$request = $this->createRequest(['path' => $this->folder.$this->subfolder]);
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER2);
|
2016-09-20 18:59:24 +03:00
|
|
|
$result2 = $ocs->getShares('false', 'false', 'false', $this->folder . $this->subfolder);
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2014-03-12 14:00:30 +04:00
|
|
|
|
|
|
|
// test should return one share within $this->folder
|
2016-08-09 11:04:29 +03:00
|
|
|
$data2 = $result2->getData();
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->assertCount(1, $data2);
|
|
|
|
$s2 = reset($data2);
|
2014-03-12 14:00:30 +04:00
|
|
|
|
2016-09-20 18:59:24 +03:00
|
|
|
$this->assertEquals($this->subfolder, $s1['path']);
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->assertEquals($this->folder.$this->subfolder, $s2['path']);
|
2014-03-12 14:00:30 +04:00
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->shareManager->deleteShare($share1);
|
|
|
|
$this->shareManager->deleteShare($share2);
|
|
|
|
$this->shareManager->deleteShare($share3);
|
2014-03-12 14:00:30 +04:00
|
|
|
}
|
|
|
|
|
2014-03-12 14:00:30 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* test re-re-share of folder if the path gets constructed correctly
|
2014-03-11 15:58:46 +04:00
|
|
|
* @medium
|
|
|
|
*/
|
|
|
|
function testGetShareFromFileReReShares() {
|
2016-02-09 16:38:53 +03:00
|
|
|
$node1 = $this->userFolder->get($this->folder . $this->subfolder);
|
|
|
|
$share1 = $this->shareManager->newShare();
|
|
|
|
$share1->setNode($node1)
|
|
|
|
->setSharedBy(self::TEST_FILES_SHARING_API_USER1)
|
|
|
|
->setSharedWith(self::TEST_FILES_SHARING_API_USER2)
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_USER)
|
|
|
|
->setPermissions(31);
|
|
|
|
$share1 = $this->shareManager->createShare($share1);
|
|
|
|
|
|
|
|
$user2Folder = \OC::$server->getUserFolder(self::TEST_FILES_SHARING_API_USER2);
|
|
|
|
$node2 = $user2Folder->get($this->subfolder . $this->filename);
|
|
|
|
$share2 = $this->shareManager->newShare();
|
|
|
|
$share2->setNode($node2)
|
|
|
|
->setSharedBy(self::TEST_FILES_SHARING_API_USER2)
|
|
|
|
->setSharedWith(self::TEST_FILES_SHARING_API_USER3)
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_USER)
|
|
|
|
->setPermissions(19);
|
|
|
|
$share2 = $this->shareManager->createShare($share2);
|
|
|
|
|
|
|
|
$user3Folder = \OC::$server->getUserFolder(self::TEST_FILES_SHARING_API_USER3);
|
|
|
|
$node3 = $user3Folder->get($this->filename);
|
|
|
|
$share3 = $this->shareManager->newShare();
|
|
|
|
$share3->setNode($node3)
|
|
|
|
->setSharedBy(self::TEST_FILES_SHARING_API_USER3)
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_LINK)
|
|
|
|
->setPermissions(1);
|
|
|
|
$share3 = $this->shareManager->createShare($share3);
|
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER3);
|
2016-02-09 16:38:53 +03:00
|
|
|
$result = $ocs->getShares();
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2014-03-11 15:58:46 +04:00
|
|
|
|
|
|
|
// test should return one share within $this->folder
|
2016-08-09 11:04:29 +03:00
|
|
|
$data = $result->getData();
|
2014-03-11 15:58:46 +04:00
|
|
|
|
|
|
|
// we should get exactly one result
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->assertCount(1, $data);
|
2014-03-11 15:58:46 +04:00
|
|
|
|
2016-06-07 15:17:22 +03:00
|
|
|
$this->assertEquals($this->filename, $data[0]['path']);
|
2014-03-11 15:58:46 +04:00
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->shareManager->deleteShare($share1);
|
|
|
|
$this->shareManager->deleteShare($share2);
|
|
|
|
$this->shareManager->deleteShare($share3);
|
2014-03-11 15:58:46 +04:00
|
|
|
}
|
|
|
|
|
2013-09-30 00:16:48 +04:00
|
|
|
/**
|
|
|
|
* @medium
|
|
|
|
*/
|
|
|
|
function testGetShareFromUnknownId() {
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER3);
|
2016-07-20 15:24:22 +03:00
|
|
|
try {
|
|
|
|
$ocs->getShare(0);
|
|
|
|
$this->fail();
|
|
|
|
} catch (OCSNotFoundException $e) {
|
|
|
|
$this->assertEquals('Wrong share ID, share doesn\'t exist', $e->getMessage());
|
|
|
|
}
|
|
|
|
$ocs->cleanup();
|
2013-09-27 16:01:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @medium
|
2015-08-28 18:44:40 +03:00
|
|
|
* @depends testCreateShareUserFile
|
|
|
|
* @depends testCreateShareLink
|
2013-09-19 16:39:51 +04:00
|
|
|
*/
|
|
|
|
function testUpdateShare() {
|
2016-10-27 13:27:09 +03:00
|
|
|
|
|
|
|
$password = md5(time());
|
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$node1 = $this->userFolder->get($this->filename);
|
|
|
|
$share1 = $this->shareManager->newShare();
|
|
|
|
$share1->setNode($node1)
|
|
|
|
->setSharedBy(self::TEST_FILES_SHARING_API_USER1)
|
|
|
|
->setSharedWith(self::TEST_FILES_SHARING_API_USER2)
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_USER)
|
|
|
|
->setPermissions(19);
|
|
|
|
$share1 = $this->shareManager->createShare($share1);
|
|
|
|
|
|
|
|
$share2 = $this->shareManager->newShare();
|
|
|
|
$share2->setNode($node1)
|
|
|
|
->setSharedBy(self::TEST_FILES_SHARING_API_USER1)
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_LINK)
|
|
|
|
->setPermissions(1);
|
|
|
|
$share2 = $this->shareManager->createShare($share2);
|
2013-09-19 16:39:51 +04:00
|
|
|
|
2014-05-28 01:51:24 +04:00
|
|
|
// update permissions
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-08-17 11:05:09 +03:00
|
|
|
$ocs->updateShare($share1->getId(), 1);
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2013-09-19 16:39:51 +04:00
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$share1 = $this->shareManager->getShareById('ocinternal:' . $share1->getId());
|
|
|
|
$this->assertEquals(1, $share1->getPermissions());
|
2013-09-19 16:39:51 +04:00
|
|
|
|
|
|
|
// update password for link share
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->assertNull($share2->getPassword());
|
2013-09-19 16:39:51 +04:00
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-10-27 13:27:09 +03:00
|
|
|
$ocs->updateShare($share2->getId(), null, $password);
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2013-09-19 16:39:51 +04:00
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$share2 = $this->shareManager->getShareById('ocinternal:' . $share2->getId());
|
|
|
|
$this->assertNotNull($share2->getPassword());
|
2015-06-24 13:37:24 +03:00
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-08-17 11:05:09 +03:00
|
|
|
$ocs->updateShare($share2->getId(), null, '');
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2015-06-24 13:37:24 +03:00
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$share2 = $this->shareManager->getShareById('ocinternal:' . $share2->getId());
|
|
|
|
$this->assertNull($share2->getPassword());
|
2013-09-20 14:38:23 +04:00
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->shareManager->deleteShare($share1);
|
|
|
|
$this->shareManager->deleteShare($share2);
|
2013-09-19 16:39:51 +04:00
|
|
|
}
|
|
|
|
|
2013-09-30 14:57:55 +04:00
|
|
|
/**
|
|
|
|
* @medium
|
|
|
|
*/
|
|
|
|
function testUpdateShareUpload() {
|
2016-02-09 16:38:53 +03:00
|
|
|
$node1 = $this->userFolder->get($this->folder);
|
|
|
|
$share1 = $this->shareManager->newShare();
|
|
|
|
$share1->setNode($node1)
|
|
|
|
->setSharedBy(self::TEST_FILES_SHARING_API_USER1)
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_LINK)
|
|
|
|
->setPermissions(1);
|
|
|
|
$share1 = $this->shareManager->createShare($share1);
|
2013-09-30 14:57:55 +04:00
|
|
|
|
|
|
|
// update public upload
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-08-17 11:05:09 +03:00
|
|
|
$ocs->updateShare($share1->getId(), null, null, 'true');
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2013-09-30 14:57:55 +04:00
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$share1 = $this->shareManager->getShareById($share1->getFullId());
|
2016-06-23 16:43:21 +03:00
|
|
|
$this->assertEquals(
|
|
|
|
\OCP\Constants::PERMISSION_READ |
|
|
|
|
\OCP\Constants::PERMISSION_CREATE |
|
|
|
|
\OCP\Constants::PERMISSION_UPDATE |
|
|
|
|
\OCP\Constants::PERMISSION_DELETE,
|
|
|
|
$share1->getPermissions()
|
|
|
|
);
|
2013-09-30 14:57:55 +04:00
|
|
|
|
|
|
|
// cleanup
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->shareManager->deleteShare($share1);
|
2013-09-30 14:57:55 +04:00
|
|
|
}
|
|
|
|
|
2014-07-23 18:42:33 +04:00
|
|
|
/**
|
|
|
|
* @medium
|
|
|
|
*/
|
|
|
|
function testUpdateShareExpireDate() {
|
2016-02-09 16:38:53 +03:00
|
|
|
$node1 = $this->userFolder->get($this->folder);
|
|
|
|
$share1 = $this->shareManager->newShare();
|
|
|
|
$share1->setNode($node1)
|
|
|
|
->setSharedBy(self::TEST_FILES_SHARING_API_USER1)
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_LINK)
|
|
|
|
->setPermissions(1);
|
|
|
|
$share1 = $this->shareManager->createShare($share1);
|
2014-07-23 18:42:33 +04:00
|
|
|
|
2014-12-17 13:12:37 +03:00
|
|
|
$config = \OC::$server->getConfig();
|
2014-07-23 18:42:33 +04:00
|
|
|
|
|
|
|
// enforce expire date, by default 7 days after the file was shared
|
2014-12-17 13:12:37 +03:00
|
|
|
$config->setAppValue('core', 'shareapi_default_expire_date', 'yes');
|
|
|
|
$config->setAppValue('core', 'shareapi_enforce_expire_date', 'yes');
|
2014-07-23 18:42:33 +04:00
|
|
|
|
|
|
|
$dateWithinRange = new \DateTime();
|
2016-02-09 16:38:53 +03:00
|
|
|
$dateWithinRange->setTime(0,0,0);
|
2014-07-23 18:42:33 +04:00
|
|
|
$dateWithinRange->add(new \DateInterval('P5D'));
|
|
|
|
$dateOutOfRange = new \DateTime();
|
2016-02-09 16:38:53 +03:00
|
|
|
$dateOutOfRange->setTime(0,0,0);
|
2014-07-23 18:42:33 +04:00
|
|
|
$dateOutOfRange->add(new \DateInterval('P8D'));
|
|
|
|
|
|
|
|
// update expire date to a valid value
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-08-17 11:05:09 +03:00
|
|
|
$ocs->updateShare($share1->getId(), null, null, null, $dateWithinRange->format('Y-m-d'));
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2014-07-23 18:42:33 +04:00
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$share1 = $this->shareManager->getShareById($share1->getFullId());
|
2014-07-23 18:42:33 +04:00
|
|
|
|
|
|
|
// date should be changed
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->assertEquals($dateWithinRange, $share1->getExpirationDate());
|
2014-07-23 18:42:33 +04:00
|
|
|
|
|
|
|
// update expire date to a value out of range
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-07-20 15:24:22 +03:00
|
|
|
try {
|
|
|
|
$ocs->updateShare($share1->getId());
|
|
|
|
$this->fail();
|
|
|
|
} catch (OCSBadRequestException $e) {
|
|
|
|
|
|
|
|
}
|
|
|
|
$ocs->cleanup();
|
2015-03-19 12:47:09 +03:00
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$share1 = $this->shareManager->getShareById($share1->getFullId());
|
2015-03-19 12:47:09 +03:00
|
|
|
|
|
|
|
// date shouldn't be changed
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->assertEquals($dateWithinRange, $share1->getExpirationDate());
|
2015-03-19 12:47:09 +03:00
|
|
|
|
|
|
|
// Try to remove expire date
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-07-20 15:24:22 +03:00
|
|
|
try {
|
|
|
|
$ocs->updateShare($share1->getId());
|
|
|
|
$this->fail();
|
|
|
|
} catch (OCSBadRequestException $e) {
|
|
|
|
|
|
|
|
}
|
|
|
|
$ocs->cleanup();
|
2014-07-23 18:42:33 +04:00
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$share1 = $this->shareManager->getShareById($share1->getFullId());
|
2014-07-23 18:42:33 +04:00
|
|
|
|
|
|
|
|
|
|
|
// date shouldn't be changed
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->assertEquals($dateWithinRange, $share1->getExpirationDate());
|
2014-07-23 18:42:33 +04:00
|
|
|
// cleanup
|
2014-12-17 13:12:37 +03:00
|
|
|
$config->setAppValue('core', 'shareapi_default_expire_date', 'no');
|
|
|
|
$config->setAppValue('core', 'shareapi_enforce_expire_date', 'no');
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->shareManager->deleteShare($share1);
|
2014-07-23 18:42:33 +04:00
|
|
|
}
|
|
|
|
|
2013-09-19 16:39:51 +04:00
|
|
|
/**
|
|
|
|
* @medium
|
2015-08-28 18:44:40 +03:00
|
|
|
* @depends testCreateShareUserFile
|
2013-09-19 16:39:51 +04:00
|
|
|
*/
|
|
|
|
function testDeleteShare() {
|
2016-02-09 16:38:53 +03:00
|
|
|
$node1 = $this->userFolder->get($this->filename);
|
|
|
|
$share1 = $this->shareManager->newShare();
|
|
|
|
$share1->setNode($node1)
|
|
|
|
->setSharedBy(self::TEST_FILES_SHARING_API_USER1)
|
|
|
|
->setSharedWith(self::TEST_FILES_SHARING_API_USER2)
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_USER)
|
|
|
|
->setPermissions(19);
|
|
|
|
$share1 = $this->shareManager->createShare($share1);
|
|
|
|
|
|
|
|
$share2 = $this->shareManager->newShare();
|
|
|
|
$share2->setNode($node1)
|
|
|
|
->setSharedBy(self::TEST_FILES_SHARING_API_USER1)
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_LINK)
|
|
|
|
->setPermissions(1);
|
|
|
|
$share2 = $this->shareManager->createShare($share1);
|
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-08-17 11:05:09 +03:00
|
|
|
$ocs->deleteShare($share1->getId());
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2013-09-30 14:23:44 +04:00
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-08-17 11:05:09 +03:00
|
|
|
$ocs->deleteShare($share2->getId());
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2013-09-30 14:23:44 +04:00
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->assertEmpty($this->shareManager->getSharesBy(self::TEST_FILES_SHARING_API_USER2, \OCP\Share::SHARE_TYPE_USER));
|
|
|
|
$this->assertEmpty($this->shareManager->getSharesBy(self::TEST_FILES_SHARING_API_USER2, \OCP\Share::SHARE_TYPE_LINK));
|
2013-09-19 16:39:51 +04:00
|
|
|
}
|
2014-03-10 14:16:09 +04:00
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* test unshare of a reshared file
|
2014-03-10 14:16:09 +04:00
|
|
|
*/
|
|
|
|
function testDeleteReshare() {
|
2016-02-09 16:38:53 +03:00
|
|
|
$node1 = $this->userFolder->get($this->folder);
|
|
|
|
$share1 = $this->shareManager->newShare();
|
|
|
|
$share1->setNode($node1)
|
|
|
|
->setSharedBy(self::TEST_FILES_SHARING_API_USER1)
|
|
|
|
->setSharedWith(self::TEST_FILES_SHARING_API_USER2)
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_USER)
|
|
|
|
->setPermissions(31);
|
|
|
|
$share1 = $this->shareManager->createShare($share1);
|
|
|
|
|
|
|
|
$user2folder = \OC::$server->getUserFolder(self::TEST_FILES_SHARING_API_USER2);
|
|
|
|
$node2 = $user2folder->get($this->folder.'/'.$this->filename);
|
|
|
|
$share2 = $this->shareManager->newShare();
|
|
|
|
$share2->setNode($node2)
|
|
|
|
->setSharedBy(self::TEST_FILES_SHARING_API_USER2)
|
|
|
|
->setShareType(\OCP\Share::SHARE_TYPE_LINK)
|
|
|
|
->setPermissions(1);
|
|
|
|
$share2 = $this->shareManager->createShare($share2);
|
2014-03-10 14:16:09 +04:00
|
|
|
|
|
|
|
// test if we can unshare the link again
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER2);
|
2016-08-17 11:05:09 +03:00
|
|
|
$ocs->deleteShare($share2->getId());
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2014-04-15 13:19:31 +04:00
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->shareManager->deleteShare($share1);
|
2014-04-15 13:19:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* share a folder which contains a share mount point, should be forbidden
|
2014-04-15 13:19:31 +04:00
|
|
|
*/
|
|
|
|
public function testShareFolderWithAMountPoint() {
|
|
|
|
// user 1 shares a folder with user2
|
2016-05-17 12:42:03 +03:00
|
|
|
self::loginHelper(self::TEST_FILES_SHARING_API_USER1);
|
2014-04-15 13:19:31 +04:00
|
|
|
|
2016-04-15 10:02:17 +03:00
|
|
|
$share = $this->share(
|
|
|
|
\OCP\Share::SHARE_TYPE_USER,
|
|
|
|
$this->folder,
|
|
|
|
self::TEST_FILES_SHARING_API_USER1,
|
|
|
|
self::TEST_FILES_SHARING_API_USER2,
|
|
|
|
\OCP\Constants::PERMISSION_ALL
|
|
|
|
);
|
2014-04-15 13:19:31 +04:00
|
|
|
|
|
|
|
// user2 shares a file from the folder as link
|
2016-05-17 12:42:03 +03:00
|
|
|
self::loginHelper(self::TEST_FILES_SHARING_API_USER2);
|
2014-04-15 13:19:31 +04:00
|
|
|
|
2016-05-17 12:42:03 +03:00
|
|
|
$view = new \OC\Files\View('/' . self::TEST_FILES_SHARING_API_USER2 . '/files');
|
2014-04-15 13:19:31 +04:00
|
|
|
$view->mkdir("localDir");
|
|
|
|
|
|
|
|
// move mount point to the folder "localDir"
|
|
|
|
$result = $view->rename($this->folder, 'localDir/'.$this->folder);
|
|
|
|
$this->assertTrue($result !== false);
|
|
|
|
|
|
|
|
// try to share "localDir"
|
|
|
|
$fileInfo2 = $view->getFileInfo('localDir');
|
|
|
|
|
|
|
|
$this->assertTrue($fileInfo2 instanceof \OC\Files\FileInfo);
|
|
|
|
|
2016-04-15 10:02:17 +03:00
|
|
|
$pass = true;
|
2014-04-15 13:19:31 +04:00
|
|
|
try {
|
2016-04-15 10:02:17 +03:00
|
|
|
$this->share(
|
|
|
|
\OCP\Share::SHARE_TYPE_USER,
|
|
|
|
'localDir',
|
|
|
|
self::TEST_FILES_SHARING_API_USER2,
|
|
|
|
self::TEST_FILES_SHARING_API_USER3,
|
|
|
|
\OCP\Constants::PERMISSION_ALL
|
|
|
|
);
|
2014-04-15 13:19:31 +04:00
|
|
|
} catch (\Exception $e) {
|
2016-04-15 10:02:17 +03:00
|
|
|
$pass = false;
|
2014-04-15 13:19:31 +04:00
|
|
|
}
|
|
|
|
|
2016-04-15 10:02:17 +03:00
|
|
|
$this->assertFalse($pass);
|
2014-04-15 13:19:31 +04:00
|
|
|
|
|
|
|
//cleanup
|
|
|
|
|
|
|
|
$result = $view->rename('localDir/' . $this->folder, $this->folder);
|
|
|
|
$this->assertTrue($result !== false);
|
|
|
|
$view->unlink('localDir');
|
|
|
|
|
2016-05-17 12:42:03 +03:00
|
|
|
self::loginHelper(self::TEST_FILES_SHARING_API_USER1);
|
2014-04-15 13:19:31 +04:00
|
|
|
|
2016-04-15 10:02:17 +03:00
|
|
|
$this->shareManager->deleteShare($share);
|
2014-03-10 14:16:09 +04:00
|
|
|
}
|
2014-03-12 14:00:30 +04:00
|
|
|
|
2014-05-08 13:00:19 +04:00
|
|
|
/**
|
|
|
|
* Post init mount points hook for mounting simulated ext storage
|
|
|
|
*/
|
|
|
|
public static function initTestMountPointsHook($data) {
|
2016-05-17 12:42:03 +03:00
|
|
|
if ($data['user'] === self::TEST_FILES_SHARING_API_USER1) {
|
|
|
|
\OC\Files\Filesystem::mount(self::$tempStorage, array(), '/' . self::TEST_FILES_SHARING_API_USER1 . '/files' . self::TEST_FOLDER_NAME);
|
2014-05-08 13:00:19 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests mounting a folder that is an external storage mount point.
|
|
|
|
*/
|
|
|
|
public function testShareStorageMountPoint() {
|
2016-09-20 16:27:40 +03:00
|
|
|
$tempStorage = new \OC\Files\Storage\Temporary(array());
|
|
|
|
$tempStorage->file_put_contents('test.txt', 'abcdef');
|
|
|
|
$tempStorage->getScanner()->scan('');
|
|
|
|
|
|
|
|
$this->registerMount(self::TEST_FILES_SHARING_API_USER1, $tempStorage, self::TEST_FILES_SHARING_API_USER1 . '/files' . self::TEST_FOLDER_NAME);
|
2014-05-08 13:00:19 +04:00
|
|
|
|
|
|
|
// logging in will auto-mount the temp storage for user1 as well
|
2016-05-17 12:42:03 +03:00
|
|
|
self::loginHelper(self::TEST_FILES_SHARING_API_USER1);
|
2014-05-08 13:00:19 +04:00
|
|
|
|
|
|
|
// user 1 shares the mount point folder with user2
|
2016-04-15 10:02:17 +03:00
|
|
|
$share = $this->share(
|
|
|
|
\OCP\Share::SHARE_TYPE_USER,
|
|
|
|
$this->folder,
|
|
|
|
self::TEST_FILES_SHARING_API_USER1,
|
|
|
|
self::TEST_FILES_SHARING_API_USER2,
|
|
|
|
\OCP\Constants::PERMISSION_ALL
|
|
|
|
);
|
2014-05-08 13:00:19 +04:00
|
|
|
|
|
|
|
// user2: check that mount point name appears correctly
|
2016-05-17 12:42:03 +03:00
|
|
|
self::loginHelper(self::TEST_FILES_SHARING_API_USER2);
|
2014-05-08 13:00:19 +04:00
|
|
|
|
2016-05-17 12:42:03 +03:00
|
|
|
$view = new \OC\Files\View('/' . self::TEST_FILES_SHARING_API_USER2 . '/files');
|
2014-05-08 13:00:19 +04:00
|
|
|
|
|
|
|
$this->assertTrue($view->file_exists($this->folder));
|
|
|
|
$this->assertTrue($view->file_exists($this->folder . '/test.txt'));
|
|
|
|
|
2016-05-17 12:42:03 +03:00
|
|
|
self::loginHelper(self::TEST_FILES_SHARING_API_USER1);
|
2014-05-08 13:00:19 +04:00
|
|
|
|
2016-04-15 10:02:17 +03:00
|
|
|
$this->shareManager->deleteShare($share);
|
2014-05-08 13:00:19 +04:00
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
\OC_Hook::clear('OC_Filesystem', 'post_initMountPoints');
|
|
|
|
\OC_Hook::clear('\OCA\Files_Sharing\Tests\ApiTest', 'initTestMountPointsHook');
|
2014-05-08 13:00:19 +04:00
|
|
|
}
|
2014-04-15 17:48:54 +04:00
|
|
|
/**
|
|
|
|
* @expectedException \Exception
|
|
|
|
*/
|
2016-07-20 15:24:22 +03:00
|
|
|
public function XtestShareNonExisting() {
|
2016-05-17 12:42:03 +03:00
|
|
|
self::loginHelper(self::TEST_FILES_SHARING_API_USER1);
|
2014-04-15 17:48:54 +04:00
|
|
|
|
|
|
|
$id = PHP_INT_MAX - 1;
|
2016-05-17 12:42:03 +03:00
|
|
|
\OCP\Share::shareItem('file', $id, \OCP\Share::SHARE_TYPE_LINK, self::TEST_FILES_SHARING_API_USER2, 31);
|
2014-04-15 17:48:54 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @expectedException \Exception
|
|
|
|
*/
|
|
|
|
public function testShareNotOwner() {
|
2016-05-17 12:42:03 +03:00
|
|
|
self::loginHelper(self::TEST_FILES_SHARING_API_USER2);
|
2014-04-15 17:48:54 +04:00
|
|
|
\OC\Files\Filesystem::file_put_contents('foo.txt', 'bar');
|
|
|
|
$info = \OC\Files\Filesystem::getFileInfo('foo.txt');
|
|
|
|
|
2016-05-17 12:42:03 +03:00
|
|
|
self::loginHelper(self::TEST_FILES_SHARING_API_USER1);
|
2014-04-15 17:48:54 +04:00
|
|
|
|
2016-05-17 12:42:03 +03:00
|
|
|
\OCP\Share::shareItem('file', $info->getId(), \OCP\Share::SHARE_TYPE_LINK, self::TEST_FILES_SHARING_API_USER2, 31);
|
2014-04-15 17:48:54 +04:00
|
|
|
}
|
2014-05-12 18:15:13 +04:00
|
|
|
|
|
|
|
public function testDefaultExpireDate() {
|
2016-05-17 12:42:03 +03:00
|
|
|
self::loginHelper(self::TEST_FILES_SHARING_API_USER1);
|
2015-03-17 20:55:44 +03:00
|
|
|
|
|
|
|
// TODO drop this once all code paths use the DI version - otherwise
|
|
|
|
// the cache inside this config object is out of date because
|
|
|
|
// OC_Appconfig is used and bypasses this cache which lead to integrity
|
|
|
|
// constraint violations
|
|
|
|
$config = \OC::$server->getConfig();
|
|
|
|
$config->deleteAppValue('core', 'shareapi_default_expire_date');
|
|
|
|
$config->deleteAppValue('core', 'shareapi_enforce_expire_date');
|
|
|
|
$config->deleteAppValue('core', 'shareapi_expire_after_n_days');
|
|
|
|
|
|
|
|
$config->setAppValue('core', 'shareapi_default_expire_date', 'yes');
|
|
|
|
$config->setAppValue('core', 'shareapi_enforce_expire_date', 'yes');
|
|
|
|
$config->setAppValue('core', 'shareapi_expire_after_n_days', '2');
|
2014-05-12 18:15:13 +04:00
|
|
|
|
|
|
|
// default expire date is set to 2 days
|
|
|
|
// the time when the share was created is set to 3 days in the past
|
|
|
|
// user defined expire date is set to +2 days from now on
|
|
|
|
// -> link should be already expired by the default expire date but the user
|
|
|
|
// share should still exists.
|
|
|
|
$now = time();
|
|
|
|
$dateFormat = 'Y-m-d H:i:s';
|
|
|
|
$shareCreated = $now - 3 * 24 * 60 * 60;
|
|
|
|
$expireDate = date($dateFormat, $now + 2 * 24 * 60 * 60);
|
|
|
|
|
2016-05-17 12:42:03 +03:00
|
|
|
$info = \OC\Files\Filesystem::getFileInfo($this->filename);
|
2014-05-12 18:15:13 +04:00
|
|
|
$this->assertTrue($info instanceof \OC\Files\FileInfo);
|
|
|
|
|
2014-11-25 18:28:41 +03:00
|
|
|
$result = \OCP\Share::shareItem('file', $info->getId(), \OCP\Share::SHARE_TYPE_LINK, null, \OCP\Constants::PERMISSION_READ);
|
2014-05-12 18:15:13 +04:00
|
|
|
$this->assertTrue(is_string($result));
|
|
|
|
|
2016-05-17 12:42:03 +03:00
|
|
|
$result = \OCP\Share::shareItem('file', $info->getId(), \OCP\Share::SHARE_TYPE_USER, self::TEST_FILES_SHARING_API_USER2, 31);
|
2014-05-12 18:15:13 +04:00
|
|
|
$this->assertTrue($result);
|
|
|
|
|
2014-07-23 18:42:33 +04:00
|
|
|
$result = \OCP\Share::setExpirationDate('file', $info->getId() , $expireDate, $now);
|
2014-05-12 18:15:13 +04:00
|
|
|
$this->assertTrue($result);
|
|
|
|
|
|
|
|
//manipulate stime so that both shares are older then the default expire date
|
|
|
|
$statement = "UPDATE `*PREFIX*share` SET `stime` = ? WHERE `share_type` = ?";
|
|
|
|
$query = \OCP\DB::prepare($statement);
|
|
|
|
$result = $query->execute(array($shareCreated, \OCP\Share::SHARE_TYPE_LINK));
|
|
|
|
$this->assertSame(1, $result);
|
|
|
|
$query = \OCP\DB::prepare($statement);
|
|
|
|
$result = $query->execute(array($shareCreated, \OCP\Share::SHARE_TYPE_USER));
|
|
|
|
$this->assertSame(1, $result);
|
|
|
|
|
|
|
|
// now the link share should expire because of enforced default expire date
|
|
|
|
// the user share should still exist
|
|
|
|
$result = \OCP\Share::getItemShared('file', $info->getId());
|
|
|
|
$this->assertTrue(is_array($result));
|
|
|
|
$this->assertSame(1, count($result));
|
|
|
|
$share = reset($result);
|
|
|
|
$this->assertSame(\OCP\Share::SHARE_TYPE_USER, $share['share_type']);
|
|
|
|
|
|
|
|
//cleanup
|
2016-05-17 12:42:03 +03:00
|
|
|
$result = \OCP\Share::unshare('file', $info->getId(), \OCP\Share::SHARE_TYPE_USER, self::TEST_FILES_SHARING_API_USER2);
|
2014-05-12 18:15:13 +04:00
|
|
|
$this->assertTrue($result);
|
2015-03-17 20:55:44 +03:00
|
|
|
$config->setAppValue('core', 'shareapi_default_expire_date', 'no');
|
|
|
|
$config->setAppValue('core', 'shareapi_enforce_expire_date', 'no');
|
2014-05-12 18:15:13 +04:00
|
|
|
|
|
|
|
}
|
2015-08-29 13:39:47 +03:00
|
|
|
|
|
|
|
public function datesProvider() {
|
|
|
|
$date = new \DateTime();
|
|
|
|
$date->add(new \DateInterval('P5D'));
|
|
|
|
|
|
|
|
return [
|
|
|
|
[$date->format('Y-m-d'), true],
|
|
|
|
['abc', false],
|
|
|
|
[$date->format('Y-m-d') . 'xyz', false],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Make sure only ISO 8601 dates are accepted
|
|
|
|
*
|
|
|
|
* @dataProvider datesProvider
|
|
|
|
*/
|
|
|
|
public function testPublicLinkExpireDate($date, $valid) {
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2015-08-29 13:39:47 +03:00
|
|
|
|
2016-07-20 15:24:22 +03:00
|
|
|
try {
|
2016-08-16 23:45:49 +03:00
|
|
|
$result = $ocs->createShare($this->folder, \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_LINK, null, 'false', '', $date);
|
2016-07-20 15:24:22 +03:00
|
|
|
$this->assertTrue($valid);
|
|
|
|
} catch (OCSNotFoundException $e) {
|
|
|
|
$this->assertFalse($valid);
|
|
|
|
$this->assertEquals('Invalid date, date format must be YYYY-MM-DD', $e->getMessage());
|
|
|
|
$ocs->cleanup();
|
2015-08-29 13:39:47 +03:00
|
|
|
return;
|
|
|
|
}
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2015-08-29 13:39:47 +03:00
|
|
|
|
2016-08-09 11:04:29 +03:00
|
|
|
$data = $result->getData();
|
2015-08-29 13:39:47 +03:00
|
|
|
$this->assertTrue(is_string($data['token']));
|
2015-08-28 18:44:40 +03:00
|
|
|
$this->assertEquals($date, substr($data['expiration'], 0, 10));
|
2015-08-29 13:39:47 +03:00
|
|
|
|
|
|
|
// check for correct link
|
|
|
|
$url = \OC::$server->getURLGenerator()->getAbsoluteURL('/index.php/s/' . $data['token']);
|
|
|
|
$this->assertEquals($url, $data['url']);
|
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$share = $this->shareManager->getShareById('ocinternal:'.$data['id']);
|
2015-08-29 13:39:47 +03:00
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->assertEquals($date, $share->getExpirationDate()->format('Y-m-d'));
|
2015-08-29 13:39:47 +03:00
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->shareManager->deleteShare($share);
|
2015-08-29 13:39:47 +03:00
|
|
|
}
|
2015-08-29 14:31:18 +03:00
|
|
|
|
|
|
|
public function testCreatePublicLinkExpireDateValid() {
|
|
|
|
$config = \OC::$server->getConfig();
|
|
|
|
|
|
|
|
// enforce expire date, by default 7 days after the file was shared
|
|
|
|
$config->setAppValue('core', 'shareapi_default_expire_date', 'yes');
|
|
|
|
$config->setAppValue('core', 'shareapi_enforce_expire_date', 'yes');
|
|
|
|
|
|
|
|
$date = new \DateTime();
|
|
|
|
$date->add(new \DateInterval('P5D'));
|
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-08-16 23:45:49 +03:00
|
|
|
$result = $ocs->createShare($this->filename, \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_LINK, null, 'false', '', $date->format('Y-m-d'));
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2015-08-29 14:31:18 +03:00
|
|
|
|
2016-08-09 11:04:29 +03:00
|
|
|
$data = $result->getData();
|
2015-08-29 14:31:18 +03:00
|
|
|
$this->assertTrue(is_string($data['token']));
|
2015-08-28 18:44:40 +03:00
|
|
|
$this->assertEquals($date->format('Y-m-d') . ' 00:00:00', $data['expiration']);
|
2015-08-29 14:31:18 +03:00
|
|
|
|
|
|
|
// check for correct link
|
|
|
|
$url = \OC::$server->getURLGenerator()->getAbsoluteURL('/index.php/s/' . $data['token']);
|
|
|
|
$this->assertEquals($url, $data['url']);
|
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$share = $this->shareManager->getShareById('ocinternal:'.$data['id']);
|
|
|
|
$date->setTime(0,0,0);
|
|
|
|
$this->assertEquals($date, $share->getExpirationDate());
|
2015-08-29 14:31:18 +03:00
|
|
|
|
2016-02-09 16:38:53 +03:00
|
|
|
$this->shareManager->deleteShare($share);
|
2015-08-29 14:31:18 +03:00
|
|
|
|
|
|
|
$config->setAppValue('core', 'shareapi_default_expire_date', 'no');
|
|
|
|
$config->setAppValue('core', 'shareapi_enforce_expire_date', 'no');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testCreatePublicLinkExpireDateInvalidFuture() {
|
|
|
|
$config = \OC::$server->getConfig();
|
|
|
|
|
|
|
|
// enforce expire date, by default 7 days after the file was shared
|
|
|
|
$config->setAppValue('core', 'shareapi_default_expire_date', 'yes');
|
|
|
|
$config->setAppValue('core', 'shareapi_enforce_expire_date', 'yes');
|
|
|
|
|
|
|
|
$date = new \DateTime();
|
|
|
|
$date->add(new \DateInterval('P8D'));
|
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-07-20 15:24:22 +03:00
|
|
|
|
|
|
|
try {
|
2016-08-16 23:45:49 +03:00
|
|
|
$ocs->createShare($this->filename, \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_LINK, null, 'false', '', $date->format('Y-m-d'));
|
2016-07-20 15:24:22 +03:00
|
|
|
$this->fail();
|
|
|
|
} catch (OCSException $e) {
|
|
|
|
$this->assertEquals(404, $e->getCode());
|
|
|
|
$this->assertEquals('Cannot set expiration date more than 7 days in the future', $e->getMessage());
|
|
|
|
}
|
|
|
|
$ocs->cleanup();
|
2015-08-29 14:31:18 +03:00
|
|
|
|
|
|
|
$config->setAppValue('core', 'shareapi_default_expire_date', 'no');
|
|
|
|
$config->setAppValue('core', 'shareapi_enforce_expire_date', 'no');
|
|
|
|
}
|
|
|
|
|
2016-07-20 15:24:22 +03:00
|
|
|
public function XtestCreatePublicLinkExpireDateInvalidPast() {
|
2015-08-29 14:31:18 +03:00
|
|
|
$config = \OC::$server->getConfig();
|
|
|
|
|
|
|
|
$date = new \DateTime();
|
|
|
|
$date->sub(new \DateInterval('P8D'));
|
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-07-20 15:24:22 +03:00
|
|
|
|
|
|
|
try {
|
2016-08-16 23:45:49 +03:00
|
|
|
$ocs->createShare($this->filename, \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_LINK, null, 'false', '', $date->format('Y-m-d'));
|
2016-07-20 15:24:22 +03:00
|
|
|
$this->fail();
|
|
|
|
} catch(OCSException $e) {
|
|
|
|
$this->assertEquals(404, $e->getCode());
|
|
|
|
$this->assertEquals('Expiration date is in the past', $e->getMessage());
|
|
|
|
}
|
|
|
|
$ocs->cleanup();
|
2015-08-29 14:31:18 +03:00
|
|
|
|
|
|
|
$config->setAppValue('core', 'shareapi_default_expire_date', 'no');
|
|
|
|
$config->setAppValue('core', 'shareapi_enforce_expire_date', 'no');
|
|
|
|
}
|
|
|
|
|
2016-02-11 14:32:05 +03:00
|
|
|
/**
|
|
|
|
* test for no invisible shares
|
|
|
|
* See: https://github.com/owncloud/core/issues/22295
|
|
|
|
*/
|
|
|
|
public function testInvisibleSharesUser() {
|
|
|
|
// simulate a post request
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-08-16 23:45:49 +03:00
|
|
|
$result = $ocs->createShare($this->folder, \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_USER, self::TEST_FILES_SHARING_API_USER2);
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2016-08-09 11:04:29 +03:00
|
|
|
$data = $result->getData();
|
2016-02-11 14:32:05 +03:00
|
|
|
|
|
|
|
$topId = $data['id'];
|
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER2);
|
2016-08-16 23:45:49 +03:00
|
|
|
$ocs->createShare($this->folder, \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_LINK);
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2016-02-11 14:32:05 +03:00
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-08-17 11:05:09 +03:00
|
|
|
$ocs->deleteShare($topId);
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2016-02-11 14:32:05 +03:00
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-02-11 14:32:05 +03:00
|
|
|
$result = $ocs->getShares();
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2016-02-11 14:32:05 +03:00
|
|
|
|
2016-08-09 11:04:29 +03:00
|
|
|
$this->assertEmpty($result->getData());
|
2016-02-11 14:32:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* test for no invisible shares
|
|
|
|
* See: https://github.com/owncloud/core/issues/22295
|
|
|
|
*/
|
|
|
|
public function testInvisibleSharesGroup() {
|
|
|
|
// simulate a post request
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-08-16 23:45:49 +03:00
|
|
|
$result = $ocs->createShare($this->folder, \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_GROUP, self::TEST_FILES_SHARING_API_GROUP1);
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2016-08-09 11:04:29 +03:00
|
|
|
$data = $result->getData();
|
2016-02-11 14:32:05 +03:00
|
|
|
|
|
|
|
$topId = $data['id'];
|
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER2);
|
2016-08-16 23:45:49 +03:00
|
|
|
$ocs->createShare($this->folder, \OCP\Constants::PERMISSION_ALL, \OCP\Share::SHARE_TYPE_LINK);
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2016-02-11 14:32:05 +03:00
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-08-17 11:05:09 +03:00
|
|
|
$ocs->deleteShare($topId);
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2016-02-11 14:32:05 +03:00
|
|
|
|
2016-08-17 11:37:11 +03:00
|
|
|
$ocs = $this->createOCS(self::TEST_FILES_SHARING_API_USER1);
|
2016-02-11 14:32:05 +03:00
|
|
|
$result = $ocs->getShares();
|
2016-07-20 15:24:22 +03:00
|
|
|
$ocs->cleanup();
|
2016-02-11 14:32:05 +03:00
|
|
|
|
2016-08-09 11:04:29 +03:00
|
|
|
$this->assertEmpty($result->getData());
|
2016-02-11 14:32:05 +03:00
|
|
|
}
|
2013-09-19 16:39:51 +04:00
|
|
|
}
|