summaryrefslogtreecommitdiffstats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* Add settings PersonalControllerRoeland Jago Douma2016-11-061-0/+122
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Cleanup OC_Group usage a bitRoeland Jago Douma2016-11-041-206/+220
| | | | | | This is deprecated internal stuff. Should not be used anymore. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Merge pull request #1109 from nextcloud/add-more-secrets-to-password-reset-linkMorris Jobke2016-11-031-143/+187
|\ | | | | Use mail for encrypting the password reset token as well
| * Fix testsRoeland Jago Douma2016-11-031-166/+174
| | | | | | | | | | | | * Tests fixed and controller coverage to 100% Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
| * [WIP] Use mail for encrypting the password reset token as wellLukas Reschke2016-11-031-6/+42
| |
* | Merge pull request #1741 from nextcloud/new_previewLukas Reschke2016-11-033-1/+565
|\ \ | | | | | | Improve previews
| * | Add cache 1 day cache to preview endpointRoeland Jago Douma2016-11-031-3/+6
| | | | | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
| * | More testsRoeland Jago Douma2016-11-031-0/+223
| | | | | | | | | | | | | | | | | | | | | | | | | | | * PreviewController test * PublicPreview test * Versions Preview test * Trash Preview test Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
| * | Added genertor helper & testsRoeland Jago Douma2016-11-031-0/+338
| | | | | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
| * | Fix urlgenerator testRoeland Jago Douma2016-11-031-1/+1
| |/ | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | Merge pull request #1994 from nextcloud/proper-cron-hintsRoeland Jago Douma2016-11-031-1/+3
|\ \ | |/ |/| Show a hint for system based cron user name
| * Show a hint for system based cron user nameMorris Jobke2016-11-031-1/+3
| | | | | | | | | | | | | | | | | | * makes it easier to setup cron job * gives hints for PHP documentation * disables the cron setting if requirements not met * fixes #1989 Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | Merge pull request #1915 from nextcloud/downstream-26398Lukas Reschke2016-11-039-80/+396
|\ \ | |/ |/| Add using casing check/fix for initMountPoints
| * Adjust tests and DI for Share.phpLukas Reschke2016-11-023-5/+28
| | | | | | | | Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
| * DI for root.phpLukas Reschke2016-11-026-131/+307
| | | | | | | | Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
| * Fix mock warning in some FS tests (#26464)Vincent Petry2016-11-022-2/+2
| |
| * Add using casing check/fix for initMountPointsVincent Petry2016-11-024-2/+119
| |
* | Merge pull request #1978 from nextcloud/remove-send-mail-optionMorris Jobke2016-11-021-40/+16
|\ \ | | | | | | Remove send mail option
| * | remove 'send mail notification' option from sharing, replaced by ↵Bjoern Schiessle2016-11-021-40/+16
| | | | | | | | | | | | | | | | | | send-by-mail feature Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
* | | Merge pull request #1988 from nextcloud/silly-but-effective-testMorris Jobke2016-11-021-0/+68
|\ \ \ | |_|/ |/| | Add test for "languageCodes.php"
| * | Add test for "languageCodesTest.php"Lukas Reschke2016-11-021-0/+68
| | | | | | | | | | | | | | | | | | Arguably not the most awesome test but increases coverage and is an easy gain. Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* | | Merge pull request #1981 from nextcloud/multibucket-num-bucketsLukas Reschke2016-11-022-9/+13
|\ \ \ | | | | | | | | Allow setting a maximun number of buckets for multibucket
| * | | Allow setting a maximun number of buckets for multibucketRobin Appelman2016-11-022-9/+13
| | | | | | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | | Add testsLukas Reschke2016-11-022-0/+139
| | | | | | | | | | | | | | | | Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* | | | Inject config and loggerJoas Schilling2016-11-022-7/+29
| |/ / |/| | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | Merge pull request #1347 from nextcloud/bring-back-remember-meMorris Jobke2016-11-025-174/+471
|\ \ \ | | | | | | | | fix remember me login
| * | | Add missing tests and fix PHPDocLukas Reschke2016-11-022-3/+160
| | | | | | | | | | | | | | | | Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
| * | | inject ISecureRandom into user session and use injected config tooChristoph Wurst2016-11-021-49/+60
| | | | | | | | | | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
| * | | bring back remember-meChristoph Wurst2016-11-025-140/+269
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | * try to reuse the old session token for remember me login * decrypt/encrypt token password and set the session id accordingly * create remember-me cookies only if checkbox is checked and 2fa solved * adjust db token cleanup to store remembered tokens longer * adjust unit tests Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | | Merge pull request #1940 from nextcloud/new-appstoreMichael Grosser2016-11-0215-1368/+1321
|\ \ \ | |/ / |/| | Use new appstore API
| * | Add tests for installer methodLukas Reschke2016-10-314-0/+522
| | | | | | | | | | | | Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
| * | Proxy images through usercontent.apps.nextcloud.comLukas Reschke2016-10-311-14/+2
| | | | | | | | | | | | Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
| * | Add update supportLukas Reschke2016-10-314-77/+279
| | | | | | | | | | | | Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
| * | Use substr and explode instead of a regexLukas Reschke2016-10-311-0/+7
| | | | | | | | | | | | Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
| * | Fix testsLukas Reschke2016-10-314-5/+12
| | | | | | | | | | | | Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
| * | Use new appstore APILukas Reschke2016-10-318-1291/+518
| | | | | | | | | | | | | | | | | | This change introduces the new appstore API in Nextcloud. Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* | | Merge pull request #1966 from nextcloud/fix-csrf-token-generationRoeland Jago Douma2016-11-022-4/+12
|\ \ \ | |_|/ |/| | Fix CSRF token generation / validation
| * | Fix CSRF token generation / validationLeon Klingele2016-11-022-4/+12
| | | | | | | | | | | | | | | | | | | | | Operate on raw bytes instead of base64-encoded strings. Issue was introduced in a977465 Signed-off-by: Leon Klingele <git@leonklingele.de>
* | | add method to check if a share provider for a given type is loadedBjoern Schiessle2016-11-011-0/+40
|/ / | | | | | | Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
* | Add defaultShareProvider & federatedshareprovider testsRoeland Jago Douma2016-11-011-0/+91
| | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | Add Manager unit testsRoeland Jago Douma2016-11-011-6/+77
| | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | Add getShareTypesInFolder to optimize folder listeningRobin Appelman2016-10-311-0/+9
|/ | | | Signed-off-by: Robin Appelman <icewind@owncloud.com>
* Fix more testsRoeland Jago Douma2016-10-283-143/+4
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Proper DI of configRoeland Jago Douma2016-10-285-31/+61
| | | | | | * Fixed comments Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* introduce callForSeenUsers and countSeenUsers (#26361)Jörn Friedrich Dreyer2016-10-282-1/+66
| | | | | | | | | | * introduce callForSeenUsers and countSeenUsers * add tests * oracle should support not null on clob * since 9.2.0
* Merge pull request #1800 from nextcloud/nextcloud-rich-object-stringsMorris Jobke2016-10-272-29/+74
|\ | | | | Nextcloud rich object strings
| * Allow rich object subjects for NotificationsJoas Schilling2016-10-201-29/+21
| | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * Add Rich Object Definitions and a validatorJoas Schilling2016-10-201-0/+53
| | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | Remove internal share mail functionRoeland Jago Douma2016-10-261-48/+0
| | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | Merge pull request #1920 from ↵Roeland Jago Douma2016-10-261-0/+14
|\ \ | | | | | | | | | | | | nextcloud/legacy-pages-should-also-receive-the-nonce Add nonce also to legacy CSP