summaryrefslogtreecommitdiff
path: root/service/test/unit/adapter
AgeCommit message (Collapse)Author
2015-08-11Merge test method SearchableMailstore.add_mail.Folker Bernitt
Setup is the same & makes test consistent with other tests
2015-08-11Implemented copy mail on indexing mails store.Folker Bernitt
2015-08-11Added move mail to indexing mail store.Folker Bernitt
2015-08-11Renamed test class to TestSearchableMailStore.Folker Bernitt
2015-08-11Reverted changes to get tests green.Folker Bernitt
2015-08-11implemented add, delete and update of mails in searchable mail store.Folker Bernitt
2015-08-11Assert return value for add_mail and that a LeapMail instance is passed to ↵Folker Bernitt
search engine.
2015-08-11Started work on searchable mail store.Folker Bernitt
2015-08-11Added mailbox name to leap mails.Folker Bernitt
2015-08-11Implemented get_mailbox_names in MailStore.Folker Bernitt
2015-08-11Fixed test_mailboxes.py test.Folker Bernitt
2015-08-11Added move message in new data model.Folker Bernitt
2015-08-11First steps migrating mail service to new data model.Folker Bernitt
2015-08-11Added mail store to mail service.Folker Bernitt
2015-08-11Added delete_mailbox to leap mail store.Folker Bernitt
2015-08-11Added tests to get mails within a mailbox.Folker Bernitt
2015-08-11Added delete mail to mail store.Folker Bernitt
- Fix for empty mails returned by leap_mail.
2015-08-11Added actual assert to add_mail mail store test.Folker Bernitt
2015-08-11Removed unused code from test_leap_mailstore.py.Folker Bernitt
2015-08-11Added add mailbox and add message behaviour.Folker Bernitt
- Add message does not yet mail index
2015-08-11Added all_mails to LeapMailStore.Folker Bernitt
2015-08-11Refactored test_leap_mailstore.py.Folker Bernitt
2015-08-11Added leap mailstore integration test.Folker Bernitt
2015-08-11Added include_body to get_mail.Folker Bernitt
2015-08-11Added to_dict and get_mails to mail storage.Folker Bernitt
2015-08-11Started work on MailStore abstraction.Folker Bernitt
2015-08-11Skipped test_welcome_mail integration test.Folker Bernitt
- Fixed test_mailbox.py
2015-08-11fix testing on draft while sending mailsVictor Shyba
2015-08-11Fixed missing yield in test_mail.py.Folker Bernitt
2015-08-11Fixed relative file resource in test_mail.py.Folker Bernitt
2015-08-11Removed broken, outdated test from test_soledad_querier.py.Folker Bernitt
2015-08-11Fixed relative file import in test_soledad_querier.py.Folker Bernitt
2015-08-11Fixed get_lastuid in test_soledad_querier.py.Folker Bernitt
2015-08-11Fixed unit tests.Folker Bernitt
2015-08-11prepare mailbox tests, missing property functionality on mail.py onlyVictor Shyba
2015-08-11fix test_soledad_querierVictor Shyba
2015-08-11trying out a new migrationVictor Shyba
2015-06-12[refactor] SearchEngine does not need a querierVictor Shyba
It was used only to retrieve encryption key. This should be done by who is using it.
2015-06-07fixes tests for smtp gatewayVictor Shyba
2015-06-05Added creation of input mail from python messageBruno Wagner
That way we don't need extra logic for the welcome mail, we just have to read the file and send the contents to the input mail parser and that's it. Also moved the logic of adding a welcome mail to the mailboxes because it has knowledge of mailbox methods anyways.
2015-06-04[feat] async index writer to avoid locking #404Victor Shyba
This commit changes index writer to use AsyncWriter. It should avoid locking on our code and speed up things for now.
2015-04-09Adds service to move mails to inboxRoberto Soares
2015-04-09Default broken Content-Transfer-Encoding to 8bit.Folker Bernitt
- Issue #347
2015-04-09Added fallback to us ascii for invalid Content-Type values.Folker Bernitt
- Issue #347
2015-04-02catch invalid data in received header when parsing date.Lisa Junger
- Issue #347
2015-04-02when receiving invalid data for date header, fall back to datetime.now.Lisa Junger
- Issue #347
2015-04-02handle incorrectly encoded headers as ascii.Lisa Junger
- Issue #347
2015-03-24Fix pep8 errors of lambda functionsTiago Ferraz
Altered lambda function to def in order to fix pep8 E371 errors
2015-03-22checks if a mailbox is fresh (uid is 0).Victor Shyba
If so, we are able to put welcome mail on INBOX after checking it -- Issue #334
2015-03-22extracts get_lastuid and adds tests for create_mail uid consistency.Victor Shyba
-- Issue #334