tests: Removed invalid document order test, improved document order coverage by adding tests that are not subject to document order optimization
git-svn-id: http://pugixml.googlecode.com/svn/trunk@615 99668b35-9821-0410-8761-19e4c4f06640
This commit is contained in:
parent
546a0f7561
commit
f889bf88c0
@ -192,12 +192,3 @@ TEST_XML(dom_node_wildcard_star, "<node cd='1'/>")
|
||||
CHECK(node.attribute_w(STR("*?*c*")).as_int() == 0);
|
||||
CHECK(node.attribute_w(STR("*?*d*")).as_int() == 1);
|
||||
}
|
||||
|
||||
// document order
|
||||
TEST_XML(document_order_coverage, "<node id='1'/>")
|
||||
{
|
||||
doc.precompute_document_order();
|
||||
|
||||
CHECK(doc.child(STR("node")).document_order() == 0);
|
||||
CHECK(doc.child(STR("node")).attribute(STR("id")).document_order() == 0);
|
||||
}
|
||||
|
||||
@ -8,6 +8,14 @@
|
||||
|
||||
#include <string>
|
||||
|
||||
static void load_document_copy(xml_document& doc, const char_t* text)
|
||||
{
|
||||
xml_document source;
|
||||
CHECK(source.load(text));
|
||||
|
||||
doc.append_copy(source.first_child());
|
||||
}
|
||||
|
||||
TEST(xpath_allocator_many_pages)
|
||||
{
|
||||
pugi::string_t query = STR("0");
|
||||
@ -41,6 +49,24 @@ TEST_XML(xpath_sort_complex, "<node><child1 attr1='value1' attr2='value2'/><chil
|
||||
xpath_node_set_tester(reverse_sorted, "reverse sorted order failed") % 8 % 7 % 6 % 5 % 4 % 3 % 2;
|
||||
}
|
||||
|
||||
TEST(xpath_sort_complex_copy) // copy the document so that document order optimization does not work
|
||||
{
|
||||
xml_document doc;
|
||||
load_document_copy(doc, "<node><child1 attr1='value1' attr2='value2'/><child2 attr1='value1'>test</child2></node>");
|
||||
|
||||
// just some random union order, it should not matter probably?
|
||||
xpath_node_set ns = doc.child(STR("node")).select_nodes(STR("child1 | child2 | child1/@* | . | child2/@* | child2/text()"));
|
||||
|
||||
ns.sort(false);
|
||||
xpath_node_set sorted = ns;
|
||||
|
||||
ns.sort(true);
|
||||
xpath_node_set reverse_sorted = ns;
|
||||
|
||||
xpath_node_set_tester(sorted, "sorted order failed") % 2 % 3 % 4 % 5 % 6 % 7 % 8;
|
||||
xpath_node_set_tester(reverse_sorted, "reverse sorted order failed") % 8 % 7 % 6 % 5 % 4 % 3 % 2;
|
||||
}
|
||||
|
||||
TEST_XML(xpath_sort_children, "<node><child><subchild id='1'/></child><child><subchild id='2'/></child></node>")
|
||||
{
|
||||
xpath_node_set ns = doc.child(STR("node")).select_nodes(STR("child/subchild[@id=1] | child/subchild[@id=2]"));
|
||||
@ -55,6 +81,23 @@ TEST_XML(xpath_sort_children, "<node><child><subchild id='1'/></child><child><su
|
||||
xpath_node_set_tester(reverse_sorted, "reverse sorted order failed") % 7 % 4;
|
||||
}
|
||||
|
||||
TEST(xpath_sort_children_copy) // copy the document so that document order optimization does not work
|
||||
{
|
||||
xml_document doc;
|
||||
load_document_copy(doc, "<node><child><subchild id='1'/></child><child><subchild id='2'/></child></node>");
|
||||
|
||||
xpath_node_set ns = doc.child(STR("node")).select_nodes(STR("child/subchild[@id=1] | child/subchild[@id=2]"));
|
||||
|
||||
ns.sort(false);
|
||||
xpath_node_set sorted = ns;
|
||||
|
||||
ns.sort(true);
|
||||
xpath_node_set reverse_sorted = ns;
|
||||
|
||||
xpath_node_set_tester(sorted, "sorted order failed") % 4 % 7;
|
||||
xpath_node_set_tester(reverse_sorted, "reverse sorted order failed") % 7 % 4;
|
||||
}
|
||||
|
||||
TEST_XML(xpath_sort_attributes, "<node/>")
|
||||
{
|
||||
xml_node n = doc.child(STR("node"));
|
||||
|
||||
Loading…
Reference in New Issue
Block a user