Skip to content

Commit

Permalink
bpo-33476: Fix _header_value_parser when address group is missing fin…
Browse files Browse the repository at this point in the history
…al ';' (pythonGH-7484)
  • Loading branch information
corona10 authored and zooba committed Jul 28, 2018
1 parent 1d2dafa commit 8fe9eed
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/email/_header_value_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -1875,7 +1875,7 @@ def get_group(value):
if not value:
group.defects.append(errors.InvalidHeaderDefect(
"end of header in group"))
if value[0] != ';':
elif value[0] != ';':
raise errors.HeaderParseError(
"expected ';' at end of group but found {}".format(value))
group.append(ValueTerminal(';', 'group-terminator'))
Expand Down
25 changes: 25 additions & 0 deletions Lib/test/test_email/test__header_value_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -2152,6 +2152,31 @@ def test_get_group_one_invalid(self):
self.assertEqual(group.mailboxes[1].local_part, 'x')
self.assertIsNone(group.all_mailboxes[1].display_name)

def test_get_group_missing_final_semicol(self):
group = self._test_get_x(parser.get_group,
('Monty Python:"Fred A. Bear" <[email protected]>,'
'[email protected],John <jdoe@test>'),
('Monty Python:"Fred A. Bear" <[email protected]>,'
'[email protected],John <jdoe@test>;'),
('Monty Python:"Fred A. Bear" <[email protected]>,'
'[email protected],John <jdoe@test>;'),
[errors.InvalidHeaderDefect],
'')
self.assertEqual(group.token_type, 'group')
self.assertEqual(group.display_name, 'Monty Python')
self.assertEqual(len(group.mailboxes), 3)
self.assertEqual(group.mailboxes,
group.all_mailboxes)
self.assertEqual(group.mailboxes[0].addr_spec,
'[email protected]')
self.assertEqual(group.mailboxes[0].display_name,
'Fred A. Bear')
self.assertEqual(group.mailboxes[1].addr_spec,
'[email protected]')
self.assertEqual(group.mailboxes[2].display_name,
'John')
self.assertEqual(group.mailboxes[2].addr_spec,
'jdoe@test')
# get_address

def test_get_address_simple(self):
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Fix _header_value_parser.py when address group is missing final ';'.
Contributed by Enrique Perez-Terron

0 comments on commit 8fe9eed

Please sign in to comment.