-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathtest_msg.py
169 lines (155 loc) · 6.24 KB
/
test_msg.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
# -*- coding: utf-8 -*-
from pprint import pprint # noqa
from .support import TestCase
class RFC822Test(TestCase):
def test_thunderbird(self):
fixture_path, entity = self.fixture("testThunderbirdEml.eml")
self.manager.ingest(fixture_path, entity)
self.assertSuccess(entity)
pprint(entity.to_dict())
self.assertEqual(entity.first("subject"), "JUnit test message")
self.assertIn("Dear Vladimir", entity.first("bodyText"))
def test_naumann(self):
fixture_path, entity = self.fixture("fnf.msg")
self.manager.ingest(fixture_path, entity)
self.assertSuccess(entity)
self.assertIn("Innovationskongress", entity.first("subject"))
self.assertIn("freiheit.org", entity.first("bodyHtml"))
self.assertEqual(entity.schema.name, "Email")
def test_mbox(self):
fixture_path, entity = self.fixture("plan.mbox")
self.manager.ingest(fixture_path, entity)
self.assertSuccess(entity)
self.assertEqual(entity.schema.name, "Package")
def test_base64(self):
fixture_path, entity = self.fixture("email_base64.eml")
self.manager.ingest(fixture_path, entity)
self.assertSuccess(entity)
self.assertEqual(entity.schema.name, "Email")
self.assertEqual(entity.get("bodyText"), ["Base64 email payload"])
def test_multipart_alternative(self):
fixture_path, entity = self.fixture("email_multipart_alternative.eml")
self.manager.ingest(fixture_path, entity)
self.assertSuccess(entity)
self.assertEqual(entity.schema.name, "Email")
self.assertEqual(
entity.get("bodyText"), ["This is a **multipart/alternative** message."]
)
self.assertEqual(
entity.get("bodyHtml"),
["This is a <strong>multipart/alternative</strong> message."],
)
def test_multipart_mixed(self):
fixture_path, entity = self.fixture("email_multipart_mixed.eml")
self.manager.ingest(fixture_path, entity)
self.assertSuccess(entity)
self.assertEqual(entity.schema.name, "Email")
self.assertEqual(
entity.get("bodyText"),
[
"This is the first part (plaintext)",
"This is the second part (HTML)",
"This is the third part (plaintext)",
"This is the fourth part (HTML)",
],
)
self.assertEqual(
entity.get("bodyHtml"),
[
"This is the first part (plaintext)",
"This is the second part (HTML)",
"This is the third part (plaintext)",
"This is the fourth part (HTML)",
],
)
def test_multipart_nested(self):
fixture_path, entity = self.fixture("email_multipart_nested.eml")
self.manager.ingest(fixture_path, entity)
self.assertSuccess(entity)
self.assertEqual(entity.schema.name, "Email")
self.assertEqual(
entity.get("bodyText"),
[
"This is the **first** part",
"This is the second part",
],
)
self.assertEqual(
entity.get("bodyHtml"),
[
"This is the <strong>first</strong> part",
"This is the second part",
],
)
def test_plaintext_encode_markup(self):
fixture_path, entity = self.fixture("email_encode_markup.eml")
self.manager.ingest(fixture_path, entity)
self.assertSuccess(entity)
self.assertEqual(entity.schema.name, "Email")
self.assertEqual(
entity.get("bodyText"),
[
"This is the body of a plaintext message.\n\nEven though it's plaintext, it contains some <strong>HTML markup</strong>.",
],
)
self.assertEqual(
entity.get("bodyHtml"),
[
"This is the body of a plaintext message.<br><br>Even though it's plaintext, it contains some <strong>HTML markup</strong>.",
],
)
def test_html_strip_markup(self):
fixture_path, entity = self.fixture("email_strip_markup.eml")
self.manager.ingest(fixture_path, entity)
self.assertSuccess(entity)
self.assertEqual(entity.schema.name, "Email")
self.assertEqual(
entity.get("bodyText"),
[
"This is the body of an HTML message.",
],
)
self.assertEqual(
entity.get("bodyHtml"),
[
"This is the body of an <strong>HTML</strong> message.",
],
)
self.assertNotIn(
"This is the body of an HTML message.", entity.get("indexText")
)
def test_attached_email(self):
fixture_path, entity = self.fixture("email_attached_plaintext.eml")
self.manager.ingest(fixture_path, entity)
self.assertSuccess(entity)
self.assertEqual(
entity.get("bodyText"),
["This is the body of the email that contains the attachment."],
)
fixture_path, entity = self.fixture("email_attached_alternative.eml")
self.manager.ingest(fixture_path, entity)
self.assertSuccess(entity)
self.assertEqual(
entity.get("bodyText"),
["This is the body of the email that contains the attachment."],
)
def test_attached_inline_email(self):
fixture_path, entity = self.fixture("email_attached_inline.eml")
self.manager.ingest(fixture_path, entity)
self.assertSuccess(entity)
self.assertEqual(
entity.get("bodyText"),
[
"This is the body of the email that contains the attachment.",
"From: john.doe@example.org\nTo: jane.doe@example.org\nSubject: Plaintext only",
"This is the body of a plaintext message.",
],
)
self.assertEqual(
entity.get("bodyHtml"),
[
"This is the body of the email that contains the attachment.",
"From: john.doe@example.org<br>To: jane.doe@example.org<br>Subject: Plaintext only",
"This is the body of a plaintext message.",
],
)