mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
bpo-29412: Fix indexError when parsing a header value ending unexpectedly (GH-14387)
* patched string index out of range error in get_word function of _header_value_parser.py and created tests in test__header_value_parser.py for CFWS. * Raise HeaderParseError instead of continuing when parsing a word.
This commit is contained in:
parent
2a7d596f27
commit
7213df7bbf
3 changed files with 22 additions and 0 deletions
|
@ -930,6 +930,12 @@ class TestParser(TestParserMixin, TestEmailBase):
|
|||
self.assertEqual(word.token_type, 'atom')
|
||||
self.assertEqual(word[0].token_type, 'cfws')
|
||||
|
||||
def test_get_word_all_CFWS(self):
|
||||
# bpo-29412: Test that we don't raise IndexError when parsing CFWS only
|
||||
# token.
|
||||
with self.assertRaises(errors.HeaderParseError):
|
||||
parser.get_word('(Recipients list suppressed')
|
||||
|
||||
def test_get_word_qs_yields_qs(self):
|
||||
word = self._test_get_x(parser.get_word,
|
||||
'"bar " (bang) ah', '"bar " (bang) ', 'bar ', [], 'ah')
|
||||
|
@ -2343,6 +2349,17 @@ class TestParser(TestParserMixin, TestEmailBase):
|
|||
|
||||
# get_address_list
|
||||
|
||||
def test_get_address_list_CFWS(self):
|
||||
address_list = self._test_get_x(parser.get_address_list,
|
||||
'(Recipient list suppressed)',
|
||||
'(Recipient list suppressed)',
|
||||
' ',
|
||||
[errors.ObsoleteHeaderDefect], # no content in address list
|
||||
'')
|
||||
self.assertEqual(address_list.token_type, 'address-list')
|
||||
self.assertEqual(len(address_list.mailboxes), 0)
|
||||
self.assertEqual(address_list.mailboxes, address_list.all_mailboxes)
|
||||
|
||||
def test_get_address_list_mailboxes_simple(self):
|
||||
address_list = self._test_get_x(parser.get_address_list,
|
||||
'dinsdale@example.com',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue