Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
AgeCommit message (Collapse)Author
2016-05-13A final release version number breaks this regex (#4835)hefee
f.ex. a valid verson nr: 2.2.0 -> fist \d+ = 2 -> second \d+ = 2 -> the last \d+ = 0 -> .+ in not matching, because there is nothing to match
2016-05-12For tests we do not need a xserver running.Hefee
Use for tests QTEST_GUILESS_MAIN and QTEST_APPLESS_MAIN.
2016-05-12timeAgo test: Fix for qt4, clean upChristian Kamm
2016-05-10Fix exclude unit test, adopt to new Iface of isExcluded.Klaas Freitag
2016-05-10Fix utility test: Pass a command name to do the version check.Klaas Freitag
2016-04-29LockWatcher: Keep an eye on Windows file locks (#4758)ckamm
When a conflict-rename or a temporary-rename fails, notify the LockWatcher. It'll regularly check whether the file has become accesible again. When it has, another sync is triggered. owncloud/enterprise#1288
2016-04-21Use QTokenizer to properly parse netrcDaniel Molkentin
Addresses #4691
2016-04-12Fix unit test buildChristian Kamm
2016-03-30Simplify the build of auto testsJocelyn Turcotte
Remove all configure_files: - Move all tests to cpp files - Use the QTEST_MAIN macro instead of a generated main.cpp - Include test*.moc in the cpp to let CMAKE_AUTOMOC call moc - Pass info through add_definitions instead of generating oc_bin.h with them This makes sure that build errors points to the original test source file instead of the generated one in the build directory to be able to jump and fix errors directly from the IDE's error pane.
2016-03-30Merge pull request #4615 from owncloud/socketApiRefactorOlivier Goffart
Socket API refactor
2016-03-29Add utility function for shorter time duration strings #3403Christian Kamm
2016-03-29Adjust size description strings #3403Christian Kamm
@jancorchardt suggested to not have decimal places on file sizes, except for GB.
2016-03-28Make the AccountState a construction argument of the FolderJocelyn Turcotte
This will help moving the SyncEngine construction in the constructor and allow moving functionalities from Folder to SyncEngine or its delegated objects.
2016-03-08Merge pull request #4513 from owncloud/csyncContextToSyncEngineOlivier Goffart
Move the csync_context creation in SyncEngine
2016-03-01AccountState: Allow storing state in settingsChristian Kamm
This will be useful if we ever want to store account-level gui state. I built this originally because I thought a paused account would be this kind of state.
2016-02-25Fix TestXmlParse::testParser1Jocelyn Turcotte
2016-02-15Tests: Add a test for the timeAgoInWords functionKlaas Freitag
2015-11-26SyncJournalTest: Use valid time for the tests.Klaas Freitag
2015-11-25Test syncjournaldb: Fix comparison of two QDateTime objects.Klaas Freitag
Only compare full seconds as milliseconds may float.
2015-11-23Rename filesChristian Kamm
2015-11-23Checksums: Don't reupload if size and checksum are unchanged #3235Christian Kamm
* Compute the content checksum (in addition to the optional transmission checksum) during upload (.eml files only) * Add hook to compute and compare the checksum in csync_update * Add content checksum to database, remove transmission checksum
2015-11-11Fix OwnSql testChristian Kamm
3993a7f636f0a06b71eb3cc97cdb7a9818c02221 added asserts for failing prepare() calls
2015-11-11SyncJournalFileRecord: Remove unused mode fieldChristian Kamm
2015-11-10Checksums: Treat more carefully in db #4034Christian Kamm
In particular, preserve them on local rename or remote move.
2015-10-29Merge pull request #3951 from ckamm/checksumckamm
Checksums stored in database #3735
2015-10-28Checksum: Don't lose it on metadata update #3735Christian Kamm
Also improve tests.
2015-10-28Checksum: Put checksum type into separate column #3735Christian Kamm
2015-10-28Merge branch 'kill_legacy_propagator'Markus Goetz
2015-10-28Checksums: Improvement in async computation and validation #3735Christian Kamm
2015-10-22test/CMakeLists.txt: remove commentsOlivier Goffart
2015-10-21csync_update: Don't fetch the etag in the local discovery from the DBOlivier Goffart
We don't need it, and it's slow. This saves a lot of DB queries (Also replaced a strlen>0 with a faster check)
2015-10-20Remove legacy propagator and neonMarkus Goetz
The code was already uneeded/unbuilt on Windows and OS X.
2015-10-15Fix test compileChristian Kamm
I regularly fix errors in the copies of the test sources that are made in build/. Refactoring how these tests work could be worthwhile.
2015-10-15ETag: Allow parsing of weak tags #3946Christian Kamm
2015-10-13ExcludedFiles: Add testChristian Kamm
2015-10-02FolderWatcher: Use csync exclude code #3805Christian Kamm
Introduce a global ExcludedFiles instance to avoid loading the global exclude lists several times. One could still add per-folder exclude lists by checking these after the global ones.
2015-10-02Merge branch '2.0'Christian Kamm
Conflicts: doc/images/menu.png doc/images/settings_network.png
2015-09-10Utility: Fix the size display back to JEDEC standard.Klaas Freitag
Also updated the test.
2015-09-10Minor typos in client test sectionPhil Davis
Note: I am not sure that nostoredpasswd even exists in the current version. Maybe the stuff in testplan.txt is old and not relevant anyway?
2015-09-05Get rid of ShibbolethRefresherJocelyn Turcotte
This is only for neon and not necessary if we want to show a notification instead of a login window when the network reports invalid credentials.
2015-08-07Make version check test conditional for nowDaniel Molkentin
2015-08-06Merge pull request #3472 from owncloud/linux_restart_on_new_versionDaniel Molkentin
On Linux restart if new version is found on disk
2015-08-061.8 Migration: Fix password overwrite #3539Markus Goetz
2015-08-06Merge branch 'master' into linux_restart_on_new_versionDaniel Molkentin
Conflicts: src/gui/application.cpp src/gui/owncloudsetupwizard.cpp
2015-08-05Utility: use SI units for the sizes in bytesOlivier Goffart
2015-08-04FolderManTest: Make compileMarkus Goetz
2015-07-31test Utility: really check for a version string.Klaas Freitag
2015-07-31Tests: Make independent of an hardcoded path, rather use CMAKE_BINARY_DIR.Klaas Freitag
2015-07-28Fix the tests build on OS X in debugJocelyn Turcotte
2015-07-28Wizards: allow adding a folder in a non-existing directory and create that ↵Olivier Goffart
folder The owncloud wizard already created the directory, but the recent addition of FolderMan::checkPathValidityForNewFolder stopped allowing unexisting directories. So change FolderMan::checkPathValidityForNewFolder to allow non existing directory and whange the FolderWizard to create the directory if it does not exist. Issue #3492