-
Notifications
You must be signed in to change notification settings - Fork 204
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 #67 from inboxapp/master
Fix for decoding errors if the list includes a non-ASCII string.
- Loading branch information
Showing
2 changed files
with
32 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -106,6 +106,24 @@ def test_addresslist_with_apostrophe(): | |
eq_(u'Eugueny ώ Kontsevoy', lst[0].display_name) | ||
|
||
|
||
def test_addresslist_non_ascii_list_input(): | ||
al = [u'Aurélien Berger <[email protected]>', 'Os Wi <[email protected]>'] | ||
lst = parse_list(al) | ||
eq_(2, len(lst)) | ||
eq_('=?utf-8?q?Aur=C3=A9lien_Berger?= <[email protected]>', lst[0].full_spec()) | ||
eq_('Os Wi <[email protected]>', lst[1].full_spec()) | ||
|
||
|
||
def test_addresslist_address_obj_list_input(): | ||
al = [EmailAddress(u'Aurélien Berger <[email protected]>'), | ||
UrlAddress('https://www.example.com')] | ||
lst = parse_list(al) | ||
eq_(2, len(lst)) | ||
eq_('=?utf-8?q?Aur=C3=A9lien_Berger?= <[email protected]>', | ||
lst[0].full_spec()) | ||
eq_('https://www.example.com', lst[1].full_spec()) | ||
|
||
|
||
def test_edge_cases(): | ||
email = EmailAddress('"foo.bar@"@example.com') | ||
eq_('"foo.bar@"@example.com', email.address) | ||
|