From 5a4cedbe912e1dd9fac1e4b5f0a5b33b0b1900f8 Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Tue, 25 Feb 2014 03:41:57 +0000 Subject: tests: Add tests for parse_trim_pcdata. git-svn-id: https://pugixml.googlecode.com/svn/trunk@988 99668b35-9821-0410-8761-19e4c4f06640 --- tests/test_parse.cpp | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/tests/test_parse.cpp b/tests/test_parse.cpp index c9eeb82..38b09f5 100644 --- a/tests/test_parse.cpp +++ b/tests/test_parse.cpp @@ -425,6 +425,62 @@ TEST(parse_pcdata_error) CHECK(doc.load(STR("pcdata"), parse_minimal).status == status_end_element_mismatch); } +TEST(parse_pcdata_trim) +{ + struct test_data_t + { + const pugi::char_t* source; + const pugi::char_t* result; + unsigned int flags; + }; + + test_data_t test_data[] = + { + { STR(" text"), STR("text"), 0 }, + { STR("\t\n text"), STR("text"), 0 }, + { STR("text "), STR("text"), 0 }, + { STR("text \t\n"), STR("text"), 0 }, + { STR("\r\n\t text \t\n\r"), STR("text"), 0 }, + { STR(" text"), STR("text"), parse_fragment }, + { STR("\t\n text"), STR("text"), parse_fragment }, + { STR("text "), STR("text"), parse_fragment }, + { STR("text \t\n"), STR("text"), parse_fragment }, + { STR("\r\n\t text \t\n\r"), STR("text"), parse_fragment }, + { STR("\r\n\t text \t\n\r more \r\n\t"), STR("text \t\n\r more"), 0 }, + { STR("\r\n\t text \t\n\r more \r\n\t"), STR("text \t\n\n more"), parse_eol }, + { STR("\r\n\t text \r\n\r\n\r\n\r\n\r\n\r\n\r\n more \r\n\t"), STR("text \n\n\n\n\n\n\n more"), parse_eol }, + { STR(" test&&&&&&& "), STR("test&&&&&&&"), 0 }, + { STR(" test&&&&&&& "), STR("test&&&&&&&"), parse_escapes }, + { STR(" test&&&&&&& "), STR("test&&&&&&&"), parse_fragment | parse_escapes } + }; + + for (size_t i = 0; i < sizeof(test_data) / sizeof(test_data[0]); ++i) + { + const test_data_t& td = test_data[i]; + + xml_document doc; + CHECK(doc.load(td.source, td.flags | parse_trim_pcdata)); + + const pugi::char_t* value = doc.child(STR("node")) ? doc.child_value(STR("node")) : doc.text().get(); + CHECK_STRING(value, td.result); + } +} + +TEST(parse_pcdata_trim_empty) +{ + unsigned int flags[] = { 0, parse_ws_pcdata, parse_ws_pcdata_single, parse_ws_pcdata | parse_ws_pcdata_single }; + + for (size_t i = 0; i < sizeof(flags) / sizeof(flags[0]); ++i) + { + xml_document doc; + CHECK(doc.load(STR(" "), flags[i] | parse_trim_pcdata)); + + xml_node node = doc.child(STR("node")); + CHECK(node); + CHECK(!node.first_child()); + } +} + TEST(parse_escapes_skip) { xml_document doc; -- cgit v1.2.3