summaryrefslogtreecommitdiffstats
path: root/tests/CMakeLists.txt
Commit message (Collapse)AuthorAge
* Threaded query runner implementationChristian Mollekopf2015-12-27
| | | | | | | | | All database access is now implemented in threads, to avoid blocking the main thread. The resource communication still resides in the main thread to keep the coordination simple. With it comes a test that ensures we don't block the main thread for too long.
* A benchmark for resource writing memory usageChristian Mollekopf2015-12-22
|
* Get the maildir resource to work.Christian Mollekopf2015-12-16
| | | | | The subfolder implementation is not according to any standard it seems, but at least it works for now.
* A read-only maildir resource.Christian Mollekopf2015-12-15
| | | | Respectively a first prototype thereof.
* Removed most uses of SyncListResult and brought back theChristian Mollekopf2015-11-28
| | | | dummyresourcetest
* Introduced a QueryRunner objectChristian Mollekopf2015-11-27
| | | | | | | | The QueryRunner object lives for the duration of the query (so just for the initial query for non-live queries, and for the lifetime of the result model for live queries). It's supposed to handle all the threading internally and decouple the lifetime of the facade.
* A result modelChristian Mollekopf2015-11-10
| | | | | The result model drives the data retrieval and provides the interace for consumers
* Moved test implementations to central location.Christian Mollekopf2015-10-13
|
* Work with revisions in store + pipelinetestChristian Mollekopf2015-09-24
| | | | Cleanup of revisions, and revision for removed entity is yet missing.
* GenericFacadeBenchmarkChristian Mollekopf2015-09-07
| | | | genericfacadebenchmark
* GenericResourceBenchmarkChristian Mollekopf2015-08-19
| | | | Will eventually replace most parts of DummyResourceBenchmark
* ResourceCommunicationTestChristian Mollekopf2015-07-30
|
* Abstracted the storage so the facade can be tested.Christian Mollekopf2015-07-27
|
* Test generic stuff separately from the dummyresourceChristian Mollekopf2015-07-27
|
* Fix flatbuffers generator for testsDan Vrátil2015-05-18
|
* Moved client and dummyresource to examples/Christian Mollekopf2015-04-19
|
* Moved clientapitest to testsChristian Mollekopf2015-04-15
|
* Automatic tests.Christian Mollekopf2015-04-09
|
* Use memcpy to copy tables into vectors.Christian Mollekopf2015-04-07
| | | | | | Ideally we wouldn't be copying at all, and somehow cast the table to a vector. Unfortunately I haven't figured out how to do that, and this solution at least gets us from 0.065 ms to 0.028 ms in testCreateCommand.
* DummyResourceBenchmarkChristian Mollekopf2015-01-27
|
* An index implementation.Christian Mollekopf2015-01-21
|
* A messagequeue.Christian Mollekopf2015-01-11
|
* Made the domain adaptor actually work. We can read stuff now.Christian Mollekopf2015-01-07
|
* Removed dummyresourcefacadetestChristian Mollekopf2014-12-29
| | | | dummyresourcetest tests the facade as well and writes the proper storage format.
* Write-Read loop from clientside.Christian Mollekopf2014-12-21
| | | | | | | | | It's a huge hack but starts to show results. Most urgently we need: * reliable command results * the 3 buffers instead of the 1 * A way to implement storage as preprocessor (or a place to impelement it after the preprocessors).
* set a good trend for akonadi2 library name: akonadi2_resource_<name>Aaron Seigo2014-12-15
| | | | also, correct Qt library usage
* make libhawd a shared libAaron Seigo2014-12-15
|
* store benchmark results for buffer testsAaron Seigo2014-12-11
|
* How Are We Doing (hawd) frameworkAaron Seigo2014-12-11
|
* Dummyresourcefacade test.Christian Mollekopf2014-12-11
| | | | Huzaa, we can read a value!
* standardize on calling it Akonadi2Aaron Seigo2014-12-06
|
* A storagetest including concurrency read test.Christian Mollekopf2014-12-05
| | | | | Conflicts: tests/CMakeLists.txt
* major reorg that puts Storage (previously Database) into commonAaron Seigo2014-12-05
there is now a top-level tests dir, and a compile time switch for lmdb vs kyotocabinet