From 91f097d34d4a0b15fad37b61f53021e17930174c Mon Sep 17 00:00:00 2001 From: "arseny.kapoulkine" Date: Tue, 14 Sep 2010 05:43:13 +0000 Subject: tests: Improved XPath sort coverage git-svn-id: http://pugixml.googlecode.com/svn/trunk@730 99668b35-9821-0410-8761-19e4c4f06640 --- tests/test_xpath.cpp | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'tests/test_xpath.cpp') diff --git a/tests/test_xpath.cpp b/tests/test_xpath.cpp index 1c1629f..e6ac2cf 100644 --- a/tests/test_xpath.cpp +++ b/tests/test_xpath.cpp @@ -7,6 +7,8 @@ #include #include +#include +#include static void load_document_copy(xml_document& doc, const char_t* text) { @@ -120,6 +122,24 @@ TEST_XML(xpath_sort_attributes, "") xpath_node_set_tester(reverse_sorted, "reverse sorted order failed") % 5 % 4 % 3; } +TEST(xpath_sort_random_large) +{ + xml_document doc; + load_document_copy(doc, STR("testtesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttest")); + + xpath_node_set ns = doc.select_nodes(STR("//node() | //@*")); + + std::vector nsv(ns.begin(), ns.end()); + std::random_shuffle(nsv.begin(), nsv.end()); + + xpath_node_set copy(&nsv[0], &nsv[0] + nsv.size()); + copy.sort(); + + xpath_node_set_tester tester(copy, "sorted order failed"); + + for (unsigned int i = 2; i < 129; ++i) tester % i; +} + TEST(xpath_long_numbers_parse) { const pugi::char_t* str_flt_max = STR("340282346638528860000000000000000000000"); -- cgit v1.2.3