123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491 |
- <?php
- /**
- * @author Björn Schießle <schiessle@owncloud.com>
- * @author Joas Schilling <nickvergessen@owncloud.com>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Robin Appelman <icewind@owncloud.com>
- * @author Robin McCorkell <rmccorkell@karoshi.org.uk>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- * @author Thomas Müller <thomas.mueller@tmit.eu>
- * @author Vincent Petry <pvince81@owncloud.com>
- *
- * @copyright Copyright (c) 2015, ownCloud, Inc.
- * @license AGPL-3.0
- *
- * This code is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License, version 3,
- * along with this program. If not, see <http://www.gnu.org/licenses/>
- *
- */
- use OCA\Files\Share;
- use OCA\Files_sharing\Tests\TestCase;
- /**
- * Class Test_Files_Sharing_Api
- */
- class Test_Files_Sharing_Api extends TestCase {
- const TEST_FOLDER_NAME = '/folder_share_api_test';
- private static $tempStorage;
- protected function setUp() {
- parent::setUp();
- \OC::$server->getAppConfig()->setValue('core', 'shareapi_exclude_groups', 'no');
- \OC::$server->getAppConfig()->setValue('core', 'shareapi_expire_after_n_days', '7');
- $this->folder = self::TEST_FOLDER_NAME;
- $this->subfolder = '/subfolder_share_api_test';
- $this->subsubfolder = '/subsubfolder_share_api_test';
- $this->filename = '/share-api-test.txt';
- // save file with content
- $this->view->file_put_contents($this->filename, $this->data);
- $this->view->mkdir($this->folder);
- $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);
- }
- protected function tearDown() {
- if($this->view instanceof \OC\Files\View) {
- $this->view->unlink($this->filename);
- $this->view->deleteAll($this->folder);
- }
- self::$tempStorage = null;
- parent::tearDown();
- }
- /**
- * @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 = \OCA\Files_Sharing\API\Local::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 = \OCA\Files_Sharing\API\Local::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']));
- // check for correct link
- $url = \OC::$server->getURLGenerator()->getAbsoluteURL('/index.php/s/' . $data['token']);
- $this->assertEquals($url, $data['url']);
- $share = $this->getShareFromId($data['id']);
- $items = \OCP\Share::getItemShared('file', $share['item_source']);
- $this->assertTrue(!empty($items));
- $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);
- \OCP\Share::unshare('folder', $fileinfo['fileid'], \OCP\Share::SHARE_TYPE_LINK, null);
- }
- /**
- * @medium
- */
- public function testCreateShareInvalidPermissions() {
- // 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;
- $_POST['permissions'] = \OCP\Constants::PERMISSION_SHARE;
- $result = \OCA\Files_Sharing\API\Local::createShare([]);
- // share was successful?
- $this->assertFalse($result->succeeded());
- $this->assertEquals(400, $result->getStatusCode());
- $shares = \OCP\Share::getItemShared('file', null);
- $this->assertCount(0, $shares);
- $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);
- }
- function testEnfoceLinkPassword() {
- $appConfig = \OC::$server->getAppConfig();
- $appConfig->setValue('core', 'shareapi_enforce_links_password', 'yes');
- // don't allow to share link without a password
- $_POST['path'] = $this->folder;
- $_POST['shareType'] = \OCP\Share::SHARE_TYPE_LINK;
- $result = \OCA\Files_Sharing\API\Local::createShare(array());
- $this->assertFalse($result->succeeded());
- // don't allow to share link without a empty password
- $_POST['path'] = $this->folder;
- $_POST['shareType'] = \OCP\Share::SHARE_TYPE_LINK;
- $_POST['password'] = '';
- $result = \OCA\Files_Sharing\API\Local::createShare(array());
- $this->assertFalse($result->succeeded());
- // share with password should succeed
- $_POST['path'] = $this->folder;
- $_POST['shareType'] = \OCP\Share::SHARE_TYPE_LINK;
- $_POST['password'] = 'foo';
- $result = \OCA\Files_Sharing\API\Local::createShare(array());
- $this->assertTrue($result->succeeded());
- $data = $result->getData();
- // setting new password should succeed
- $params = array();
- $params['id'] = $data['id'];
- $params['_put'] = array();
- $params['_put']['password'] = 'bar';
- $result = \OCA\Files_Sharing\API\Local::updateShare($params);
- $this->assertTrue($result->succeeded());
- // removing password should fail
- $params = array();
- $params['id'] = $data['id'];
- $params['_put'] = array();
- $params['_put']['password'] = '';
- $result = \OCA\Files_Sharing\API\Local::updateShare($params);
- $this->assertFalse($result->succeeded());
- // cleanup
- $fileinfo = $this->view->getFileInfo($this->folder);
- \OCP\Share::unshare('folder', $fileinfo['fileid'], \OCP\Share::SHARE_TYPE_LINK, null);
- $appConfig->setValue('core', 'shareapi_enforce_links_password', 'no');
- }
- /**
- * @medium
- */
- function testSharePermissions() {
- // sharing file to a user should work if shareapi_exclude_groups is set
- // to no
- \OC::$server->getAppConfig()->setValue('core', 'shareapi_exclude_groups', 'no');
- $_POST['path'] = $this->filename;
- $_POST['shareWith'] = \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2;
- $_POST['shareType'] = \OCP\Share::SHARE_TYPE_USER;
- $result = \OCA\Files_Sharing\API\Local::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));
- $fileinfo = $this->view->getFileInfo($this->filename);
- $result = \OCP\Share::unshare('file', $fileinfo['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
- $this->assertTrue($result);
- // exclude groups, but not the group the user belongs to. Sharing should still work
- \OC::$server->getAppConfig()->setValue('core', 'shareapi_exclude_groups', 'yes');
- \OC::$server->getAppConfig()->setValue('core', 'shareapi_exclude_groups_list', 'admin,group1,group2');
- $_POST['path'] = $this->filename;
- $_POST['shareWith'] = \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2;
- $_POST['shareType'] = \OCP\Share::SHARE_TYPE_USER;
- $result = \OCA\Files_Sharing\API\Local::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));
- $fileinfo = $this->view->getFileInfo($this->filename);
- $result = \OCP\Share::unshare('file', $fileinfo['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
- $this->assertTrue($result);
- // now we exclude the group the user belongs to ('group'), sharing should fail now
- \OC::$server->getAppConfig()->setValue('core', 'shareapi_exclude_groups_list', 'admin,group');
- $_POST['path'] = $this->filename;
- $_POST['shareWith'] = \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2;
- $_POST['shareType'] = \OCP\Share::SHARE_TYPE_USER;
- $result = \OCA\Files_Sharing\API\Local::createShare(array());
- $this->assertFalse($result->succeeded());
- // cleanup
- \OC::$server->getAppConfig()->setValue('core', 'shareapi_exclude_groups', 'no');
- \OC::$server->getAppConfig()->setValue('core', 'shareapi_exclude_groups_list', '');
- }
- /**
- * @medium
- * @depends testCreateShare
- */
- function testGetAllShares() {
- $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);
- $result = \OCA\Files_Sharing\API\Local::getAllShares(array());
- $this->assertTrue($result->succeeded());
- // test should return two shares created from testCreateShare()
- $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);
- }
- function testGetAllSharesWithMe() {
- $fileinfo1 = $this->view->getFileInfo($this->filename);
- $fileinfo2 = $this->view->getFileInfo($this->folder.$this->filename);
- \OCP\Share::shareItem('file', $fileinfo1['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31);
- \OCP\Share::shareItem('folder', $fileinfo2['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31);
- self::loginHelper(self::TEST_FILES_SHARING_API_USER2);
- $_GET['shared_with_me'] = 1;
- $result = \OCA\Files_Sharing\API\Local::getAllShares(array());
- $this->assertTrue($result->succeeded());
- $this->assertTrue(count($result->getData()) === 2);
- self::loginHelper(self::TEST_FILES_SHARING_API_USER1);
- \OCP\Share::unshare('file', $fileinfo1['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
- \OCP\Share::unshare('folder', $fileinfo2['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
- }
- /**
- * @medium
- * @depends testCreateShare
- */
- function testPublicLinkUrl() {
- // simulate a post request
- $_POST['path'] = $this->folder;
- $_POST['shareType'] = \OCP\Share::SHARE_TYPE_LINK;
- $result = \OCA\Files_Sharing\API\Local::createShare([]);
- $this->assertTrue($result->succeeded());
- $data = $result->getData();
- // 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
- $result = \OCA\Files_Sharing\API\Local::getAllShares([]);
- $this->assertTrue($result->succeeded());
- $data = $result->getData();
- $this->assertEquals($url, current($data)['url']);
- // check for path
- $_GET['path'] = $this->folder;
- $result = \OCA\Files_Sharing\API\Local::getAllShares([]);
- $this->assertTrue($result->succeeded());
- $data = $result->getData();
- $this->assertEquals($url, current($data)['url']);
- // check in share id
- $result = \OCA\Files_Sharing\API\Local::getShare(['id' => $id]);
- $this->assertTrue($result->succeeded());
- $data = $result->getData();
- $this->assertEquals($url, current($data)['url']);
- //Clean up share
- $fileinfo = $this->view->getFileInfo($this->folder);
- \OCP\Share::unshare('folder', $fileinfo['fileid'], \OCP\Share::SHARE_TYPE_LINK, null);
- }
- /**
- * @medium
- * @depends testCreateShare
- */
- function testGetShareFromSource() {
- $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);
- $_GET['path'] = $this->filename;
- $result = \OCA\Files_Sharing\API\Local::getAllShares(array());
- $this->assertTrue($result->succeeded());
- // test should return one share created from testCreateShare()
- $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);
- }
- /**
- * @medium
- * @depends testCreateShare
- */
- function testGetShareFromSourceWithReshares() {
- $fileInfo = $this->view->getFileInfo($this->filename);
- // share the file as user1 to user2
- \OCP\Share::shareItem('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31);
- // login as user2 and reshare the file to user3
- \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
- \OCP\Share::shareItem('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER3, 31);
- // login as user1 again
- \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1);
- $_GET['path'] = $this->filename;
- $result = \OCA\Files_Sharing\API\Local::getAllShares(array());
- $this->assertTrue($result->succeeded());
- // test should return one share
- $this->assertTrue(count($result->getData()) === 1);
- // now also ask for the reshares
- $_GET['reshares'] = 'true';
- $result = \OCA\Files_Sharing\API\Local::getAllShares(array());
- $this->assertTrue($result->succeeded());
- // now we should get two shares, the initial share and the reshare
- $this->assertTrue(count($result->getData()) === 2);
- // unshare files again
- \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
- \OCP\Share::unshare('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER3);
- \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1);
- \OCP\Share::unshare('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
- }
- /**
- * @medium
- * @depends testCreateShare
- */
- function testGetShareFromId() {
- $fileInfo = $this->view->getFileInfo($this->filename);
- $result = \OCP\Share::shareItem('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31);
- // share was successful?
- $this->assertTrue($result);
- // get item to determine share ID
- $result = \OCP\Share::getItemShared('file', $fileInfo['fileid']);
- $this->assertEquals(1, count($result));
- // get first element
- $share = reset($result);
- // call getShare() with share ID
- $params = array('id' => $share['id']);
- $result = \OCA\Files_Sharing\API\Local::getShare($params);
- $this->assertTrue($result->succeeded());
- // test should return one share created from testCreateShare()
- $this->assertEquals(1, count($result->getData()));
- \OCP\Share::unshare('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
- }
- /**
- * @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);
- $result = \OCP\Share::shareItem('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_LINK,
- null, 1);
- // share was successful?
- $this->assertTrue(is_string($result));
- $_GET['path'] = $this->folder;
- $_GET['subfiles'] = 'true';
- $result = \OCA\Files_Sharing\API\Local::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);
- \OCP\Share::unshare('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_LINK, null);
- }
- function testGetShareFromFolderWithFile() {
- $fileInfo1 = $this->view->getFileInfo($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);
- $_GET = [
- 'path' => $this->filename,
- 'subfiles' => 1
- ];
- $result = \OCA\Files_Sharing\API\Local::getAllShares([]);
- $this->assertFalse($result->succeeded());
- $this->assertEquals(400, $result->getStatusCode());
- $this->assertEquals('not a directory', $result->getMeta()['message']);
- \OCP\Share::unshare('file', $fileInfo1['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
- }
- /**
- * share a folder, than reshare a file within the shared folder and check if we construct the correct path
- * @medium
- */
- function testGetShareFromFolderReshares() {
- self::loginHelper(self::TEST_FILES_SHARING_API_USER1);
- $fileInfo1 = $this->view->getFileInfo($this->folder);
- $fileInfo2 = $this->view->getFileInfo($this->folder.'/'.$this->filename);
- $fileInfo3 = $this->view->getFileInfo($this->folder.'/' . $this->subfolder . '/' .$this->filename);
- // share root folder to user2
- $result = \OCP\Share::shareItem('folder', $fileInfo1['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31);
- // share was successful?
- $this->assertTrue($result);
- // login as user2
- self::loginHelper(self::TEST_FILES_SHARING_API_USER2);
- // share file in root folder
- $result = \OCP\Share::shareItem('file', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_LINK, null, 1);
- // share was successful?
- $this->assertTrue(is_string($result));
- // share file in subfolder
- $result = \OCP\Share::shareItem('file', $fileInfo3['fileid'], \OCP\Share::SHARE_TYPE_LINK, null, 1);
- // share was successful?
- $this->assertTrue(is_string($result));
- $testValues=array(
- array('query' => $this->folder,
- 'expectedResult' => $this->folder . $this->filename),
- array('query' => $this->folder . $this->subfolder,
- 'expectedResult' => $this->folder . $this->subfolder . $this->filename),
- );
- foreach ($testValues as $value) {
- $_GET['path'] = $value['query'];
- $_GET['subfiles'] = 'true';
- $result = \OCA\Files_Sharing\API\Local::getAllShares(array());
- $this->assertTrue($result->succeeded());
- // test should return one share within $this->folder
- $data = $result->getData();
- $this->assertEquals($value['expectedResult'], $data[0]['path']);
- }
- // cleanup
- \OCP\Share::unshare('file', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_LINK, null);
- \OCP\Share::unshare('file', $fileInfo3['fileid'], \OCP\Share::SHARE_TYPE_LINK, null);
- self::loginHelper(self::TEST_FILES_SHARING_API_USER1);
- \OCP\Share::unshare('folder', $fileInfo1['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
- }
- /**
- * reshare a sub folder and check if we get the correct path
- * @medium
- */
- function testGetShareFromSubFolderReShares() {
- self::loginHelper(self::TEST_FILES_SHARING_API_USER1);
- $fileInfo = $this->view->getFileInfo($this->folder . $this->subfolder);
- // share sub-folder to user2
- $result = \OCP\Share::shareItem('folder', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31);
- // share was successful?
- $this->assertTrue($result);
- // login as user2
- self::loginHelper(self::TEST_FILES_SHARING_API_USER2);
- // reshare subfolder
- $result = \OCP\Share::shareItem('folder', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_LINK, null, 1);
- // share was successful?
- $this->assertTrue(is_string($result));
- $_GET['path'] = '/';
- $_GET['subfiles'] = 'true';
- $result = \OCA\Files_Sharing\API\Local::getAllShares(array());
- $this->assertTrue($result->succeeded());
- // test should return one share within $this->folder
- $data = $result->getData();
- // we should get exactly one result
- $this->assertEquals(1, count($data));
- $expectedPath = $this->subfolder;
- $this->assertEquals($expectedPath, $data[0]['path']);
- // cleanup
- $result = \OCP\Share::unshare('folder', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_LINK, null);
- $this->assertTrue($result);
- self::loginHelper(self::TEST_FILES_SHARING_API_USER1);
- $result = \OCP\Share::unshare('folder', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
- $this->assertTrue($result);
- }
- /**
- * test re-re-share of folder if the path gets constructed correctly
- * @medium
- */
- function testGetShareFromFolderReReShares() {
- self::loginHelper(self::TEST_FILES_SHARING_API_USER1);
- $fileInfo1 = $this->view->getFileInfo($this->folder . $this->subfolder);
- $fileInfo2 = $this->view->getFileInfo($this->folder . $this->subfolder . $this->subsubfolder);
- // share sub-folder to user2
- $result = \OCP\Share::shareItem('folder', $fileInfo1['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31);
- // share was successful?
- $this->assertTrue($result);
- // login as user2
- self::loginHelper(self::TEST_FILES_SHARING_API_USER2);
- // reshare subsubfolder
- $result = \OCP\Share::shareItem('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER3, 31);
- // share was successful?
- $this->assertTrue($result);
- // login as user3
- self::loginHelper(self::TEST_FILES_SHARING_API_USER3);
- $result = \OCP\Share::shareItem('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_LINK, null, 1);
- // share was successful?
- $this->assertTrue(is_string($result));
- $_GET['path'] = '/';
- $_GET['subfiles'] = 'true';
- $result = \OCA\Files_Sharing\API\Local::getAllShares(array());
- $this->assertTrue($result->succeeded());
- // test should return one share within $this->folder
- $data = $result->getData();
- // we should get exactly one result
- $this->assertEquals(1, count($data));
- $expectedPath = $this->subsubfolder;
- $this->assertEquals($expectedPath, $data[0]['path']);
- // cleanup
- $result = \OCP\Share::unshare('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_LINK, null);
- $this->assertTrue($result);
- self::loginHelper(self::TEST_FILES_SHARING_API_USER2);
- $result = \OCP\Share::unshare('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER3);
- $this->assertTrue($result);
- self::loginHelper(self::TEST_FILES_SHARING_API_USER1);
- $result = \OCP\Share::unshare('folder', $fileInfo1['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
- $this->assertTrue($result);
- }
- /**
- * test multiple shared folder if the path gets constructed correctly
- * @medium
- */
- function testGetShareMultipleSharedFolder() {
- self::loginHelper(self::TEST_FILES_SHARING_API_USER1);
- $fileInfo1 = $this->view->getFileInfo($this->folder);
- $fileInfo2 = $this->view->getFileInfo($this->folder . $this->subfolder);
- // share sub-folder to user2
- $result = \OCP\Share::shareItem('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31);
- // share was successful?
- $this->assertTrue($result);
- // share folder to user2
- $result = \OCP\Share::shareItem('folder', $fileInfo1['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31);
- // share was successful?
- $this->assertTrue($result);
- // login as user2
- self::loginHelper(self::TEST_FILES_SHARING_API_USER2);
- $result = \OCP\Share::shareItem('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_LINK, null, 1);
- // share was successful?
- $this->assertTrue(is_string($result));
- // ask for subfolder
- $expectedPath1 = $this->subfolder;
- $_GET['path'] = $expectedPath1;
- $result1 = \OCA\Files_Sharing\API\Local::getAllShares(array());
- $this->assertTrue($result1->succeeded());
- // test should return one share within $this->folder
- $data1 = $result1->getData();
- $share1 = reset($data1);
- // ask for folder/subfolder
- $expectedPath2 = $this->folder . $this->subfolder;
- $_GET['path'] = $expectedPath2;
- $result2 = \OCA\Files_Sharing\API\Local::getAllShares(array());
- $this->assertTrue($result2->succeeded());
- // test should return one share within $this->folder
- $data2 = $result2->getData();
- $share2 = reset($data2);
- // validate results
- // we should get exactly one result each time
- $this->assertEquals(1, count($data1));
- $this->assertEquals(1, count($data2));
- $this->assertEquals($expectedPath1, $share1['path']);
- $this->assertEquals($expectedPath2, $share2['path']);
- // cleanup
- $result = \OCP\Share::unshare('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_LINK, null);
- $this->assertTrue($result);
- self::loginHelper(self::TEST_FILES_SHARING_API_USER1);
- $result = \OCP\Share::unshare('folder', $fileInfo1['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
- $this->assertTrue($result);
- $result = \OCP\Share::unshare('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
- $this->assertTrue($result);
- }
- /**
- * test re-re-share of folder if the path gets constructed correctly
- * @medium
- */
- function testGetShareFromFileReReShares() {
- self::loginHelper(self::TEST_FILES_SHARING_API_USER1);
- $fileInfo1 = $this->view->getFileInfo($this->folder . $this->subfolder);
- $fileInfo2 = $this->view->getFileInfo($this->folder. $this->subfolder . $this->filename);
- // share sub-folder to user2
- $result = \OCP\Share::shareItem('folder', $fileInfo1['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31);
- // share was successful?
- $this->assertTrue($result);
- // login as user2
- self::loginHelper(self::TEST_FILES_SHARING_API_USER2);
- // reshare subsubfolder
- $result = \OCP\Share::shareItem('file', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER3, 31);
- // share was successful?
- $this->assertTrue($result);
- // login as user3
- self::loginHelper(self::TEST_FILES_SHARING_API_USER3);
- $result = \OCP\Share::shareItem('file', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_LINK, null, 1);
- // share was successful?
- $this->assertTrue(is_string($result));
- $_GET['path'] = '/';
- $_GET['subfiles'] = 'true';
- $result = \OCA\Files_Sharing\API\Local::getAllShares(array());
- $this->assertTrue($result->succeeded());
- // test should return one share within $this->folder
- $data = $result->getData();
- // we should get exactly one result
- $this->assertEquals(1, count($data));
- $expectedPath = $this->filename;
- $this->assertEquals($expectedPath, $data[0]['path']);
- // cleanup
- $result = \OCP\Share::unshare('file', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_LINK, null);
- $this->assertTrue($result);
- self::loginHelper(self::TEST_FILES_SHARING_API_USER2);
- $result = \OCP\Share::unshare('file', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER3);
- $this->assertTrue($result);
- self::loginHelper(self::TEST_FILES_SHARING_API_USER1);
- $result = \OCP\Share::unshare('folder', $fileInfo1['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
- $this->assertTrue($result);
- }
- /**
- * @medium
- */
- function testGetShareFromUnknownId() {
- $params = array('id' => 0);
- $result = \OCA\Files_Sharing\API\Local::getShare($params);
- $this->assertEquals(404, $result->getStatusCode());
- $meta = $result->getMeta();
- $this->assertEquals('share doesn\'t exist', $meta['message']);
- }
- /**
- * @medium
- * @depends testCreateShare
- */
- function testUpdateShare() {
- $fileInfo = $this->view->getFileInfo($this->filename);
- $result = \OCP\Share::shareItem('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, \OCP\Constants::PERMISSION_ALL);
- // share was successful?
- $this->assertTrue($result);
- $result = \OCP\Share::shareItem('file', $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), 2);
- $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));
- // check if share have expected permissions, single shared files never have
- // delete permissions
- $this->assertEquals(\OCP\Constants::PERMISSION_ALL & ~\OCP\Constants::PERMISSION_DELETE, $userShare['permissions']);
- // update permissions
- $params = array();
- $params['id'] = $userShare['id'];
- $params['_put'] = array();
- $params['_put']['permissions'] = 1;
- $result = \OCA\Files_Sharing\API\Local::updateShare($params);
- $meta = $result->getMeta();
- $this->assertTrue($result->succeeded(), $meta['message']);
- $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));
- $this->assertEquals('1', $newUserShare['permissions']);
- // 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 = \OCA\Files_Sharing\API\Local::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']));
- // Remove password for link share
- $params = array();
- $params['id'] = $linkShare['id'];
- $params['_put'] = array();
- $params['_put']['password'] = '';
- $result = \OCA\Files_Sharing\API\Local::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']));
- \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);
- }
- /**
- * @medium
- * @depends testCreateShare
- */
- public function testUpdateShareInvalidPermissions() {
- $fileInfo = $this->view->getFileInfo($this->filename);
- $result = \OCP\Share::shareItem('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, \OCP\Constants::PERMISSION_ALL);
- // share was successful?
- $this->assertTrue($result);
- $share = \OCP\Share::getItemShared('file', null);
- $this->assertCount(1, $share);
- $share = reset($share);
- // check if share have expected permissions, single shared files never have
- // delete permissions
- $this->assertEquals(\OCP\Constants::PERMISSION_ALL & ~\OCP\Constants::PERMISSION_DELETE, $share['permissions']);
- // update permissions
- $params = [];
- $params['id'] = $share['id'];
- $params['_put'] = [];
- $params['_put']['permissions'] = \OCP\Constants::PERMISSION_SHARE;
- $result = \OCA\Files_Sharing\API\Local::updateShare($params);
- //Updating should fail with 400
- $this->assertFalse($result->succeeded());
- $this->assertEquals(400, $result->getStatusCode());
- $share = \OCP\Share::getItemShared('file', $share['file_source']);
- $share = reset($share);
- //Permissions should not have changed!
- $this->assertEquals(\OCP\Constants::PERMISSION_ALL & ~\OCP\Constants::PERMISSION_DELETE, $share['permissions']);
- \OCP\Share::unshare('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
- }
- /**
- * @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(1, count($items));
- $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();
- $params['_put']['publicUpload'] = 'true';
- $result = \OCA\Files_Sharing\API\Local::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);
- }
- /**
- * @medium
- */
- function testUpdateShareExpireDate() {
- $fileInfo = $this->view->getFileInfo($this->folder);
- $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');
- $dateWithinRange = new \DateTime();
- $dateWithinRange->add(new \DateInterval('P5D'));
- $dateOutOfRange = new \DateTime();
- $dateOutOfRange->add(new \DateInterval('P8D'));
- $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
- $this->assertEquals(1, count($items));
- $linkShare = reset($items);
- // update expire date to a valid value
- $params = array();
- $params['id'] = $linkShare['id'];
- $params['_put'] = array();
- $params['_put']['expireDate'] = $dateWithinRange->format('Y-m-d');
- $result = \OCA\Files_Sharing\API\Local::updateShare($params);
- $this->assertTrue($result->succeeded());
- $items = \OCP\Share::getItemShared('file', $linkShare['file_source']);
- $updatedLinkShare = reset($items);
- // date should be changed
- $this->assertTrue(is_array($updatedLinkShare));
- $this->assertEquals($dateWithinRange->format('Y-m-d') . ' 00:00:00', $updatedLinkShare['expiration']);
- // update expire date to a value out of range
- $params = array();
- $params['id'] = $linkShare['id'];
- $params['_put'] = array();
- $params['_put']['expireDate'] = $dateOutOfRange->format('Y-m-d');
- $result = \OCA\Files_Sharing\API\Local::updateShare($params);
- $this->assertFalse($result->succeeded());
- $items = \OCP\Share::getItemShared('file', $linkShare['file_source']);
- $updatedLinkShare = reset($items);
- // date shouldn't be changed
- $this->assertTrue(is_array($updatedLinkShare));
- $this->assertEquals($dateWithinRange->format('Y-m-d') . ' 00:00:00', $updatedLinkShare['expiration']);
- // Try to remove expire date
- $params = array();
- $params['id'] = $linkShare['id'];
- $params['_put'] = ['expireDate' => ''];
- $result = \OCA\Files_Sharing\API\Local::updateShare($params);
- $this->assertFalse($result->succeeded());
- $items = \OCP\Share::getItemShared('file', $linkShare['file_source']);
- $updatedLinkShare = reset($items);
- // date shouldn't be changed
- $this->assertTrue(is_array($updatedLinkShare));
- $this->assertEquals($dateWithinRange->format('Y-m-d') . ' 00:00:00', $updatedLinkShare['expiration']);
- // cleanup
- $config->setAppValue('core', 'shareapi_default_expire_date', 'no');
- $config->setAppValue('core', 'shareapi_enforce_expire_date', 'no');
- \OCP\Share::unshare('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_LINK, null);
- }
- /**
- * @medium
- * @depends testCreateShare
- */
- function testDeleteShare() {
- $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);
- $items = \OCP\Share::getItemShared('file', null);
- $this->assertEquals(2, count($items));
- foreach ($items as $item) {
- $result = \OCA\Files_Sharing\API\Local::deleteShare(array('id' => $item['id']));
- $this->assertTrue($result->succeeded());
- }
- $itemsAfterDelete = \OCP\Share::getItemShared('file', null);
- $this->assertTrue(empty($itemsAfterDelete));
- }
- /**
- * test unshare of a reshared file
- */
- function testDeleteReshare() {
- // user 1 shares a folder with user2
- \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1);
- $fileInfo1 = $this->view->getFileInfo($this->folder);
- $fileInfo2 = $this->view->getFileInfo($this->folder.'/'.$this->filename);
- $result1 = \OCP\Share::shareItem('folder', $fileInfo1['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31);
- $this->assertTrue($result1);
- // user2 shares a file from the folder as link
- \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
- $result2 = \OCP\Share::shareItem('file', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_LINK, null, 1);
- $this->assertTrue(is_string($result2));
- // test if we can unshare the link again
- $items = \OCP\Share::getItemShared('file', null);
- $this->assertEquals(1, count($items));
- $item = reset($items);
- $result3 = \OCA\Files_Sharing\API\Local::deleteShare(array('id' => $item['id']));
- $this->assertTrue($result3->succeeded());
- // cleanup
- \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1);
- $result = \OCP\Share::unshare('folder', $fileInfo1['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
- $this->assertTrue($result);
- }
- /**
- * share a folder which contains a share mount point, should be forbidden
- */
- public function testShareFolderWithAMountPoint() {
- // user 1 shares a folder with user2
- \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1);
- $fileInfo = $this->view->getFileInfo($this->folder);
- $result = \OCP\Share::shareItem('folder', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31);
- $this->assertTrue($result);
- // user2 shares a file from the folder as link
- \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
- $view = new \OC\Files\View('/' . \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2 . '/files');
- $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);
- try {
- $result2 = \OCP\Share::shareItem('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER3, 31);
- } catch (\Exception $e) {
- $result2 = false;
- }
- $this->assertFalse($result2);
- //cleanup
- $result = $view->rename('localDir/' . $this->folder, $this->folder);
- $this->assertTrue($result !== false);
- $view->unlink('localDir');
- \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1);
- \OCP\Share::unshare('folder', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
- }
- /**
- * Post init mount points hook for mounting simulated ext storage
- */
- public static function initTestMountPointsHook($data) {
- if ($data['user'] === \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1) {
- \OC\Files\Filesystem::mount(self::$tempStorage, array(), '/' . \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1 . '/files' . self::TEST_FOLDER_NAME);
- }
- }
- /**
- * Tests mounting a folder that is an external storage mount point.
- */
- public function testShareStorageMountPoint() {
- self::$tempStorage = new \OC\Files\Storage\Temporary(array());
- self::$tempStorage->file_put_contents('test.txt', 'abcdef');
- self::$tempStorage->getScanner()->scan('');
- // needed because the sharing code sometimes switches the user internally and mounts the user's
- // storages. In our case the temp storage isn't mounted automatically, so doing it in the post hook
- // (similar to how ext storage works)
- OCP\Util::connectHook('OC_Filesystem', 'post_initMountPoints', '\Test_Files_Sharing_Api', 'initTestMountPointsHook');
- // logging in will auto-mount the temp storage for user1 as well
- \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1);
- $fileInfo = $this->view->getFileInfo($this->folder);
- // user 1 shares the mount point folder with user2
- $result = \OCP\Share::shareItem('folder', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31);
- $this->assertTrue($result);
- // user2: check that mount point name appears correctly
- \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
- $view = new \OC\Files\View('/' . \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2 . '/files');
- $this->assertTrue($view->file_exists($this->folder));
- $this->assertTrue($view->file_exists($this->folder . '/test.txt'));
- \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1);
- \OCP\Share::unshare('folder', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER,
- \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
- \OC_Hook::clear('OC_Filesystem', 'post_initMountPoints', '\Test_Files_Sharing_Api', 'initTestMountPointsHook');
- }
- /**
- * @expectedException \Exception
- */
- public function testShareNonExisting() {
- \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1);
- $id = PHP_INT_MAX - 1;
- \OCP\Share::shareItem('file', $id, \OCP\Share::SHARE_TYPE_LINK, \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31);
- }
- /**
- * @expectedException \Exception
- */
- public function testShareNotOwner() {
- \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
- \OC\Files\Filesystem::file_put_contents('foo.txt', 'bar');
- $info = \OC\Files\Filesystem::getFileInfo('foo.txt');
- \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1);
- \OCP\Share::shareItem('file', $info->getId(), \OCP\Share::SHARE_TYPE_LINK, \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31);
- }
- public function testDefaultExpireDate() {
- \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1);
- // 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');
- // 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);
- $info = OC\Files\Filesystem::getFileInfo($this->filename);
- $this->assertTrue($info instanceof \OC\Files\FileInfo);
- $result = \OCP\Share::shareItem('file', $info->getId(), \OCP\Share::SHARE_TYPE_LINK, null, \OCP\Constants::PERMISSION_READ);
- $this->assertTrue(is_string($result));
- $result = \OCP\Share::shareItem('file', $info->getId(), \OCP\Share::SHARE_TYPE_USER, \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31);
- $this->assertTrue($result);
- $result = \OCP\Share::setExpirationDate('file', $info->getId() , $expireDate, $now);
- $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
- $result = \OCP\Share::unshare('file', $info->getId(), \OCP\Share::SHARE_TYPE_USER, \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
- $this->assertTrue($result);
- $config->setAppValue('core', 'shareapi_default_expire_date', 'no');
- $config->setAppValue('core', 'shareapi_enforce_expire_date', 'no');
- }
- }
|