2014-04-30 18:56:09 +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>
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
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-07-21 17:49:16 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2014-04-30 18:56:09 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
2014-04-30 18:56:09 +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.
|
2014-04-30 18:56:09 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2014-04-30 18:56:09 +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.
|
2014-04-30 18:56:09 +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,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2014-04-30 18:56:09 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2016-05-17 12:42:03 +03:00
|
|
|
namespace OCA\Files_Sharing\Tests;
|
2014-04-30 18:56:09 +04:00
|
|
|
|
2020-06-24 17:49:16 +03:00
|
|
|
use OCP\Share\IShare;
|
|
|
|
|
2015-11-03 03:52:41 +03:00
|
|
|
/**
|
2016-05-17 12:42:03 +03:00
|
|
|
* Class UnshareChildrenTest
|
2015-11-03 03:52:41 +03:00
|
|
|
*
|
|
|
|
* @group DB
|
|
|
|
*
|
2016-05-17 12:42:03 +03:00
|
|
|
* @package OCA\Files_Sharing\Tests
|
2015-11-03 03:52:41 +03:00
|
|
|
*/
|
2016-05-17 12:42:03 +03:00
|
|
|
class UnshareChildrenTest extends TestCase {
|
2015-03-18 17:16:55 +03:00
|
|
|
protected $subsubfolder;
|
2014-04-30 18:56:09 +04:00
|
|
|
|
2020-04-10 17:54:27 +03:00
|
|
|
public const TEST_FOLDER_NAME = '/folder_share_api_test';
|
2014-04-30 18:56:09 +04:00
|
|
|
|
|
|
|
private static $tempStorage;
|
|
|
|
|
2019-11-21 18:40:38 +03:00
|
|
|
protected function setUp(): void {
|
2014-04-30 18:56:09 +04:00
|
|
|
parent::setUp();
|
|
|
|
|
2015-03-18 17:26:04 +03:00
|
|
|
\OCP\Util::connectHook('OC_Filesystem', 'post_delete', '\OCA\Files_Sharing\Hooks', 'unshareChildren');
|
2014-04-30 18:56:09 +04:00
|
|
|
|
|
|
|
$this->folder = self::TEST_FOLDER_NAME;
|
2015-06-24 18:39:22 +03:00
|
|
|
$this->subfolder = '/subfolder_share_api_test';
|
2014-04-30 18:56:09 +04:00
|
|
|
$this->subsubfolder = '/subsubfolder_share_api_test';
|
|
|
|
|
|
|
|
$this->filename = '/share-api-test';
|
|
|
|
|
|
|
|
// save file with content
|
|
|
|
$this->view->mkdir($this->folder);
|
|
|
|
$this->view->mkdir($this->folder . $this->subfolder);
|
|
|
|
$this->view->mkdir($this->folder . $this->subfolder . $this->subsubfolder);
|
2015-06-24 18:39:22 +03:00
|
|
|
$this->view->file_put_contents($this->folder . $this->filename, $this->data);
|
2014-04-30 18:56:09 +04:00
|
|
|
$this->view->file_put_contents($this->folder . $this->subfolder . $this->filename, $this->data);
|
|
|
|
}
|
|
|
|
|
2019-11-21 18:40:38 +03:00
|
|
|
protected function tearDown(): void {
|
2015-06-24 18:39:22 +03:00
|
|
|
if ($this->view) {
|
|
|
|
$this->view->deleteAll($this->folder);
|
|
|
|
}
|
2014-04-30 18:56:09 +04:00
|
|
|
|
|
|
|
self::$tempStorage = null;
|
|
|
|
|
|
|
|
parent::tearDown();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @medium
|
|
|
|
*/
|
2017-07-24 08:44:09 +03:00
|
|
|
public function testUnshareChildren() {
|
2014-04-30 18:56:09 +04:00
|
|
|
$fileInfo2 = \OC\Files\Filesystem::getFileInfo($this->folder);
|
|
|
|
|
2016-04-15 10:02:17 +03:00
|
|
|
$this->share(
|
2020-06-24 17:49:16 +03:00
|
|
|
IShare::TYPE_USER,
|
2016-04-15 10:02:17 +03:00
|
|
|
$this->folder,
|
2021-05-26 15:01:11 +03:00
|
|
|
$this->TEST_FILES_SHARING_API_USER1,
|
|
|
|
$this->TEST_FILES_SHARING_API_USER2,
|
2016-04-15 10:02:17 +03:00
|
|
|
\OCP\Constants::PERMISSION_ALL
|
|
|
|
);
|
2014-04-30 18:56:09 +04:00
|
|
|
|
2021-05-26 15:01:11 +03:00
|
|
|
self::loginHelper($this->TEST_FILES_SHARING_API_USER2);
|
2014-04-30 18:56:09 +04:00
|
|
|
|
2014-07-02 16:40:22 +04:00
|
|
|
// one folder should be shared with the user
|
2021-05-26 15:01:11 +03:00
|
|
|
$shares = $this->shareManager->getSharedWith($this->TEST_FILES_SHARING_API_USER2, IShare::TYPE_USER);
|
2016-04-15 10:02:17 +03:00
|
|
|
$this->assertCount(1, $shares);
|
2014-07-02 16:40:22 +04:00
|
|
|
|
|
|
|
// move shared folder to 'localDir'
|
2014-04-30 18:56:09 +04:00
|
|
|
\OC\Files\Filesystem::mkdir('localDir');
|
2014-07-02 16:40:22 +04:00
|
|
|
$result = \OC\Files\Filesystem::rename($this->folder, '/localDir/' . $this->folder);
|
2014-04-30 18:56:09 +04:00
|
|
|
$this->assertTrue($result);
|
|
|
|
|
|
|
|
\OC\Files\Filesystem::unlink('localDir');
|
|
|
|
|
2021-05-26 15:01:11 +03:00
|
|
|
self::loginHelper($this->TEST_FILES_SHARING_API_USER2);
|
2014-04-30 18:56:09 +04:00
|
|
|
|
2014-07-02 16:40:22 +04:00
|
|
|
// after the parent directory was deleted the share should be unshared
|
2021-05-26 15:01:11 +03:00
|
|
|
$shares = $this->shareManager->getSharedWith($this->TEST_FILES_SHARING_API_USER2, IShare::TYPE_USER);
|
2016-04-15 10:02:17 +03:00
|
|
|
$this->assertEmpty($shares);
|
2014-07-02 16:40:22 +04:00
|
|
|
|
2021-05-26 15:01:11 +03:00
|
|
|
self::loginHelper($this->TEST_FILES_SHARING_API_USER1);
|
2014-07-02 16:40:22 +04:00
|
|
|
|
|
|
|
// the folder for the owner should still exists
|
|
|
|
$this->assertTrue(\OC\Files\Filesystem::file_exists($this->folder));
|
2014-04-30 18:56:09 +04:00
|
|
|
}
|
|
|
|
}
|