From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sat, 28 Jul 2018 15:59:18 +0000 (-0700) Subject: bpo-33476: Fix _header_value_parser when address group is missing final ';' (GH-7484) X-Git-Tag: v3.6.7rc1~146 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f17e001746e0f697e9bd49ac3748f2543b0a0d47;p=python bpo-33476: Fix _header_value_parser when address group is missing final ';' (GH-7484) (cherry picked from commit 8fe9eed937cb69b5e26ac6e36a90b5360eb11277) Co-authored-by: Dong-hee Na --- diff --git a/Lib/email/_header_value_parser.py b/Lib/email/_header_value_parser.py index 14ffd30ca4..de7ab5d12e 100644 --- a/Lib/email/_header_value_parser.py +++ b/Lib/email/_header_value_parser.py @@ -1876,7 +1876,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')) diff --git a/Lib/test/test_email/test__header_value_parser.py b/Lib/test/test_email/test__header_value_parser.py index 5036de2ca0..676732bb3d 100644 --- a/Lib/test/test_email/test__header_value_parser.py +++ b/Lib/test/test_email/test__header_value_parser.py @@ -2152,6 +2152,31 @@ class TestParser(TestParserMixin, TestEmailBase): 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" ,' + 'eric@where.test,John '), + ('Monty Python:"Fred A. Bear" ,' + 'eric@where.test,John ;'), + ('Monty Python:"Fred A. Bear" ,' + 'eric@where.test,John ;'), + [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, + 'dinsdale@example.com') + self.assertEqual(group.mailboxes[0].display_name, + 'Fred A. Bear') + self.assertEqual(group.mailboxes[1].addr_spec, + 'eric@where.test') + 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): diff --git a/Misc/NEWS.d/next/Library/2018-06-08-00-29-40.bpo-33476.R0Bhlj.rst b/Misc/NEWS.d/next/Library/2018-06-08-00-29-40.bpo-33476.R0Bhlj.rst new file mode 100644 index 0000000000..8104753c05 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2018-06-08-00-29-40.bpo-33476.R0Bhlj.rst @@ -0,0 +1,2 @@ +Fix _header_value_parser.py when address group is missing final ';'. +Contributed by Enrique Perez-Terron