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
2020-10-07Merge pull request #23184 from ↵Morris Jobke
nextcloud/bugfix/noid/make-sure-getUsersFavoritingObject-can-be-run-without-a-user Make sure getUsersFavoritingObject can be run without a user
2020-10-06Make sure getUsersFavoritingObject can be run without a userJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-10-05Format code to a single space around binary operatorsChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-10-04Merge pull request #21821 from nextcloud/enh/bootstrap/initial_stateRoeland Jago Douma
Bootstrap: add initial state registration
2020-10-04Merge pull request #22937 from ↵Roeland Jago Douma
nextcloud/enh/allow_configuring_token_auth_activity_interval Allow configuring the activity update interval of token
2020-10-04Merge pull request #23047 from nextcloud/techdebt/noid/warn-on-database-abuseRoeland Jago Douma
Log the number of queries built and executed
2020-10-04Move initial state provider to boostrapRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2020-10-04Allow configuring the activity update interval of tokenRoeland Jago Douma
On some systems with a lot of users this creates a lot of extra DB writes. Being able to increase this interval helps there. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2020-10-02Fix testsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-10-02Set status is also there nowJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-09-10Don't break when the IP is emptyJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-09-09Merge pull request #22657 from nextcloud/bugfix/noid/quota-trash-creationMorris Jobke
Check if quota should be applied to path when creating directories
2020-09-09Fix code styleMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2020-09-09Merge pull request #22564 from nextcloud/bugfix/noid/show-avatars-againMorris Jobke
The privacy setting is only about syncing to other servers
2020-09-08Make sure tests cover the new mkdir behaviour on 0 quotaJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2020-09-08Remove unused members and importsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-09-07Fix undefined class property access after upgrade from 19 to 20Christoph Wurst
The serialized data in 19 has one property less and this was not considered in the code. Hence adding a fallback. Moreover I'm changing the deserialization into an array instead of object, as that is the safer option. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-09-04Merge pull request #17456 from ↵John Molakvoæ
brad2014/feature/brad2014/12391-improve-imip-mail-message-take-2
2020-09-03The privacy setting is only about syncing to other serversJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-09-03Adjust acceptance tests to changes in @nextcloud/vue 2.6.3Daniel Calviño Sánchez
The menu button and the menu of a share are no longer direct childs of the actions of the share row. The menu button is now a child of a ".trigger" element, while the menu is a direct child of the body and has an id defined in the "aria-describedby" attribute of the ".trigger" element. In XPath 1.0 it does not seem possible to "backreference" a value or create variables, so when the share menu or one of its item is needed now the ".trigger" element is first found and then its XPath expression is used to compose its "aria-describedby" attribute in the XPath expression for the menu. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2020-09-02Minor cleanup: php-cs-fixer, tests, interface consistencyBrad Rubenstein
IMipPlugin.php Removed blank lines to make php-cs-fixer happy. Minor cleanup: bugs found by Psalm static checker IEMailTemplate: The public interface to addBodyListItem also needs to include the new plainIndent parameter. IMipPlugin: Fixes an undefined variable for events that do not have DTEND. Also use explicit string conversion for parameters and properties in several places. The new email template adds an additional blank line before "button" links in plain text, so the tests were fixed to include that additional blank line. Signed-off-by: Brad Rubenstein <brad@wbr.tech>
2020-09-01Do not expose direct editing if no master key is availableJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2020-08-29Fix clicks on actions menu of non opaque file rows in acceptance testsDaniel Calviño Sánchez
When a row is added to the file list the opacity of the file row is animated from transparent to fully opaque. As the file actions menu is a descendant of the row but overflows it when the row is not fully opaque clicks on the menu entries "fall-through" and are received instead by the rows behind. The opacity animation is a CSS animation, and it is not possible to know if a row is appearing or not except from its opacity (the row will have the "appear" CSS class even after the animation ended). Therefore it should be waited until the row of the file is fully opaque before using the menu. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2020-08-28Merge pull request #21288 from lmamane/masterRoeland Jago Douma
Return correct loginname in credentials
2020-08-21In case the group backend returns $limit or more results it is expected to ↵Morris Jobke
contain more results Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2020-08-20Merge pull request #22331 from ↵Roeland Jago Douma
nextcloud/bugfix/noid/dont-use-deprecated-inigetwrapper Don't use deprecated getIniWrapper() anymore
2020-08-20Merge pull request #21529 from nextcloud/enh/encryption/improve_key_formatMorris Jobke
New SSE key format
2020-08-20Remove unneeded importMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2020-08-20Fix unit testsMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2020-08-20Don't use deprecated getIniWrapper() anymoreJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-08-20adapt testGetLoginCredentialsInvalidTokenLoginCredentials() unit test to uid ↵Lionel Elie Mamane
!= loginname Signed-off-by: Lionel Elie Mamane <lionel@mamane.lu>
2020-08-20New SSE key formatRoeland Jago Douma
* Encrypt the keys with the instance secret * Store them as json (so we can add other things if needed) Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2020-08-19Properly inject IRouter into URLGenerator to properly encapsulate testsMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2020-08-19Only load routes of the app which is requestedMorris Jobke
* Add fallback to load all routes if needed * Move partial loaded routes test to proper place Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2020-08-19More test fixingJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-08-19Fix unit testsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-08-18Fix activity tests againJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-08-14Expose status via Collaborators APIGeorg Ehrke
Signed-off-by: Georg Ehrke <developer@georgehrke.com>
2020-08-14Merge pull request #22242 from nextcloud/techdebt/noid/remove-deprecated-methodsGary Kim
Remove deprecated and unused method calls
2020-08-14Fix existing test and add a specific one for the new caseMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2020-08-13Remove getLastJob from IJobListMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2020-08-13Merge pull request #21344 from nextcloud/fix/twofactor-cleanup-eventMorris Jobke
Emit an event for every disabled 2FA provider during cleanup
2020-08-12Change PHPDoc type hint from PHPUnit_Framework_MockObject_MockObject to ↵Morris Jobke
\PHPUnit\Framework\MockObject\MockObject Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2020-08-11Merge pull request #22117 from nextcloud/activity-settings-groupingMorris Jobke
allow grouping of activity settings
2020-08-10Exclude apps/files_external/3rdparty againDaniel Kesselberg
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2020-08-10Rename Core/ to core/Daniel Kesselberg
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2020-08-10Exclude apps/*/tests for coverage calculationDaniel Kesselberg
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2020-08-07Allow to update to nightlyJohn Molakvoæ (skjnldsv)
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2020-08-07Merge pull request #22135 from nextcloud/enh/noid/occ-preview-repairMorris Jobke
Add occ preview:migrate to migrate previews from the old flat structure to a subfolder structure
2020-08-07Add tests for occ preview:migrate - initial check for empty directoriesMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>