4ebec837c6d272d1a11faee03161d5ad4d81738a
[odoo/odoo.git] / openerp / addons / base / tests / test_mail.py
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3 # This test can be run stand-alone with something like:
4 # > PYTHONPATH=. python2 openerp/tests/test_misc.py
5 ##############################################################################
6 #
7 #    OpenERP, Open Source Business Applications
8 #    Copyright (c) 2012-TODAY OpenERP S.A. <http://openerp.com>
9 #
10 #    This program is free software: you can redistribute it and/or modify
11 #    it under the terms of the GNU Affero General Public License as
12 #    published by the Free Software Foundation, either version 3 of the
13 #    License, or (at your option) any later version.
14 #
15 #    This program is distributed in the hope that it will be useful,
16 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
17 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 #    GNU Affero General Public License for more details.
19 #
20 #    You should have received a copy of the GNU Affero General Public License
21 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
22 #
23 ##############################################################################
24
25 import unittest2
26
27 from lxml import etree
28
29 from openerp.tools import html_sanitize, html_email_clean, append_content_to_html, plaintext2html, email_split
30
31 import test_mail_examples
32
33
34 class TestSanitizer(unittest2.TestCase):
35     """ Test the html sanitizer that filters html to remove unwanted attributes """
36
37     def test_basic_sanitizer(self):
38         cases = [
39             ("yop", "<p>yop</p>"),  # simple
40             ("lala<p>yop</p>xxx", "<p>lala</p><p>yop</p>xxx"),  # trailing text
41             ("Merci à l'intérêt pour notre produit.nous vous contacterons bientôt. Merci",
42                 u"<p>Merci à l'intérêt pour notre produit.nous vous contacterons bientôt. Merci</p>"),  # unicode
43         ]
44         for content, expected in cases:
45             html = html_sanitize(content)
46             self.assertEqual(html, expected, 'html_sanitize is broken')
47
48     def test_evil_malicious_code(self):
49         # taken from https://www.owasp.org/index.php/XSS_Filter_Evasion_Cheat_Sheet#Tests
50         cases = [
51             ("<IMG SRC=javascript:alert('XSS')>"),  # no quotes and semicolons
52             ("<IMG SRC=&#106;&#97;&#118;&#97;&#115;&#99;&#114;&#105;&#112;&#116;&#58;&#97;&#108;&#101;&#114;&#116;&#40;&#39;&#88;&#83;&#83;&#39;&#41;>"),  # UTF-8 Unicode encoding
53             ("<IMG SRC=&#x6A&#x61&#x76&#x61&#x73&#x63&#x72&#x69&#x70&#x74&#x3A&#x61&#x6C&#x65&#x72&#x74&#x28&#x27&#x58&#x53&#x53&#x27&#x29>"),  # hex encoding
54             ("<IMG SRC=\"jav&#x0D;ascript:alert('XSS');\">"),  # embedded carriage return
55             ("<IMG SRC=\"jav&#x0A;ascript:alert('XSS');\">"),  # embedded newline
56             ("<IMG SRC=\"jav   ascript:alert('XSS');\">"),  # embedded tab
57             ("<IMG SRC=\"jav&#x09;ascript:alert('XSS');\">"),  # embedded encoded tab
58             ("<IMG SRC=\" &#14;  javascript:alert('XSS');\">"),  # spaces and meta-characters
59             ("<IMG SRC=\"javascript:alert('XSS')\""),  # half-open html
60             ("<IMG \"\"\"><SCRIPT>alert(\"XSS\")</SCRIPT>\">"),  # malformed tag
61             ("<SCRIPT/XSS SRC=\"http://ha.ckers.org/xss.js\"></SCRIPT>"),  # non-alpha-non-digits
62             ("<SCRIPT/SRC=\"http://ha.ckers.org/xss.js\"></SCRIPT>"),  # non-alpha-non-digits
63             ("<<SCRIPT>alert(\"XSS\");//<</SCRIPT>"),  # extraneous open brackets
64             ("<SCRIPT SRC=http://ha.ckers.org/xss.js?< B >"),  # non-closing script tags
65             ("<INPUT TYPE=\"IMAGE\" SRC=\"javascript:alert('XSS');\">"),  # input image
66             ("<BODY BACKGROUND=\"javascript:alert('XSS')\">"),  # body image
67             ("<IMG DYNSRC=\"javascript:alert('XSS')\">"),  # img dynsrc
68             ("<IMG LOWSRC=\"javascript:alert('XSS')\">"),  # img lowsrc
69             ("<TABLE BACKGROUND=\"javascript:alert('XSS')\">"),  # table
70             ("<TABLE><TD BACKGROUND=\"javascript:alert('XSS')\">"),  # td
71             ("<DIV STYLE=\"background-image: url(javascript:alert('XSS'))\">"),  # div background
72             ("<DIV STYLE=\"background-image:\0075\0072\006C\0028'\006a\0061\0076\0061\0073\0063\0072\0069\0070\0074\003a\0061\006c\0065\0072\0074\0028.1027\0058.1053\0053\0027\0029'\0029\">"),  # div background with unicoded exploit
73             ("<DIV STYLE=\"background-image: url(&#1;javascript:alert('XSS'))\">"),  # div background + extra characters
74             ("<IMG SRC='vbscript:msgbox(\"XSS\")'>"),  # VBscrip in an image
75             ("<BODY ONLOAD=alert('XSS')>"),  # event handler
76             ("<BR SIZE=\"&{alert('XSS')}\>"),  # & javascript includes
77             ("<LINK REL=\"stylesheet\" HREF=\"javascript:alert('XSS');\">"),  # style sheet
78             ("<LINK REL=\"stylesheet\" HREF=\"http://ha.ckers.org/xss.css\">"),  # remote style sheet
79             ("<STYLE>@import'http://ha.ckers.org/xss.css';</STYLE>"),  # remote style sheet 2
80             ("<META HTTP-EQUIV=\"Link\" Content=\"<http://ha.ckers.org/xss.css>; REL=stylesheet\">"),  # remote style sheet 3
81             ("<STYLE>BODY{-moz-binding:url(\"http://ha.ckers.org/xssmoz.xml#xss\")}</STYLE>"),  # remote style sheet 4
82             ("<IMG STYLE=\"xss:expr/*XSS*/ession(alert('XSS'))\">"),  # style attribute using a comment to break up expression
83         ]
84         for content in cases:
85             html = html_sanitize(content)
86             self.assertNotIn('javascript', html, 'html_sanitize did not remove a malicious javascript')
87             self.assertTrue('ha.ckers.org' not in html or 'http://ha.ckers.org/xss.css' in html, 'html_sanitize did not remove a malicious code in %s (%s)' % (content, html))
88
89         content = "<!--[if gte IE 4]><SCRIPT>alert('XSS');</SCRIPT><![endif]-->"  # down-level hidden block
90         self.assertEquals(html_sanitize(content, silent=False), '')
91
92     def test_html(self):
93         sanitized_html = html_sanitize(test_mail_examples.MISC_HTML_SOURCE)
94         for tag in ['<div', '<b', '<i', '<u', '<strike', '<li', '<blockquote', '<a href']:
95             self.assertIn(tag, sanitized_html, 'html_sanitize stripped too much of original html')
96         for attr in ['javascript']:
97             self.assertNotIn(attr, sanitized_html, 'html_sanitize did not remove enough unwanted attributes')
98
99         emails = [("Charles <charles.bidule@truc.fr>", "Charles &lt;charles.bidule@truc.fr&gt;"),
100                 ("Dupuis <'tr/-: ${dupuis#$'@truc.baz.fr>", "Dupuis &lt;'tr/-: ${dupuis#$'@truc.baz.fr&gt;"),
101                 ("Technical <service/technical+2@open.com>", "Technical &lt;service/technical+2@open.com&gt;"),
102                 ("Div nico <div-nico@open.com>", "Div nico &lt;div-nico@open.com&gt;")]
103         for email in emails:
104             self.assertIn(email[1], html_sanitize(email[0]), 'html_sanitize stripped emails of original html')
105
106     def test_edi_source(self):
107         html = html_sanitize(test_mail_examples.EDI_LIKE_HTML_SOURCE)
108         self.assertIn('div style="font-family: \'Lucica Grande\', Ubuntu, Arial, Verdana, sans-serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF;', html,
109             'html_sanitize removed valid style attribute')
110         self.assertIn('<span style="color: #222; margin-bottom: 5px; display: block; ">', html,
111             'html_sanitize removed valid style attribute')
112         self.assertIn('img class="oe_edi_paypal_button" src="https://www.paypal.com/en_US/i/btn/btn_paynowCC_LG.gif"', html,
113             'html_sanitize removed valid img')
114         self.assertNotIn('</body></html>', html, 'html_sanitize did not remove extra closing tags')
115
116
117 class TestCleaner(unittest2.TestCase):
118     """ Test the email cleaner function that filters the content of incoming emails """
119
120     def test_00_basic_text(self):
121         """ html_email_clean test for signatures """
122         test_data = [
123             (
124                 """This is Sparta!\n--\nAdministrator\n+9988776655""",
125                 ['This is Sparta!'],
126                 ['Administrator', '9988776655']
127             ), (
128                 """<p>--\nAdministrator</p>""",
129                 [],
130                 ['--', 'Administrator']
131             ), (
132                 """<p>This is Sparta!\n---\nAdministrator</p>""",
133                 ['This is Sparta!'],
134                 ['---', 'Administrator']
135             ), (
136                 """<p>--<br>Administrator</p>""",
137                 [],
138                 []
139             ), (
140                 """<p>This is Sparta!<br/>--<br>Administrator</p>""",
141                 ['This is Sparta!'],
142                 []
143             ), (
144                 """This is Sparta!\n>Ah bon ?\nCertes\n> Chouette !\nClair""",
145                 ['This is Sparta!', 'Certes', 'Clair'],
146                 ['Ah bon', 'Chouette']
147             )
148         ]
149         for test, in_lst, out_lst in test_data:
150             new_html = html_email_clean(test, remove=True)
151             for text in in_lst:
152                 self.assertIn(text, new_html, 'html_email_cleaner wrongly removed content')
153             for text in out_lst:
154                 self.assertNotIn(text, new_html, 'html_email_cleaner did not remove unwanted content')
155
156     def test_05_shorten(self):
157         # TEST: shorten length
158         test_str = '''<div>
159         <span>
160         </span>
161         <p>Hello, <span>Raoul</span> 
162     <bold>You</bold> are 
163     pretty</p>
164 <span>Really</span>
165 </div>
166 '''
167         # shorten at 'H' of Hello -> should shorten after Hello,
168         html = html_email_clean(test_str, shorten=True, max_length=1, remove=True)
169         self.assertIn('Hello,', html, 'html_email_cleaner: shorten error or too short')
170         self.assertNotIn('Raoul', html, 'html_email_cleaner: shorten error or too long')
171         self.assertIn('read more', html, 'html_email_cleaner: shorten error about read more inclusion')
172         # shorten at 'are' -> should shorten after are
173         html = html_email_clean(test_str, shorten=True, max_length=17, remove=True)
174         self.assertIn('Hello,', html, 'html_email_cleaner: shorten error or too short')
175         self.assertIn('Raoul', html, 'html_email_cleaner: shorten error or too short')
176         self.assertIn('are', html, 'html_email_cleaner: shorten error or too short')
177         self.assertNotIn('pretty', html, 'html_email_cleaner: shorten error or too long')
178         self.assertNotIn('Really', html, 'html_email_cleaner: shorten error or too long')
179         self.assertIn('read more', html, 'html_email_cleaner: shorten error about read more inclusion')
180
181         # TEST: shorten in quote
182         test_str = '''<div> Blahble         
183             bluih      blouh   
184         <blockquote>This is a quote
185         <span>And this is quite a long quote, after all.</span>
186         </blockquote>
187 </div>'''
188         # shorten in the quote
189         html = html_email_clean(test_str, shorten=True, max_length=25, remove=True)
190         self.assertIn('Blahble', html, 'html_email_cleaner: shorten error or too short')
191         self.assertIn('bluih', html, 'html_email_cleaner: shorten error or too short')
192         self.assertIn('blouh', html, 'html_email_cleaner: shorten error or too short')
193         self.assertNotIn('quote', html, 'html_email_cleaner: shorten error or too long')
194         self.assertIn('read more', html, 'html_email_cleaner: shorten error about read more inclusion')
195         # shorten in second word
196         html = html_email_clean(test_str, shorten=True, max_length=9, remove=True)
197         self.assertIn('Blahble', html, 'html_email_cleaner: shorten error or too short')
198         self.assertIn('bluih', html, 'html_email_cleaner: shorten error or too short')
199         self.assertNotIn('blouh', html, 'html_email_cleaner: shorten error or too short')
200         self.assertNotIn('quote', html, 'html_email_cleaner: shorten error or too long')
201         self.assertIn('read more', html, 'html_email_cleaner: shorten error about read more inclusion')
202         # shorten waaay too large
203         html = html_email_clean(test_str, shorten=True, max_length=900, remove=True)
204         self.assertIn('Blahble', html, 'html_email_cleaner: shorten error or too short')
205         self.assertIn('bluih', html, 'html_email_cleaner: shorten error or too short')
206         self.assertIn('blouh', html, 'html_email_cleaner: shorten error or too short')
207         self.assertNotIn('quote', html, 'html_email_cleaner: shorten error or too long')
208
209     def test_10_email_text(self):
210         """ html_email_clean test for text-based emails """
211         new_html = html_email_clean(test_mail_examples.TEXT_1, remove=True)
212         for ext in test_mail_examples.TEXT_1_IN:
213             self.assertIn(ext, new_html, 'html_email_cleaner wrongly removed not quoted content')
214         for ext in test_mail_examples.TEXT_1_OUT:
215             self.assertNotIn(ext, new_html, 'html_email_cleaner did not erase signature / quoted content')
216
217         new_html = html_email_clean(test_mail_examples.TEXT_2, remove=True)
218         for ext in test_mail_examples.TEXT_2_IN:
219             self.assertIn(ext, new_html, 'html_email_cleaner wrongly removed not quoted content')
220         for ext in test_mail_examples.TEXT_2_OUT:
221             self.assertNotIn(ext, new_html, 'html_email_cleaner did not erase signature / quoted content')
222
223     def test_20_email_html(self):
224         new_html = html_email_clean(test_mail_examples.HTML_1, remove=True)
225         for ext in test_mail_examples.HTML_1_IN:
226             self.assertIn(ext, new_html, 'html_email_cleaner wrongly removed not quoted content')
227         for ext in test_mail_examples.HTML_1_OUT:
228             self.assertNotIn(ext, new_html, 'html_email_cleaner did not erase signature / quoted content')
229
230         new_html = html_email_clean(test_mail_examples.HTML_2, remove=True)
231         for ext in test_mail_examples.HTML_2_IN:
232             self.assertIn(ext, new_html, 'html_email_cleaner wrongly removed not quoted content')
233         for ext in test_mail_examples.HTML_2_OUT:
234             self.assertNotIn(ext, new_html, 'html_email_cleaner did not erase signature / quoted content')
235
236         # --- MAIL ORIGINAL --- -> can't parse this one currently, too much language-dependent
237         # new_html = html_email_clean(test_mail_examples.HTML_3, remove=False)
238         # for ext in test_mail_examples.HTML_3_IN:
239         #     self.assertIn(ext, new_html, 'html_email_cleaner wrongly removed not quoted content')
240         # for ext in test_mail_examples.HTML_3_OUT:
241         #     self.assertNotIn(ext, new_html, 'html_email_cleaner did not erase signature / quoted content')
242
243     def test_30_email_msoffice(self):
244         new_html = html_email_clean(test_mail_examples.MSOFFICE_1, remove=True)
245         for ext in test_mail_examples.MSOFFICE_1_IN:
246             self.assertIn(ext, new_html, 'html_email_cleaner wrongly removed not quoted content')
247         for ext in test_mail_examples.MSOFFICE_1_OUT:
248             self.assertNotIn(ext, new_html, 'html_email_cleaner did not erase signature / quoted content')
249
250         new_html = html_email_clean(test_mail_examples.MSOFFICE_2, remove=True)
251         for ext in test_mail_examples.MSOFFICE_2_IN:
252             self.assertIn(ext, new_html, 'html_email_cleaner wrongly removed not quoted content')
253         for ext in test_mail_examples.MSOFFICE_2_OUT:
254             self.assertNotIn(ext, new_html, 'html_email_cleaner did not erase signature / quoted content')
255
256         new_html = html_email_clean(test_mail_examples.MSOFFICE_3, remove=True)
257         for ext in test_mail_examples.MSOFFICE_3_IN:
258             self.assertIn(ext, new_html, 'html_email_cleaner wrongly removed not quoted content')
259         for ext in test_mail_examples.MSOFFICE_3_OUT:
260             self.assertNotIn(ext, new_html, 'html_email_cleaner did not erase signature / quoted content')
261
262     def test_40_email_hotmail(self):
263         new_html = html_email_clean(test_mail_examples.HOTMAIL_1, remove=True)
264         for ext in test_mail_examples.HOTMAIL_1_IN:
265             self.assertIn(ext, new_html, 'html_email_cleaner wrongly removed not quoted content')
266         for ext in test_mail_examples.HOTMAIL_1_OUT:
267             self.assertNotIn(ext, new_html, 'html_email_cleaner did not erase signature / quoted content')
268
269     def test_50_email_gmail(self):
270         new_html = html_email_clean(test_mail_examples.GMAIL_1, remove=True)
271         for ext in test_mail_examples.GMAIL_1_IN:
272             self.assertIn(ext, new_html, 'html_email_cleaner wrongly removed not quoted content')
273         for ext in test_mail_examples.GMAIL_1_OUT:
274             self.assertNotIn(ext, new_html, 'html_email_cleaner did not erase signature / quoted content')
275
276     def test_60_email_thunderbird(self):
277         new_html = html_email_clean(test_mail_examples.THUNDERBIRD_1, remove=True)
278         for ext in test_mail_examples.THUNDERBIRD_1_IN:
279             self.assertIn(ext, new_html, 'html_email_cleaner wrongly removed not quoted content')
280         for ext in test_mail_examples.THUNDERBIRD_1_OUT:
281             self.assertNotIn(ext, new_html, 'html_email_cleaner did not erase signature / quoted content')
282
283     def test_70_read_more_and_shorten(self):
284         expand_options = {
285             'oe_expand_container_class': 'span_class',
286             'oe_expand_container_content': 'Herbert Einstein',
287             'oe_expand_separator_node': 'br_lapin',
288             'oe_expand_a_class': 'a_class',
289             'oe_expand_a_content': 'read mee',
290         }
291         new_html = html_email_clean(test_mail_examples.OERP_WEBSITE_HTML_1, remove=True, shorten=True, max_length=100, expand_options=expand_options)
292         for ext in test_mail_examples.OERP_WEBSITE_HTML_1_IN:
293             self.assertIn(ext, new_html, 'html_email_cleaner wrongly removed not quoted content')
294         for ext in test_mail_examples.OERP_WEBSITE_HTML_1_OUT:
295             self.assertNotIn(ext, new_html, 'html_email_cleaner did not erase overlimit content')
296         for ext in ['<span class="span_class">Herbert Einstein<br_lapin></br_lapin><a href="#" class="a_class">read mee</a></span>']:
297             self.assertIn(ext, new_html, 'html_email_cleaner wrongly take into account specific expand options')
298
299         new_html = html_email_clean(test_mail_examples.OERP_WEBSITE_HTML_2, remove=True, shorten=True, max_length=200, expand_options=expand_options, protect_sections=False)
300         for ext in test_mail_examples.OERP_WEBSITE_HTML_2_IN:
301             self.assertIn(ext, new_html, 'html_email_cleaner wrongly removed not quoted content')
302         for ext in test_mail_examples.OERP_WEBSITE_HTML_2_OUT:
303             self.assertNotIn(ext, new_html, 'html_email_cleaner did not erase overlimit content')
304         for ext in ['<span class="span_class">Herbert Einstein<br_lapin></br_lapin><a href="#" class="a_class">read mee</a></span>']:
305             self.assertIn(ext, new_html, 'html_email_cleaner wrongly take into account specific expand options')
306
307         new_html = html_email_clean(test_mail_examples.OERP_WEBSITE_HTML_2, remove=True, shorten=True, max_length=200, expand_options=expand_options, protect_sections=True)
308         for ext in test_mail_examples.OERP_WEBSITE_HTML_2_IN:
309             self.assertIn(ext, new_html, 'html_email_cleaner wrongly removed not quoted content')
310         for ext in test_mail_examples.OERP_WEBSITE_HTML_2_OUT:
311             self.assertNotIn(ext, new_html, 'html_email_cleaner did not erase overlimit content')
312         for ext in [
313                 '<span class="span_class">Herbert Einstein<br_lapin></br_lapin><a href="#" class="a_class">read mee</a></span>',
314                 'tasks using the gantt chart and control deadlines']:
315             self.assertIn(ext, new_html, 'html_email_cleaner wrongly take into account specific expand options')
316
317     def test_70_read_more(self):
318         new_html = html_email_clean(test_mail_examples.BUG1, remove=True, shorten=True, max_length=100)
319         for ext in test_mail_examples.BUG_1_IN:
320             self.assertIn(ext, new_html, 'html_email_cleaner wrongly removed valid content')
321         for ext in test_mail_examples.BUG_1_OUT:
322             self.assertNotIn(ext, new_html, 'html_email_cleaner did not removed invalid content')
323
324         new_html = html_email_clean(test_mail_examples.BUG2, remove=True, shorten=True, max_length=250)
325         for ext in test_mail_examples.BUG_2_IN:
326             self.assertIn(ext, new_html, 'html_email_cleaner wrongly removed valid content')
327         for ext in test_mail_examples.BUG_2_OUT:
328             self.assertNotIn(ext, new_html, 'html_email_cleaner did not removed invalid content')
329
330     def test_90_misc(self):
331         # False boolean for text must return empty string
332         new_html = html_email_clean(False)
333         self.assertEqual(new_html, False, 'html_email_cleaner did change a False in an other value.')
334
335         # Message with xml and doctype tags don't crash
336         new_html = html_email_clean(u'<?xml version="1.0" encoding="iso-8859-1"?>\n<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"\n         "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\n<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">\n <head>\n  <title>404 - Not Found</title>\n </head>\n <body>\n  <h1>404 - Not Found</h1>\n </body>\n</html>\n')
337         self.assertNotIn('encoding', new_html, 'html_email_cleaner did not remove correctly encoding attributes')
338
339
340 class TestHtmlTools(unittest2.TestCase):
341     """ Test some of our generic utility functions about html """
342
343     def test_plaintext2html(self):
344         cases = [
345             ("First \nSecond \nThird\n \nParagraph\n\r--\nSignature paragraph", 'div',
346              "<div><p>First <br/>Second <br/>Third</p><p>Paragraph</p><p>--<br/>Signature paragraph</p></div>"),
347             ("First<p>It should be escaped</p>\nSignature", False,
348              "<p>First&lt;p&gt;It should be escaped&lt;/p&gt;<br/>Signature</p>")
349         ]
350         for content, container_tag, expected in cases:
351             html = plaintext2html(content, container_tag)
352             self.assertEqual(html, expected, 'plaintext2html is broken')
353
354     def test_append_to_html(self):
355         test_samples = [
356             ('<!DOCTYPE...><HTML encoding="blah">some <b>content</b></HtMl>', '--\nYours truly', True, True, False,
357              '<!DOCTYPE...><html encoding="blah">some <b>content</b>\n<pre>--\nYours truly</pre>\n</html>'),
358             ('<!DOCTYPE...><HTML encoding="blah">some <b>content</b></HtMl>', '--\nYours truly', True, False, False,
359              '<!DOCTYPE...><html encoding="blah">some <b>content</b>\n<p>--<br/>Yours truly</p>\n</html>'),
360             ('<html><body>some <b>content</b></body></html>', '<!DOCTYPE...>\n<html><body>\n<p>--</p>\n<p>Yours truly</p>\n</body>\n</html>', False, False, False,
361              '<html><body>some <b>content</b>\n\n\n<p>--</p>\n<p>Yours truly</p>\n\n\n</body></html>'),
362         ]
363         for html, content, plaintext_flag, preserve_flag, container_tag, expected in test_samples:
364             self.assertEqual(append_content_to_html(html, content, plaintext_flag, preserve_flag, container_tag), expected, 'append_content_to_html is broken')
365
366 class TestEmailTools(unittest2.TestCase):
367     """ Test some of our generic utility functions for emails """
368
369     def test_email_split(self):
370         cases = [
371             ("John <12345@gmail.com>", ['12345@gmail.com']), # regular form 
372             ("d@x; 1@2", ['d@x', '1@2']), # semi-colon + extra space
373             ("'(ss)' <123@gmail.com>, 'foo' <foo@bar>", ['123@gmail.com','foo@bar']), # comma + single-quoting
374             ('"john@gmail.com"<johnny@gmail.com>', ['johnny@gmail.com']), # double-quoting
375             ('"<jg>" <johnny@gmail.com>', ['johnny@gmail.com']), # double-quoting with brackets 
376         ]
377         for text, expected in cases:
378             self.assertEqual(email_split(text), expected, 'email_split is broken')
379
380 if __name__ == '__main__':
381     unittest2.main()