summaryrefslogtreecommitdiff
path: root/service/test/support/test_helper.py
diff options
context:
space:
mode:
Diffstat (limited to 'service/test/support/test_helper.py')
-rw-r--r--service/test/support/test_helper.py12
1 files changed, 8 insertions, 4 deletions
diff --git a/service/test/support/test_helper.py b/service/test/support/test_helper.py
index 54685008..c37c1408 100644
--- a/service/test/support/test_helper.py
+++ b/service/test/support/test_helper.py
@@ -15,8 +15,9 @@
# along with Pixelated. If not, see <http://www.gnu.org/licenses/>.
from datetime import datetime
import io
+from twisted.web.test.test_web import DummyRequest
-from pixelated.adapter.model.mail import InputMail
+from pixelated.adapter.model.mail import InputMail, PixelatedMail
LEAP_FLAGS = ['\\Seen',
@@ -68,6 +69,12 @@ def leap_mail(uid=0, flags=LEAP_FLAGS, headers=None, extra_headers={}, mbox='INB
return (fdoc, hdoc, bdoc)
+def pixelated_mail(uid=0, flags=LEAP_FLAGS, headers=None, extra_headers={}, mbox='INBOX', body='body', chash='chash'):
+ fdoc, hdoc, bdoc = leap_mail(uid, flags, headers, extra_headers, mbox, body, chash)
+
+ return PixelatedMail.from_soledad(fdoc, hdoc, bdoc)
+
+
def input_mail():
mail = InputMail()
mail.fdoc = TestDoc({})
@@ -82,9 +89,6 @@ class TestRequest:
self.json = json
-from twisted.web.test.test_web import DummyRequest
-
-
class PixRequestMock(DummyRequest):
def __init__(self, path):
DummyRequest.__init__(self, path)