From ba39838ab587173ed6f08841f4a135403d605911 Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Wed, 8 Feb 2017 00:09:32 -0800 Subject: tests: Add more XPath out of memory tests --- tests/test_xpath.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'tests/test_xpath.cpp') diff --git a/tests/test_xpath.cpp b/tests/test_xpath.cpp index 6cae607..a2af5e6 100644 --- a/tests/test_xpath.cpp +++ b/tests/test_xpath.cpp @@ -521,6 +521,19 @@ TEST(xpath_memory_concat_massive) CHECK(size == 5001); } +TEST_XML(xpath_memory_translate_table, "a") +{ + test_runner::_memory_fail_threshold = 32768 + 4096 + 128; + + // 128b per table => we need 32 translate calls to exhaust a page + std::basic_string query = STR("concat("); + for (int i = 0; i < 32; ++i) + query += STR("translate(.,'a','A'),"); + query += STR("'')"); + + CHECK_ALLOC_FAIL(pugi::xpath_query(query.c_str()).evaluate_string(doc.first_child()) == STR("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA")); +} + TEST_XML(xpath_sort_copy_share, "test") { // copy sharing shares the name/value data for nodes that can potentially make document order optimization invalid (silently) -- cgit v1.2.3