summaryrefslogtreecommitdiff
path: root/tests/test_dom_traverse.cpp
diff options
context:
space:
mode:
authorarseny.kapoulkine@gmail.com <arseny.kapoulkine@gmail.com@99668b35-9821-0410-8761-19e4c4f06640>2012-09-29 06:36:29 +0000
committerarseny.kapoulkine@gmail.com <arseny.kapoulkine@gmail.com@99668b35-9821-0410-8761-19e4c4f06640>2012-09-29 06:36:29 +0000
commit2876af6773881158ae82b7031e3af9b95e243c14 (patch)
treee7bfbd33d39c3cd6c53067e804541d8fc259dcb2 /tests/test_dom_traverse.cpp
parentff715f672f37d3f3c40d986e95d23dd8997ab53c (diff)
Fix find_child_by_attribute assertion for attributes with null name/value.
git-svn-id: http://pugixml.googlecode.com/svn/trunk@920 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'tests/test_dom_traverse.cpp')
-rw-r--r--tests/test_dom_traverse.cpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/test_dom_traverse.cpp b/tests/test_dom_traverse.cpp
index 738b53d..1af8572 100644
--- a/tests/test_dom_traverse.cpp
+++ b/tests/test_dom_traverse.cpp
@@ -537,6 +537,31 @@ TEST_XML(dom_node_find_child_by_attribute, "<node><stub attr='value3' /><child1
CHECK(node.find_child_by_attribute(STR("attr3"), STR("value")) == xml_node());
}
+TEST(dom_node_find_child_by_attribute_null)
+{
+ xml_document doc;
+ xml_node node0 = doc.append_child();
+ xml_node node1 = doc.append_child(STR("a"));
+ xml_node node2 = doc.append_child(STR("a"));
+ xml_node node3 = doc.append_child(STR("a"));
+
+ // this adds an attribute with null name and/or value in the internal representation
+ node1.append_attribute(STR(""));
+ node2.append_attribute(STR("id"));
+ node3.append_attribute(STR("id")) = STR("1");
+
+ // make sure find_child_by_attribute works if name/value is null
+ CHECK(doc.find_child_by_attribute(STR("unknown"), STR("wrong")) == xml_node());
+ CHECK(doc.find_child_by_attribute(STR("id"), STR("wrong")) == xml_node());
+ CHECK(doc.find_child_by_attribute(STR("id"), STR("")) == node2);
+ CHECK(doc.find_child_by_attribute(STR("id"), STR("1")) == node3);
+
+ CHECK(doc.find_child_by_attribute(STR("a"), STR("unknown"), STR("wrong")) == xml_node());
+ CHECK(doc.find_child_by_attribute(STR("a"), STR("id"), STR("wrong")) == xml_node());
+ CHECK(doc.find_child_by_attribute(STR("a"), STR("id"), STR("")) == node2);
+ CHECK(doc.find_child_by_attribute(STR("a"), STR("id"), STR("1")) == node3);
+}
+
struct find_predicate_const
{
bool result;