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
path: root/build
AgeCommit message (Collapse)Author
2017-04-25Check whether we can json decode the translationsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
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-31mergejs should print a newline between importsRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
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 #4013 from nextcloud/bundle_vendor_jsLukas Reschke
Bundle vendor js
2017-03-24also install sinonMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-03-24Update karma, use sinon from npmVincent Petry
Update karma library and use sinon JS library provided by karma-jasmine-sinon instead of local file. 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-23Add CI step to verify merged vendor jsRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2017-03-23Merge vendor jsRoeland Jago Douma
There is a bunch of javascript we always load from vendors. This combines this into 1 javascript file. Which reduces the number of request by ~10. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
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
2017-03-17Integration test check download without saving file locallyVincent Petry
Use Guzzle stream mode to download the contents instead of using a temporary local file. Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-03-17Add 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-03-16Adjust integration testLukas Reschke
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2017-03-10Make intergration tests work againRoeland Jago Douma
The regex was to greedy Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2017-02-21Use clearer name setUpScenarioPhil Davis
Signed-off-by: Phil Davis <phil.davis@inf.org>
2017-02-20Only request "IndexIgnore" if mod_autoindex is loadedRobert Scheck
Signed-off-by: Robert Scheck <robert@fedoraproject.org>
2017-02-10Add integration tests for legacy DAV endpointsLukas Reschke
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2017-01-21remove outdated scenarioArthur Schiwon
covered by "Delete a non-existing configuration" Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2017-01-21LDAP PUT command now supports setting multiple keys at onceArthur Schiwon
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2017-01-20enable user_ldap app for testsArthur Schiwon
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>