summaryrefslogtreecommitdiff
path: root/tests/test.hpp
diff options
context:
space:
mode:
authorarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2009-10-21 19:09:12 +0000
committerarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2009-10-21 19:09:12 +0000
commit40c0a5f09a68b18409793bf1dffcba19a8704ec7 (patch)
treef43b431bb3f55fa8cf5d0ba8eef0f7c90ad85793 /tests/test.hpp
parentcbdce99d5c68fbfc7e878d108f1d16f8a08cfcb7 (diff)
tests: Added basic XPath tests
git-svn-id: http://pugixml.googlecode.com/svn/trunk@170 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'tests/test.hpp')
-rw-r--r--tests/test.hpp39
1 files changed, 39 insertions, 0 deletions
diff --git a/tests/test.hpp b/tests/test.hpp
index 023c452..41dc218 100644
--- a/tests/test.hpp
+++ b/tests/test.hpp
@@ -25,6 +25,40 @@ inline bool test_node(const pugi::xml_node& node, const char* contents, const ch
return oss.str() == contents;
}
+inline bool test_xpath_string(const pugi::xml_node& node, const char* query, const char* expected)
+{
+ pugi::xpath_query q(query);
+
+ return q.evaluate_string(node) == expected;
+}
+
+inline bool test_xpath_boolean(const pugi::xml_node& node, const char* query, bool expected)
+{
+ pugi::xpath_query q(query);
+
+ return q.evaluate_boolean(node) == expected;
+}
+
+inline bool test_xpath_number(const pugi::xml_node& node, const char* query, double expected)
+{
+ pugi::xpath_query q(query);
+
+ return fabs(q.evaluate_number(node) - expected) < 1e-8f;
+}
+
+inline bool test_xpath_fail_compile(const char* query)
+{
+ try
+ {
+ pugi::xpath_query q(query);
+ return false;
+ }
+ catch (const pugi::xpath_exception& e)
+ {
+ return true;
+ }
+}
+
struct test_runner
{
test_runner(const char* name)
@@ -90,4 +124,9 @@ struct dummy_fixture {};
#define CHECK_NODE_EX(node, expected, indent, flags) CHECK_TEXT(test_node(node, expected, indent, flags), #node " contents does not match " #expected)
#define CHECK_NODE(node, expected) CHECK_NODE_EX(node, expected, "", pugi::format_raw)
+#define CHECK_XPATH_STRING(node, query, expected) CHECK_TEXT(test_xpath_string(node, query, expected), #query " does not evaluate to " #expected " in context " #node)
+#define CHECK_XPATH_BOOLEAN(node, query, expected) CHECK_TEXT(test_xpath_boolean(node, query, expected), #query " does not evaluate to " #expected " in context " #node)
+#define CHECK_XPATH_NUMBER(node, query, expected) CHECK_TEXT(test_xpath_number(node, query, expected), #query " does not evaluate to " #expected " in context " #node)
+#define CHECK_XPATH_FAIL(query) CHECK_TEXT(test_xpath_fail_compile(query), #query " should not compile")
+
#endif