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/tests
AgeCommit message (Collapse)Author
2022-11-03Merge pull request #34678 from pulsejet/patch-jpegCôme Chilliet
Interlace all output JPEG
2022-11-03Merge pull request #34330 from nextcloud/fix/fix-contacts-test-php8Côme Chilliet
Fix ContactsStoreTests under PHP 8.2
2022-11-03Merge pull request #32565 from nextcloud/chore/modernize-error-handlerChristoph Wurst
Modernize the error handler
2022-11-02Refactor the ErrorHandler into a dynamic classChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2022-10-31Add remote host validation APIChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2022-10-28Rewrite admin theming in VueChristopher Ng
Signed-off-by: Christopher Ng <chrng8@gmail.com>
2022-10-27Merge pull request #34847 from ↵Joas Schilling
nextcloud/refactor/local-address-checker-method-capitalization Rename LocalAddressChecker methods to lower case
2022-10-27Emit typed event when preview is requestedJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2022-10-27Rename LocalAddressChecker methods to lower caseChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2022-10-26Fix ContactsStoreTests under PHP 8.2Côme Chilliet
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2022-10-26test disabling write checkRobin Appelman
Signed-off-by: Robin Appelman <robin@icewind.nl>
2022-10-26Merge pull request #34788 from nextcloud/bugfix/noid/preview-attributesJulius Härtl
2022-10-26Skip general login with email for non-valid addresses and LDAPJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2022-10-25Interlace all output JPEGVarun Patil
Progressive images are both smaller and faster to load. Signed-off-by: Varun Patil <radialapps@gmail.com>
2022-10-25Check share attributes on preview endpointsJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2022-10-23Revert "fix external storages access"Simon L
Signed-off-by: szaimen <szaimen@e.mail.de>
2022-10-23Merge pull request #33087 from nextcloud/fix/30282/external-storagesJohn Molakvoæ
fix external storages access
2022-10-19Add config and fix seleniumJohn Molakvoæ
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
2022-10-18Fix LostController testCôme Chilliet
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2022-10-18Merge pull request #34379 from nextcloud/fix/transactional-session-token-renewalChristoph Wurst
Run session token renewals in a database transaction
2022-10-18Merge pull request #34609 from nextcloud/enh/noid/always-enable-themingblizzz
set theming app to alwaysEnabled
2022-10-18Run session token renewals in a database transactionChristoph Wurst
The session token renewal does 1) Read the old token 2) Write a new token 3) Delete the old token If two processes succeed to read the old token there can be two new tokens because the queries were not run in a transaction. This is particularly problematic on clustered DBs where 1) would go to a read node and 2) and 3) go to a write node. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2022-10-17set theming app to alwaysEnabledszaimen
Signed-off-by: szaimen <szaimen@e.mail.de>
2022-10-17Merge pull request #31499 from nextcloud/bugfix/empty-secretCarl Schwan
Add fallback routines for empty secret cases
2022-10-14Fix testsJohn Molakvoæ
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
2022-10-13Merge pull request #34437 from nextcloud/feat/theming-default-system-valueSimon L
Use default system primary
2022-10-13Allow to pick custom colourJohn Molakvoæ (skjnldsv)
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2022-10-13Make CI green againbugfix/noid/green-ciJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-10-10Remove long depreated AppFramework/Db/MapperRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2022-10-05Merge pull request #32635 from andyxheli/patch-3blizzz
Fix User profile picture when performing the search
2022-10-05Use brand color for background only and keep accessible color as color primaryChristopher Ng
Signed-off-by: Christopher Ng <chrng8@gmail.com>
2022-10-03Update ContactsStoreTest.phpAndy Xheli
Signed-off-by: Andy Xheli <axheli@axtsolutions.com>
2022-10-01Merge pull request #33566 from nextcloud/fopen-not-found-rescanblizzz
trigger a rescan when trying to fopen a file that exists in cache but not on disk
2022-10-01Merge pull request #34329 from nextcloud/fix/cleanup-long-time-deprecated-stuffCôme Chilliet
Remove some constants and functions which have been long deprecated
2022-09-30Merge pull request #34038 from nextcloud/fix/migrate-TagMapper-to-QBMapperChristoph Wurst
Migrate TagMapper to QBMapper instead of deprecated Mapper
2022-09-30Fix ContactsManagerTest testfix/cleanup-long-time-deprecated-stuffCôme Chilliet
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2022-09-30Remove some constants and functions which have been long deprecatedCôme Chilliet
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2022-09-29Cleanup tags and Share componentCarl Schwan
- Port to LoggerInterface - Use IDBConnection and IQueryBuilder instead of raw SQL and OC_DB - Use IEventListener instead of hooks - Remove the now unused OC_DB and OC_DB_StatementWrapper legacy utils Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-09-29add test for trying to fopen a file which no longer exists on diskRobin Appelman
Signed-off-by: Robin Appelman <robin@icewind.nl>
2022-09-28Fix various theming bugsChristopher Ng
Signed-off-by: Christopher Ng <chrng8@gmail.com>
2022-09-26Move avatar clearing in the backgroundmove-background-clearingCarl Schwan
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-09-22remove getDefaultInstallationBundleArthur Schiwon
- because all apps are shipped now it was returning an empty result Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2022-09-22remove InstallCoreBundle repair stepArthur Schiwon
- core bundle was empty and thus removed - all former apps installed this way are shipped Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2022-09-22remove Core BundleArthur Schiwon
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2022-09-20Fix tests for nested v4 in v6Côme Chilliet
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2022-09-20Harden tests for local IP detection in URLsCôme Chilliet
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2022-09-19Inform ServerTest that TagMapper now uses QBMapperfix/migrate-TagMapper-to-QBMapperCôme Chilliet
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2022-09-15Merge pull request #34072 from nextcloud/enh/noid/default-enabled-2Vincent Petry
set defaultEnabled in shipped.json
2022-09-15fix using FSEEK_END with SeekableHttpStream to get file sizeRobin Appelman
Signed-off-by: Robin Appelman <robin@icewind.nl>
2022-09-15Increase timeout for apps managementVincent Petry
Signed-off-by: Vincent Petry <vincent@nextcloud.com>