-
Notifications
You must be signed in to change notification settings - Fork 287
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #155 from mailgun/sergey/appointment
fix appointments in text
- Loading branch information
Showing
3 changed files
with
36 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -165,15 +165,15 @@ | |
RE_FROM_COLON_OR_DATE_COLON, | ||
# 02.04.2012 14:20 пользователь "[email protected]" < | ||
# [email protected]> написал: | ||
re.compile("(\d+/\d+/\d+|\d+\.\d+\.\d+).*@", re.S), | ||
re.compile("(\d+/\d+/\d+|\d+\.\d+\.\d+).*\s\S+@\S+", re.S), | ||
# 2014-10-17 11:28 GMT+03:00 Bob < | ||
# [email protected]>: | ||
re.compile("\d{4}-\d{2}-\d{2}\s+\d{2}:\d{2}\s+GMT.*@", re.S), | ||
re.compile("\d{4}-\d{2}-\d{2}\s+\d{2}:\d{2}\s+GMT.*\s\S+@\S+", re.S), | ||
# Thu, 26 Jun 2014 14:00:51 +0400 Bob <[email protected]>: | ||
re.compile('\S{3,10}, \d\d? \S{3,10} 20\d\d,? \d\d?:\d\d(:\d\d)?' | ||
'( \S+){3,6}@\S+:'), | ||
# Sent from Samsung MobileName <[email protected]> wrote: | ||
re.compile('Sent from Samsung .*@.*> wrote'), | ||
re.compile('Sent from Samsung.* \S+@\S+> wrote'), | ||
RE_ANDROID_WROTE, | ||
RE_POLYMAIL | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -119,6 +119,38 @@ def test_pattern_on_date_somebody_sent(): | |
eq_("Test reply", quotations.extract_from_plain(msg_body)) | ||
|
||
|
||
def test_appointment(): | ||
msg_body = """Response | ||
10/19/2017 @ 9:30 am for physical therapy | ||
Bla | ||
1517 4th Avenue Ste 300 | ||
London CA 19129, 555-421-6780 | ||
John Doe, FCLS | ||
Mailgun Inc | ||
555-941-0697 | ||
From: [email protected] [mailto:[email protected]] | ||
Sent: Wednesday, October 18, 2017 2:05 PM | ||
To: John Doer - SIU <[email protected]> | ||
Subject: RE: Claim # 5551188-1 | ||
Text""" | ||
|
||
expected = """Response | ||
10/19/2017 @ 9:30 am for physical therapy | ||
Bla | ||
1517 4th Avenue Ste 300 | ||
London CA 19129, 555-421-6780 | ||
John Doe, FCLS | ||
Mailgun Inc | ||
555-941-0697""" | ||
eq_(expected, quotations.extract_from_plain(msg_body)) | ||
|
||
|
||
def test_line_starts_with_on(): | ||
msg_body = """Blah-blah-blah | ||
On blah-blah-blah""" | ||
|