update unit tests and make sure that we return the right permissions for files within a shared folder and for the shared folder itself

This commit is contained in:
Bjoern Schiessle 2014-06-04 13:00:32 +02:00 committed by Robin Appelman
parent 574de2d91b
commit 09970e1816

View file

@ -111,5 +111,10 @@ class Test_Files_Sharing_Permissions extends Test_Files_Sharing_Base {
$this->assertEquals(7, $contents[0]['permissions']);
$this->assertEquals('textfile1.txt', $contents[1]['name']);
$this->assertEquals(7, $contents[1]['permissions']);
// the share mount point should always have delete permissions to allow the user
// to unmount it
$restrictedShare = $this->secondView->getFileInfo('files/shareddirrestricted');
$this->assertEquals(7 | \OCP\PERMISSION_DELETE, $restrictedShare['permissions']);
}
}