add test for the reshare option
This commit is contained in:
parent
ab6ee79e11
commit
99738ae0bc
|
@ -31,6 +31,7 @@ class Test_Files_Sharing_Api extends \PHPUnit_Framework_TestCase {
|
||||||
|
|
||||||
const TEST_FILES_SHARING_API_USER1 = "test-share-user1";
|
const TEST_FILES_SHARING_API_USER1 = "test-share-user1";
|
||||||
const TEST_FILES_SHARING_API_USER2 = "test-share-user2";
|
const TEST_FILES_SHARING_API_USER2 = "test-share-user2";
|
||||||
|
const TEST_FILES_SHARING_API_USER3 = "test-share-user3";
|
||||||
|
|
||||||
public $stateFilesEncryption;
|
public $stateFilesEncryption;
|
||||||
public $filename;
|
public $filename;
|
||||||
|
@ -54,6 +55,7 @@ class Test_Files_Sharing_Api extends \PHPUnit_Framework_TestCase {
|
||||||
// create users
|
// create users
|
||||||
self::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1, true);
|
self::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1, true);
|
||||||
self::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, true);
|
self::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, true);
|
||||||
|
self::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER3, true);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -101,6 +103,7 @@ class Test_Files_Sharing_Api extends \PHPUnit_Framework_TestCase {
|
||||||
// cleanup users
|
// cleanup users
|
||||||
\OC_User::deleteUser(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1);
|
\OC_User::deleteUser(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1);
|
||||||
\OC_User::deleteUser(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
|
\OC_User::deleteUser(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2);
|
||||||
|
\OC_User::deleteUser(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER3);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -197,9 +200,9 @@ class Test_Files_Sharing_Api extends \PHPUnit_Framework_TestCase {
|
||||||
\OCP\Share::shareItem('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_LINK,
|
\OCP\Share::shareItem('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_LINK,
|
||||||
null, 1);
|
null, 1);
|
||||||
|
|
||||||
$params = array('path' => $this->filename);
|
$_GET['path'] = $this->filename;
|
||||||
|
|
||||||
$result = Share\Api::getAllShares($params);
|
$result = Share\Api::getAllShares(array());
|
||||||
|
|
||||||
$this->assertTrue($result->succeeded());
|
$this->assertTrue($result->succeeded());
|
||||||
|
|
||||||
|
@ -213,6 +216,60 @@ class Test_Files_Sharing_Api extends \PHPUnit_Framework_TestCase {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @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 = Share\Api::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 = Share\Api::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
|
* @medium
|
||||||
* @depends testCreateShare
|
* @depends testCreateShare
|
||||||
|
|
Loading…
Reference in New Issue