Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-08-20Merge pull request #10566 from ↵Morris Jobke
nextcloud/stable12-10348-fix-transfering-ownership-of-a-share-to-user-with-same-id-as-receiver [stable12] Fix transfering ownership of a share to user with same id as receiver
2018-08-07Fix transfering ownership of a share to user with same id as receiverDaniel Calviño Sánchez
When the ownership of a user share is transfered to the receiver the share is removed, as the receiver now owns the original file. However, due to a missing condition, any share with a group, link or remote with the same id as the user was removed, not only the user shares. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2018-07-11Fix the behat version to 3.3.*Joas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2018-03-02backport of #8355 to stable12Arthur Schiwon
test creating comments with numeric user ids Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de> fix creating comments when file is accessible to users with numeric ids Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de> tests for systemtags related to numeric user ids Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de> fix systemtags event with numeric user ids Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2017-06-13Prevent sending second WWW-Authenticate headerLukas Reschke
Overrides \Sabre\DAV\Auth\Backend\AbstractBearer::challenge to prevent sending a second WWW-Authenticate header which is standard-compliant but most DAV clients simply fail hard. Fixes https://github.com/nextcloud/server/issues/5088 Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2017-05-18Bearer comes first on the new endpointLukas Reschke
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2017-05-18Adjust realm from SabreDAV to NextcloudLukas Reschke
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2017-05-18Make legacy DAV backend use the BearerAuth backend as wellLukas Reschke
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2017-05-18Add additional test for accessing DAV using Bearer AuthLukas Reschke
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2017-05-18Use a standardized Bearer nowLukas Reschke
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2017-05-18Add app to autoenabled provisioning API scenarioLukas Reschke
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2017-05-02Split up sharing-v1-part2.feature to avoid timeoutsMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-04-26Fix forbidden backslash DAV integration testsVincent Petry
2017-04-26Added test cases from core 16825Sergio Bertolin
2017-04-26Simplified new endpoint move testVincent Petry
2017-04-26Added case when final chunk move must not change file idVincent Petry
2017-04-26Added test about checking file id after a moveSergio Bertolin
2017-04-13Add support for ratelimiting via annotationsLukas Reschke
This allows adding rate limiting via annotations to controllers, as one example: ``` @UserRateThrottle(limit=5, period=100) @AnonRateThrottle(limit=1, period=100) ``` Would mean that logged-in users can access the page 5 times within 100 seconds, and anonymous users 1 time within 100 seconds. If only an AnonRateThrottle is specified that one will also be applied to logged-in users. Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2017-04-12Favorites integration tests for shared filesMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-04-12Fix casing of same origin frame optionJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2017-04-11Add integration test for trashbinVincent Petry
Add test for basic deletion. Add test when deleting from shared folder as recipient. Add test to check that metadata stays when moving out of shared folder as recipient. Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-04-11Clear opcode cache after config changeLukas Reschke
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2017-04-11Add integration testsLukas Reschke
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2017-04-07Merge pull request #4221 from nextcloud/provisioning-api-for-account-infoMorris Jobke
Allow to change account info via provisioning api
2017-04-07Allow to change account info via provisioning apiJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2017-04-06Merge pull request #4224 from nextcloud/dont-list-on-public-calendar-endpointMorris Jobke
Don't list on public calendar endpoints
2017-04-05Don't list on public calendar endpointsLukas Reschke
There is no need to allow listing here. Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2017-04-05Add integration tests for token authLukas Reschke
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2017-03-30fix setup of external storage integration testsRobin Appelman
Signed-off-by: Robin Appelman <robin@icewind.nl>
2017-03-29Fix unit testsMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-03-29Split long running features/sharing-v1.feature into two smaller partsMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-03-28Merge pull request #4004 from nextcloud/backport-27172Roeland Jago Douma
Remove SharedCache::getNumericStorageId to let CacheWrapper do it
2017-03-24Use authType BASIC for Sabre client in integration testsVincent Petry
This helps massively reduce the numerous useless 401 exceptions that appears in the test log. These appear only because Sabre first connects without any auth type to receive the challenge and then sends the authentication data. With this change it will directly use basic auth. Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-03-24Merge pull request #3879 from nextcloud/downstream-26915Morris Jobke
Added integration tests for sharees using v2.php
2017-03-24Merge pull request #3965 from nextcloud/downstream-27343Morris Jobke
Providing --path option to transfer-ownership
2017-03-23Remove SharedCache::getNumericStorageId to let CacheWrapper do itVincent Petry
The CacheWrapper will properly forward the call to the wrapped cache. Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-03-22add integration test to ensure that shares dont overwrite external storagesRobin Appelman
Signed-off-by: Robin Appelman <robin@icewind.nl>
2017-03-21Use proper bash test syntaxMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-03-21Providing --path option to transfer-ownershipSujith H
This will help user to selectively move the folders specified using --path option, instead of moving entire folder under files directory. Signed-off-by: Sujith H <sharidasan@owncloud.com> Update the integration test for transfer-ownership Update the integration test for transfer-ownership as the new option --path is introduced in the command. Signed-off-by: Sujith H <sharidasan@owncloud.com> Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-03-20Fix warningJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2017-03-20200 is okJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2017-03-20Fix deletion of groupsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2017-03-20Strict comparisonsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2017-03-20Added tests using v2.phpSergio Bertolin
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-03-20Add integration testsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2017-03-20Added logic and tests to remove everything inside a folderSergio Bertolin
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-03-20Added functions to add files in local_storageSergio Bertolin
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-03-17Revert "Add integration test for trashbin"Morris Jobke
2017-03-17Merge pull request #3893 from nextcloud/downstream-27069Roeland Jago Douma
Add integration test for trashbin
2017-03-17Merge pull request #3894 from nextcloud/downstream-27008Joas Schilling
Integration test check download without saving file locally