aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2024-10-14 17:23:29 +0200
committerCôme Chilliet <come.chilliet@nextcloud.com>2024-10-14 17:23:29 +0200
commitd6ba52426351e10abb2b34c80c8f00da63afc32b (patch)
tree58b2d223e03b7df0baa5632848a8c45855d4c338 /tests/lib
parente584e9baf744149649147cf45bab3c5218a31d4e (diff)
downloadnextcloud-server-fix/avoid-invalid-share-on-transfer-ownership.tar.gz
nextcloud-server-fix/avoid-invalid-share-on-transfer-ownership.zip
fix: Use getRelativePath method to check if node is inside folderfix/avoid-invalid-share-on-transfer-ownership
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'tests/lib')
-rw-r--r--tests/lib/Share20/ManagerTest.php24
1 files changed, 14 insertions, 10 deletions
diff --git a/tests/lib/Share20/ManagerTest.php b/tests/lib/Share20/ManagerTest.php
index c739e2e8851..a4c1dd3803d 100644
--- a/tests/lib/Share20/ManagerTest.php
+++ b/tests/lib/Share20/ManagerTest.php
@@ -9,6 +9,7 @@ namespace Test\Share20;
use DateTimeZone;
use OC\Files\Mount\MoveableMount;
+use OC\Files\Utils\PathHelper;
use OC\KnownUser\KnownUserService;
use OC\Share20\DefaultShareProvider;
use OC\Share20\Exception;
@@ -199,6 +200,14 @@ class ManagerTest extends \Test\TestCase {
]);
}
+ private function createFolderMock(string $folderPath): MockObject&Folder {
+ $folder = $this->createMock(Folder::class);
+ $folder->method('getPath')->willReturn($folderPath);
+ $folder->method('getRelativePath')->willReturnCallback(
+ fn (string $path): ?string => PathHelper::getRelativePath($folderPath, $path)
+ );
+ return $folder;
+ }
public function testDeleteNoShareId(): void {
$this->expectException(\InvalidArgumentException::class);
@@ -514,14 +523,11 @@ class ManagerTest extends \Test\TestCase {
->setMethods(['updateShare', 'getSharesInFolder', 'generalCreateChecks'])
->getMock();
- $folder = $this->createMock(Folder::class);
- $folder->method('getPath')->willReturn('/path/to/folder');
+ $folder = $this->createFolderMock('/path/to/folder');
- $subFolder = $this->createMock(Folder::class);
- $subFolder->method('getPath')->willReturn('/path/to/folder/sub');
+ $subFolder = $this->createFolderMock('/path/to/folder/sub');
- $otherFolder = $this->createMock(Folder::class);
- $otherFolder->method('getPath')->willReturn('/path/to/otherfolder/');
+ $otherFolder = $this->createFolderMock('/path/to/otherfolder/');
$share = $this->createMock(IShare::class);
$share->method('getShareType')->willReturn(IShare::TYPE_USER);
@@ -567,8 +573,7 @@ class ManagerTest extends \Test\TestCase {
->setMethods(['updateShare', 'getSharesInFolder', 'getSharedWith', 'generalCreateChecks'])
->getMock();
- $folder = $this->createMock(Folder::class);
- $folder->method('getPath')->willReturn('/path/to/folder');
+ $folder = $this->createFolderMock('/path/to/folder');
$share = $this->createMock(IShare::class);
$share->method('getShareType')->willReturn(IShare::TYPE_USER);
@@ -596,8 +601,7 @@ class ManagerTest extends \Test\TestCase {
->setMethods(['updateShare', 'getSharesInFolder', 'getSharedWith', 'generalCreateChecks'])
->getMock();
- $folder = $this->createMock(Folder::class);
- $folder->method('getPath')->willReturn('/path/to/folder');
+ $folder = $this->createFolderMock('/path/to/folder');
$userA = $this->createMock(IUser::class);
$userA->method('getUID')->willReturn('userA');