summaryrefslogtreecommitdiffstats
path: root/tests/lib
Commit message (Collapse)AuthorAgeFilesLines
* Revert "[stable18] Fix password changes in link and mail shares"Morris Jobke2020-05-291-244/+9
|
* Fix disabling send password by Talk without new password in mail sharesDaniel Calviño Sánchez2020-05-291-5/+79
| | | | | | | | | | | | | | | | | | When "send password by Talk" was disabled in a mail share it was possible to keep the same password as before, as it does not pose any security issue (unlike keeping it when "send password by Talk" is enabled, as in that case the password was already disclosed by mail). However, if a mail share is updated but the password is not set again only the hashed password will be available. In that case it would not make sense to send the password by mail, so now the password must be changed when disabling "send password by Talk". Note that, even if explicitly setting the same password again along with the "send password by Talk" property would work, this was also prevented for simplicity. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* Fix enabling send password by Talk with same password in mail sharesDaniel Calviño Sánchez2020-05-291-4/+96
| | | | | | | | | | | | | When "send password by Talk" is enabled in a mail share a new password must be also set. However, when the passwords of the original and the new share were compared it was not taken into account that the original password is now hashed, while the new one is not (unless no new password was sent, in which case the password of the original share was set in the new share by the controller, but that was already prevented due to both passwords being literally the same), so it was possible to set the same password again. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* Fix enabling send password by Talk with empty password in link sharesDaniel Calviño Sánchez2020-05-291-0/+69
| | | | | | | When "send password by Talk" is enabled in a link share now a non empty password is enforced. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* Merge pull request #21109 from nextcloud/backport/19793/stable18Roeland Jago Douma2020-05-281-18/+0
|\ | | | | [stable18] Fix resharing of federated shares that were created out of links
| * Remove unneeded test since links have resharing permissions by defaultJulius Härtl2020-05-261-18/+0
| | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | Do not read certificate bundle from data dir by defaultMorris Jobke2020-05-251-3/+2
|/ | | | | | | | | | | Before the resources/config/ca-bundle.crt was only used when the list of custom certificates was empty and the instance was not installed. But it should also be used when the list is empty and the instance is installed. This is inverting the logic to stop if the instance is not installed to use the default bundle. And it also does this when the list is empty. Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Merge pull request #20965 from nextcloud/backport/20033/stable18Morris Jobke2020-05-252-2/+18
|\ | | | | [stable18] Enable fseek for files in S3 storage
| * add basic tests for s3 seeking and add some error handling if reopen return ↵Robin Appelman2020-05-202-2/+18
| | | | | | | | | | | | the wrong range Signed-off-by: Robin Appelman <robin@icewind.nl>
* | Compress the appstore requests by defaultMorris Jobke2020-05-201-5/+42
| | | | | | | | | | | | In test it reduced the transfered data from 5 MB to 2 MB. This should reduce the load on the appstore significantly. Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | Cache appstore requests for 60 instead of 5 minutesMorris Jobke2020-05-201-7/+7
| | | | | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | Fix http cache testClement Wong2020-05-131-1/+1
|/ | | | Signed-off-by: Clement Wong <git@clement.hk>
* Merge pull request #20574 from nextcloud/backport/16035/stable18Morris Jobke2020-05-121-40/+56
|\ | | | | [stable18] dont show remote and email options if we have an exact match for local user email
| * dont show remote and email options if we have an exact match for local user ↵Robin Appelman2020-05-121-40/+56
| | | | | | | | | | | | email Signed-off-by: Robin Appelman <robin@icewind.nl>
* | Use random_bytesRoeland Jago Douma2020-05-111-1/+8
|/ | | | | | | Since we don't care if it is human readbale. The code is backwards compatible with the old format. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Merge pull request #20763 from nextcloud/backport/20710/stable18Roeland Jago Douma2020-05-011-0/+5
|\ | | | | [stable18] Fix Argon2 options checks
| * Fix Argon2 options checksMichaIng2020-05-011-0/+5
| | | | | | | | | | | | | | | | | | | | | | The minimum for memory cost is 8 KiB per thread. Threads must be checked and set first to allow checking against the correct memory cost mimimum. Options are now applied the following way: - If config.php contains the setting with an integer higher or equal to the minimum, it is applied. - If config.php contains the setting with an integer lower than the minimum, the minimum is applied. - If config.php does not contain the setting or with no integer value, the PHP default is applied. Signed-off-by: MichaIng <micha@dietpi.com> Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | Allow specifying a default expiration dateRoeland Jago Douma2020-05-011-0/+1
|/ | | | | | This overrides the max expiration date. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Merge pull request #20512 from nextcloud/backport/20246/stable18Roeland Jago Douma2020-04-202-4/+11
|\ | | | | [stable18] Provide the proper language to the mailer
| * Provide the proper language to the mailerRoeland Jago Douma2020-04-182-4/+11
| | | | | | | | | | | | | | Else we can't properly translate the footer in the recipients e-mail language. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | add DB tests for credentials managerArthur Schiwon2020-04-161-0/+3
|/ | | | | | | these are actually expected to FAIL, because NULL as a userid is not allowed in the schema, but documented to be used on the source Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* Check the user on remote wipeJoas Schilling2020-03-251-13/+3
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Remove admin_notifications since it is obsolete since Nextcloud 14Julius Härtl2020-03-241-1/+0
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Add message for DoesNotExistExceptionDaniel Kesselberg2020-03-021-0/+17
| | | | Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* Strip of users home path from share api messageJoas Schilling2020-02-221-0/+3
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* when we receive intentional empty whats new info, do not try to show itArthur Schiwon2020-02-141-0/+4
| | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* disable timeout on app install via cliArthur Schiwon2020-02-121-4/+8
| | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* Add test to trigger "Trying to access array offset on value of type int"Daniel Kesselberg2020-02-061-0/+62
| | | | Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* Allow selecting the hashing algorithmRoeland Jago Douma2020-02-041-2/+63
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Make sure to catch php errors during job executionDaniel Kesselberg2020-02-031-0/+21
| | | | Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* Do not encode contacts menu mailto linksChristoph Wurst2020-01-301-1/+1
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* add hub bundle for easy post-installationArthur Schiwon2020-01-271-1/+3
| | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* Adjust unit test for #19017Joas Schilling2020-01-211-12/+12
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* CHeck if file already exists during file creationJulius Härtl2020-01-141-0/+15
| | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net> Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* AppFetcher: Distinguish between fileName and endpointNameGeorg Ehrke2020-01-121-1305/+1387
| | | | Signed-off-by: Georg Ehrke <developer@georgehrke.com>
* Clean up 2FA provider registry when a user is deletedChristoph Wurst2020-01-092-0/+24
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Fix the LoggerTests for phpunitRoeland Jago Douma2020-01-061-21/+21
| | | | | | Less deprecation warnings. YAY. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Modify regex to match some other chromium browsersDaniel Kesselberg2019-12-271-5/+26
| | | | Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* Restore old behavior allowing to set custom appstoreGeorg Ehrke2019-12-222-1/+18
| | | | Signed-off-by: Georg Ehrke <developer@georgehrke.com>
* Return empty template for default creatorsJulius Härtl2019-12-161-1/+9
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Merge pull request #17018 from ↵Joas Schilling2019-12-162-24/+34
|\ | | | | | | | | nextcloud/feature/noid/allow-to-force-enable-via-cli Allow to force enable apps via CLI
| * Allow to force enable apps via CLIJoas Schilling2019-12-132-24/+34
| | | | | | | | | | | | Co-authored-by: Christoph Wurst <christoph@winzerhof-wurst.at> Signed-off-by: Joas Schilling <coding@schilljs.com> Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | Merge pull request #18384 from ↵Roeland Jago Douma2019-12-161-43/+57
|\ \ | | | | | | | | | | | | nextcloud/fix/18255/global_config_to_always_accept config.php setting to always accept internal shares
| * | config.php setting to always accept internal sharesRoeland Jago Douma2019-12-161-43/+57
| |/ | | | | | | | | | | Part of #18255 Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | Merge pull request #17494 from nextcloud/fix/16340/ignore-invalid-jsonblizzz2019-12-131-7/+12
|\ \ | | | | | | Return a default user record if json is broken
| * | Log critical fallback to user default if we can't parse the JSONChristoph Wurst2019-12-131-7/+12
| |/ | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* / Add typed events for the filesystem/scannerChristoph Wurst2019-12-132-9/+11
|/ | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Merge pull request #18236 from ↵Roeland Jago Douma2019-12-121-42/+77
|\ | | | | | | | | nextcloud/bugfix/noid/always-detect-mimetype-by-content-in-workflows Allow to detect mimetype by content
| * REVERT ME: comment out failing gz detection testRoeland Jago Douma2019-12-121-1/+1
| | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
| * Update the unit test to dataProvidersJoas Schilling2019-12-101-42/+77
| | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>