summaryrefslogtreecommitdiff
path: root/service/test/unit/maintenance
AgeCommit message (Collapse)Author
2016-11-23replace stdlib's unittest with trials's unittest for all unittestRoald de Vries
2016-08-19Started deferring leap session creation #759Bruno Wagner
Started adapting get_leap_session to deferreds Soledad and keymanager setup calls will now happen in deferreds and leap session creation itself is a deferred with callbacks This is a start in breaking the big blocking calls we were doing on the main thread, this was done without changing code inside the leap libraries yet so things can be further optimized This breaks the ~4 seconds get_leap_session piece into smaller 1 seconds one, that can be further optimized and deferred to even smaller calls There are requests calls happening on the main thread that should get this number even further down Also moved some pieces from bitmask libraries to our bootstrap, because they are not bitmask libraries anymore and that was causing confusion
2015-10-28Add markov-generate to load-mailsFolker Bernitt
- Allows to generat mails based on a sample mails - use it with: pixelated-maintenance markov-generate --seed 21 --limit 10
2015-08-11Removed unused code from test_commands.py.Folker Bernitt
2015-08-11Adapted maintenace.load_mails to new data model.Folker Bernitt
- Issue #420
2015-08-11Fixed load-mails for empty case.Folker Bernitt
- Issue #420
2015-08-11Removed relative import of test resources.Folker Bernitt
- test_contacts.py and test_commands.py
2015-08-11Fixed unit tests.Folker Bernitt
2015-08-11trying out a new migrationVictor Shyba
2015-06-11Removing lost importsVictor Shyba
2015-05-11Use maildir for folders like DRAFTS or SENT.Folker Bernitt
- Issues #337, #338 - Added example how to use maildir sub folders
2015-05-05#337 Fixed the test adding a new behavior for add_mail_folderJefferson Stachelski
2015-05-04Changed maintenance load mails format from mbox to maildir.Folker Bernitt
- Can now import mails from maildir (allows import of old mail accounts, too) - Flags currently supported: Replied, Seen - Issue #336
2015-04-30Removed check for mail file names.Folker Bernitt
- Issue #337
2015-04-29#337 Created a validation to just open file that the file name starts with ↵Jefferson Stachelski
'mbox' and ends with a number
2015-04-29#337 Fixed the indentation of test_commandsJefferson Stachelski
2015-04-22Fix: Remove invalid import from maintenance.py.Folker Bernitt
2015-04-21Added load-mails maintenance command.Folker Bernitt
- Issue #335
2015-04-15Introduced maintenance command and added reset behaviour.Folker Bernitt
- Call with: pixelated_maintenance reset - Issues #335, #345