From 187650bad97d76704b5542028d91dc351119e665 Mon Sep 17 00:00:00 2001 From: Rhodri James Date: Fri, 5 May 2017 16:40:17 +0100 Subject: [PATCH] Test long notation value with external entity and failing allocator --- expat/tests/runtests.c | 85 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 85 insertions(+) diff --git a/expat/tests/runtests.c b/expat/tests/runtests.c index 9fa49ae3..8698a06c 100644 --- a/expat/tests/runtests.c +++ b/expat/tests/runtests.c @@ -8299,6 +8299,90 @@ START_TEST(test_alloc_long_entity_value) #undef MAX_ALLOC_COUNT END_TEST +START_TEST(test_alloc_long_notation) +{ + const char *text = + "\n" + " \n" + " \n" + "]>\n" + "&e2;"; + ExtOption options[] = { + { "foo", "Entity Foo" }, + { "bar", "Entity Bar" }, + { NULL, NULL } + }; + int i; +#define MAX_ALLOC_COUNT 20 + int repeat = 0; + + for (i = 0; i < MAX_ALLOC_COUNT; i++) { + /* Repeat some counts to defeat cached allocations */ + if (i == 5 && repeat == 5) { + i -= 2; + repeat++; + } + else if ((i == 2 && repeat < 3) || + (i == 3 && (repeat == 3 || repeat == 4)) || + (i == 4 && repeat == 6) || + (i == 5 && repeat == 7)) { + i--; + repeat++; + } + allocation_count = i; + XML_SetUserData(parser, options); + XML_SetParamEntityParsing(parser, XML_PARAM_ENTITY_PARSING_ALWAYS); + XML_SetExternalEntityRefHandler(parser, external_entity_optioner); + if (_XML_Parse_SINGLE_BYTES(parser, text, strlen(text), + XML_TRUE) != XML_STATUS_ERROR) + break; + XML_ParserReset(parser, NULL); + } + if (i == 0) + fail("Parsing worked despite failing allocations"); + else if (i == MAX_ALLOC_COUNT) + fail("Parsing failed even at max allocation count"); +} +#undef MAX_ALLOC_COUNT +END_TEST + static void nsalloc_setup(void) @@ -10159,6 +10243,7 @@ make_suite(void) tcase_add_test(tc_alloc, test_alloc_long_base); tcase_add_test(tc_alloc, test_alloc_long_public_id); tcase_add_test(tc_alloc, test_alloc_long_entity_value); + tcase_add_test(tc_alloc, test_alloc_long_notation); suite_add_tcase(s, tc_nsalloc); tcase_add_checked_fixture(tc_nsalloc, nsalloc_setup, nsalloc_teardown); -- 2.40.0