summaryrefslogtreecommitdiff
path: root/service/test/integration
diff options
context:
space:
mode:
authorFolker Bernitt <fbernitt@thoughtworks.com>2015-08-11 14:12:52 +0200
committerFolker Bernitt <fbernitt@thoughtworks.com>2015-08-11 17:00:34 +0200
commit242479ace03928b20dc86806f7592ec1148b615b (patch)
treedf044ab840cbd6e7f55c5a4e7cefa3628e611576 /service/test/integration
parent2f7aa40d6f48f725eca629ff8a47eb8922467032 (diff)
Add integration test for DraftService.
Diffstat (limited to 'service/test/integration')
-rw-r--r--service/test/integration/test_draft_service.py32
1 files changed, 32 insertions, 0 deletions
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 <http://www.gnu.org/licenses/>.
+
+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)