From 242479ace03928b20dc86806f7592ec1148b615b Mon Sep 17 00:00:00 2001 From: Folker Bernitt Date: Tue, 11 Aug 2015 14:12:52 +0200 Subject: Add integration test for DraftService. --- service/test/integration/test_draft_service.py | 32 ++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 service/test/integration/test_draft_service.py (limited to 'service/test') diff --git a/service/test/integration/test_draft_service.py b/service/test/integration/test_draft_service.py new file mode 100644 index 00000000..00b1fcfe --- /dev/null +++ b/service/test/integration/test_draft_service.py @@ -0,0 +1,32 @@ +# +# Copyright (c) 2014 ThoughtWorks, Inc. +# +# Pixelated is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Pixelated is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with Pixelated. If not, see . + +from twisted.internet import defer + +from test.support.integration import SoledadTestBase, MailBuilder + + +class DraftServiceTest(SoledadTestBase): + + @defer.inlineCallbacks + def test_store_and_load_draft(self): + input_mail = MailBuilder().with_body('some test text').build_input_mail() + + stored_draft = yield self.draft_service.create_draft(input_mail) + + draft = yield self.mail_store.get_mail(stored_draft.ident, include_body=True) + + self.assertEqual('some test text', draft.body) -- cgit v1.2.3