/askbot/tests/test_email_parsing.py

https://github.com/ASKBOT/askbot-devel · Python · 106 lines · 92 code · 13 blank · 1 comment · 0 complexity · d3be2600a103df05a10678be1635c529 MD5 · raw file

  1. # -*- coding: utf-8 -*-
  2. from django.conf import settings as django_settings
  3. from django.template import Context
  4. from django.template.loader import get_template
  5. from askbot import mail
  6. from askbot.mail.messages import WelcomeEmailRespondable
  7. from askbot import models
  8. from askbot.tests import utils
  9. from askbot.utils.html import get_text_from_html
  10. class EmailParsingTests(utils.AskbotTestCase):
  11. def setUp(self):
  12. data = {
  13. 'site_name': 'askbot.com',
  14. 'email_code': 'DwFwndQty',
  15. 'recipient_user': self.create_user()
  16. }
  17. email = WelcomeEmailRespondable(data)
  18. self.rendered_template = email.render_body()
  19. self.expected_output = 'Welcome to askbot.com!\n\nImportant: Please reply to this message, without editing it. We need this to determine your email signature and that the email address is valid and was typed correctly.\n\nUntil we receive the response from you, you will not be able ask or answer questions on askbot.com by email.\n\nSincerely,askbot.com Administrator\n\nDwFwndQty'
  20. def test_gmail_rich_text_response_stripped(self):
  21. text = '\n\nthis is my reply!\n\nOn Wed, Oct 31, 2012 at 1:45 AM, <kp@kp-dev.askbot.com> wrote:\n\n> **\n> '
  22. self.assertEqual(mail.extract_reply(text), 'this is my reply!')
  23. def test_gmail_plain_text_response_stripped(self):
  24. text = '\n\nthis is my another reply!\n\nOn Wed, Oct 31, 2012 at 1:45 AM, <kp@kp-dev.askbot.com> wrote:\n>\n> '
  25. self.assertEqual(mail.extract_reply(text), 'this is my another reply!')
  26. def test_yahoo_mail_response_stripped(self):
  27. text = '\n\nthis is my reply!\n\n\n\n________________________________\n From: "kp@kp-dev.askbot.com" <kp@kp-dev.askbot.com>\nTo: fadeev@rocketmail.com \nSent: Wednesday, October 31, 2012 2:41 AM\nSubject: "This is my test question"\n \n\n \n \n \n'
  28. self.assertEqual(mail.extract_reply(text), 'this is my reply!')
  29. def test_kmail_plain_text_response_stripped(self):
  30. text = 'On Monday 01 October 2012 21:22:44 you wrote: \n\nthis is my reply!'
  31. self.assertEqual(mail.extract_reply(text), 'this is my reply!')
  32. def test_outlook_com_with_rtf_response_stripped(self):
  33. text = 'outlook.com (new hotmail) with RTF on \n\nSubject: "Posting a question by email." \nFrom: kp@kp-dev.askbot.com \nTo: aj_fitoria@hotmail.com \nDate: Thu, 1 Nov 2012 16:30:27 +0000'
  34. self.assertEqual(
  35. mail.extract_reply(text),
  36. 'outlook.com (new hotmail) with RTF on'
  37. )
  38. self.assertEqual(
  39. mail.extract_reply(text),
  40. 'outlook.com (new hotmail) with RTF on'
  41. )
  42. def test_outlook_com_plain_text_response_stripped(self):
  43. text = 'reply from hotmail without RTF \n________________________________ \n> Subject: "test with recovered signature" \n> From: kp@kp-dev.askbot.com \n> To: aj_fitoria@hotmail.com \n> Date: Thu, 1 Nov 2012 16:44:35 +0000'
  44. self.assertEqual(
  45. mail.extract_reply(text),
  46. 'reply from hotmail without RTF'
  47. )
  48. def test_outlook_desktop1(self):
  49. text = """some real text
  50. -----Original Message-----
  51. From: forum@example.com [mailto:forum@example.com]
  52. Sent: Wednesday, August 07, 2013 11:00 AM
  53. To: Jane Doe
  54. Subject: "One more test question from email."
  55. """
  56. self.assertEqual(mail.extract_reply(text), "some real text")
  57. def test_some_other(self):
  58. text = """some real text
  59. -------- Original message --------
  60. From: forum@example.com [mailto:forum@example.com]
  61. Sent: Wednesday, August 07, 2013 11:00 AM
  62. To: Jane Doe
  63. Subject: "One more test question from email."
  64. """
  65. self.assertEqual(mail.extract_reply(text), "some real text")
  66. def test_some_other1(self):
  67. text = 'some text here\n\n\n-------- Original message --------\nFrom: forum@example.com\nDate:12/15/2013 2:35 AM (GMT-05:00)\nTo: Some One\nSubject: some subject\n\n\n\n'
  68. self.assertEqual(mail.extract_reply(text), 'some text here')
  69. def test_blackberry(self):
  70. text = """Lorem ipsum lorem ipsum
  71. blah blah blah
  72. some more text here
  73. Joe
  74. ________________________________________
  75. From: forum@ask.askbot.com
  76. Sent: Thursday, August 15, 2013 1:58:21 AM
  77. To: Mister Joe
  78. Subject: Our forum: "some text in the subject line"
  79. """
  80. expected = """Lorem ipsum lorem ipsum
  81. blah blah blah
  82. some more text here
  83. Joe"""
  84. self.assertEqual(mail.extract_reply(text), expected)