summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_email
diff options
context:
space:
mode:
authorAbhilash Raj <maxking@users.noreply.github.com>2019-08-11 20:45:09 (GMT)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-08-11 20:45:09 (GMT)
commit09a1872a8007048dcdf825a476816c5e3498b8f8 (patch)
tree908c334d48e20b9ab0bd5ab84a339679add694ff /Lib/test/test_email
parent51aac15f6d525595e200e3580409c4b8656e8a96 (diff)
downloadcpython-09a1872a8007048dcdf825a476816c5e3498b8f8.zip
cpython-09a1872a8007048dcdf825a476816c5e3498b8f8.tar.gz
cpython-09a1872a8007048dcdf825a476816c5e3498b8f8.tar.bz2
bpo-32178: Fix IndexError trying to parse 'To' header starting with ':'. (GH-15044)
This should fix the IndexError trying to retrieve `DisplayName.display_name` and `DisplayName.value` when the `value` is basically an empty string. https://bugs.python.org/issue32178
Diffstat (limited to 'Lib/test/test_email')
-rw-r--r--Lib/test/test_email/test__header_value_parser.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/Lib/test/test_email/test__header_value_parser.py b/Lib/test/test_email/test__header_value_parser.py
index f6e5886..b3e6b26 100644
--- a/Lib/test/test_email/test__header_value_parser.py
+++ b/Lib/test/test_email/test__header_value_parser.py
@@ -1700,6 +1700,14 @@ class TestParser(TestParserMixin, TestEmailBase):
self.assertEqual(display_name[3].comments, ['with trailing comment'])
self.assertEqual(display_name.display_name, 'simple phrase.')
+ def test_get_display_name_for_invalid_address_field(self):
+ # bpo-32178: Test that address fields starting with `:` don't cause
+ # IndexError when parsing the display name.
+ display_name = self._test_get_x(
+ parser.get_display_name,
+ ':Foo ', '', '', [errors.InvalidHeaderDefect], ':Foo ')
+ self.assertEqual(display_name.value, '')
+
# get_name_addr
def test_get_name_addr_angle_addr_only(self):