aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_encryption/tests/share.php
Commit message (Collapse)AuthorAgeFilesLines
* remove old encryption appBjoern Schiessle2015-04-071-1392/+0
|
* replace share proxy with hookRobin Appelman2015-03-261-3/+0
|
* Update license headersJenkins for ownCloud2015-03-261-12/+20
|
* Add wrapper for GuzzleLukas Reschke2015-03-251-2/+2
|
* Revert "Updating license headers"Morris Jobke2015-02-261-18/+13
| | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
* Updating license headersJenkins for ownCloud2015-02-231-13/+18
|
* Fix intendationJoas Schilling2015-01-291-3/+3
|
* Fix more assertionsJoas Schilling2015-01-291-26/+26
|
* Fix 2 assertionsJoas Schilling2015-01-291-3/+3
|
* make sure that we always create a public share key for remote sharesBjoern Schiessle2015-01-291-31/+92
|
* Merge pull request #13182 from owncloud/download_versionsBjörn Schießle2015-01-121-0/+34
|\ | | | | make versions of shared files downloadable
| * make versions of shared files downloadableBjoern Schiessle2015-01-091-0/+34
| |
* | unit testsBjoern Schiessle2015-01-091-4/+86
|/
* Next step in server-to-server sharing next generation, see #12285Bjoern Schiessle2014-12-191-7/+92
| | | | | | | | | | | | | | Beside some small improvements and bug fixes this will probably the final state for OC8. To test this you need to set up two ownCloud instances. Let's say: URL: myPC/firstOwnCloud user: user1 URL: myPC/secondOwnCloud user: user2 Now user1 can share a file with user2 by entering the username and the URL to the second ownCloud to the share-drop-down, in this case "user2@myPC/secondOwnCloud". The next time user2 login he will get a notification that he received a server-to-server share with the option to accept/decline it. If he accept it the share will be mounted. In both cases a event will be send back to user1 and add a notification to the activity stream that the share was accepted/declined. If user1 decides to unshare the file again from user2 the share will automatically be removed from the second ownCloud server and user2 will see a notification in his activity stream that user1@myPC/firstOwnCloud has unshared the file/folder from him.
* Correctly namespace encryption testsJoas Schilling2014-12-091-25/+22
|
* Use self:: instead of the class name in encryption testsJoas Schilling2014-12-091-226/+226
|
* Update OCA\Encryption to OCA\Files_Encryption in the encryption app itselfJoas Schilling2014-12-091-14/+17
|
* upgrade to new folder structureBjoern Schiessle2014-12-021-27/+4
|
* change private/public key names for consistency reasonsBjoern Schiessle2014-11-261-4/+4
|
* new folder structure for keysBjoern Schiessle2014-11-261-100/+100
| | | | | | all keys are now in files_encryption/key/path_to_file/filename/ share keys are named: user.shareKey file key is named: fileKey
* Replace deprecated constant with new class constantJoas Schilling2014-11-251-11/+11
|
* Fix single run of encryption tests and usages of uniqid() and fopen()Joas Schilling2014-11-171-58/+64
|
* remove unnecessary require calls - the ownCloud class loader is supposed to ↵Thomas Müller2014-10-301-8/+0
| | | | take care of this
* Properly register sharing hooks and proxiesVincent Petry2014-10-301-1/+7
| | | | | | | This will fix failing tests when shares weren't cleant up on delete due to missing hooks. Added login for user1 in setUp().
* Added encryption test when moving file as non-ownerVincent Petry2014-10-291-2/+15
|
* make tests compatible with hook based skeleton generationJörn Friedrich Dreyer2014-10-201-0/+8
|
* Fix share key finding algorithm in various casesVincent Petry2014-09-231-0/+57
| | | | | | | | | | | Instead of inaccurate pattern matching, use the list of users who we know have access to the file to build the list of share keys. This covers the following cases: - Move/copy files into a subfolder within a share - Unsharing from a user - Deleting files directlry / moving share keys to trashbin
* update existing unit testsBjoern Schiessle2014-07-231-3/+3
|
* update keys recursively if a folder was movedBjoern Schiessle2014-07-171-0/+48
|
* remove pointless require of Blowfish.phpThomas Müller2014-07-101-1/+0
|
* Remove all occurences of @brief and @returns from PHPDocMorris Jobke2014-05-191-1/+1
| | | | * test case added to avoid adding them later
* remove legacy aka deprecated code: OC_FilesystemViewThomas Müller2014-05-121-4/+4
|
* fix encryption tests after the removal of the shared folderBjoern Schiessle2014-04-231-26/+25
|
* Remember before change works betterBart Visscher2014-04-011-3/+3
|
* add test case if a file gets moved out from the shared folderBjoern Schiessle2014-02-241-0/+70
|
* Merge pull request #7190 from owncloud/appconfig-legacy-appsThomas Müller2014-02-181-6/+6
|\ | | | | Remove usage of legacy OC_Appconfig
| * Remove usage of legacy OC_AppconfigRobin Appelman2014-02-131-6/+6
| |
* | Merge pull request #6748 from owncloud/fileinfoicewind19912014-02-141-7/+7
|\ \ | |/ |/| Add a FileInfo class which holds all info of a file ...
| * remove more is_array from encryptionRobin Appelman2014-01-171-7/+7
| |
* | added tests for the delete hooks if the trash bin is disabledBjoern Schiessle2014-02-011-15/+29
|/
* call set password hook because it doesn't get triggered during test ↵Bjoern Schiessle2013-12-161-3/+12
| | | | execution and fix paths
* enable more testsBjoern Schiessle2013-12-041-8/+4
|
* Merge pull request #4537 from owncloud/no-realpathThomas Müller2013-08-221-10/+10
|\ | | | | Do not use realpath() on includes.
| * Use __DIR__ instead of dirname(__FILE__).Andreas Fischer2013-08-211-10/+10
| | | | | | | | This is possible because we require PHP 5.3 or higher.
| * Do not use realpath() on includes.Andreas Fischer2013-08-211-10/+10
| | | | | | | | | | | | | | If the file does not exist, realpath() returns false and "include false;" produces "Failed opening '' for inclusion" which is a useless error message. 'include' works just fine with symlinks, "./" and "../".
* | Merge branch 'master' into decrypt_files_againBjoern Schiessle2013-08-171-2/+7
|\| | | | | | | | | Conflicts: apps/files_encryption/tests/keymanager.php
| * fix test and make warning translatableBjoern Schiessle2013-08-011-2/+7
| |
* | don't know why it works locally but not on the build server... let's keep it ↵Bjoern Schiessle2013-07-311-0/+3
| | | | | | | | out for the moment
* | this hopefully fixes testRecoveryForUser(), works locallyBjoern Schiessle2013-07-311-7/+10
| | | | | | | | for now I disabled testRecoveryFile(), no idea why jenkins deletes complete folders... Works nicely in the real world
* | this test works locally, let's see what out build server says...Bjoern Schiessle2013-07-311-3/+0
| |