arabica/test/XPath/match_test.hpp

247 lines
11 KiB
C++
Raw Normal View History

#ifndef XPATHIC_MATCH_TEST_HPP
#define XPATHIC_MATCH_TEST_HPP
#include "../CppUnit/framework/TestCase.h"
#include "../CppUnit/framework/TestSuite.h"
#include "../CppUnit/framework/TestCaller.h"
#include <XPath/XPath.hpp>
2005-12-19 16:55:06 +01:00
#include <DOM/SAX2DOM/SAX2DOM.h>
#include <SAX/helpers/CatchErrorHandler.h>
template<class string_type, class string_adaptor>
class MatchTest : public TestCase
{
Arabica::XPath::XPath<string_type> parser;
typedef string_adaptor SA;
public:
MatchTest(std::string name) : TestCase(name)
{
} // MatchTest
void setUp()
{
} // setUp
void testParse()
{
using namespace Arabica::XPath;
assertTrue(compileThis("/"));
assertTrue(compileThis("/element"));
assertTrue(compileThis("//element"));
assertTrue(compileThis("node()"));
assertTrue(compileThis("text()"));
assertTrue(compileThis("element"));
assertTrue(compileThis("element/child/child"));
2005-12-22 01:02:48 +01:00
assertTrue(compileThis("element/child[@id='1']/child"));
assertTrue(compileThis("element/child[@id='1']/child[@id='1']"));
assertTrue(compileThis("element/child::child[@id='1']/child::child"));
assertTrue(compileThis("element/child::child[@id='1']/child::child[@id='1']"));
assertTrue(compileThis("/element/child/child"));
2005-12-22 01:02:48 +01:00
assertTrue(compileThis("/element/child[@id='1']/child"));
assertTrue(compileThis("//element/child/child"));
assertTrue(compileThis("/element//child/child"));
assertTrue(compileThis("//element//child/child"));
assertTrue(compileThis("//element//child//child"));
assertTrue(compileThis("element[@ref]"));
assertTrue(compileThis("hello"));
2005-12-19 16:55:06 +01:00
assertTrue(compileThis("doc"));
assertTrue(compileThis("@hello"));
assertTrue(compileThis("child::hello"));
assertTrue(compileThis("attribute::hello"));
2005-12-18 23:22:13 +01:00
assertTrue(compileThis("hello[@ref]"));
assertTrue(compileThis("@hello[../poop]"));
assertTrue(compileThis("child::hello[../poop]"));
assertTrue(compileThis("attribute::hello[../poop]"));
2005-12-22 01:02:48 +01:00
assertTrue(compileThis("element/child"));
assertTrue(compileThis("/element/child"));
assertTrue(compileThis("//element/child"));
assertTrue(compileThis("/element//child"));
assertTrue(compileThis("//element//child"));
assertTrue(compileThis("element/child::child"));
assertTrue(compileThis("child::element/@child"));
assertTrue(compileThis("/child::element/child::child"));
assertTrue(compileThis("/child::element/@child"));
assertTrue(compileThis("/child::element/attribute::child"));
assertTrue(compileThis("//element/child::child"));
assertTrue(compileThis("/child::element//child::child"));
assertTrue(compileThis("//child::element//child::child"));
assertTrue(compileThis("node()|@*"));
assertTrue(compileThis("node()|attribute::*"));
assertTrue(compileThis("element[@type]|element[complexType]|attribute"));
assertTrue(compileThis("node()|/"));
assertTrue(compileThis("/|node()"));
assertTrue(compileThis("node|/"));
assertTrue(compileThis("/|node"));
assertTrue(compileThis("node|/|//charlie"));
assertTrue(compileThis("//charlie|/|node"));
} // testParse
void testParseFails()
{
using namespace Arabica::XPath;
assertTrue(dontCompileThis("boolean(../hello)"));
assertTrue(dontCompileThis("../hello"));
assertTrue(dontCompileThis("following-sibling::hello"));
assertTrue(dontCompileThis("descendant::hello"));
assertTrue(dontCompileThis("ancestor-or-self::hello"));
assertTrue(dontCompileThis("///"));
assertTrue(dontCompileThis("test///test"));
assertTrue(dontCompileThis("descendant-or-self::element"));
assertTrue(dontCompileThis("//element/following-sibling::trousers"));
} // testParseFails
2005-12-19 16:55:06 +01:00
void testEvaluateDocMatch()
{
DOM::Document<string_type> doc = parseXML("<doc><para>hello</para></doc>");
2005-12-19 16:55:06 +01:00
assertTrue(compileMatch("/")->evaluateAsBool(doc));
assertTrue(compileMatch("node()")->evaluateAsBool(doc));
assertFalse(compileMatch("*")->evaluateAsBool(doc));
assertFalse(compileMatch("@charlie")->evaluateAsBool(doc));
2005-12-19 16:55:06 +01:00
} // testEvaluateDocMatch
void testDocElementMatch()
{
DOM::Document<string_type> doc = parseXML("<doc><para>hello</para></doc>");
assertTrue(compileMatch("doc")->evaluateAsBool(doc.getDocumentElement()));
assertTrue(compileMatch("doc[para]")->evaluateAsBool(doc.getDocumentElement()));
assertTrue(compileMatch("*")->evaluateAsBool(doc.getDocumentElement()));
assertTrue(compileMatch("node()")->evaluateAsBool(doc.getDocumentElement()));
assertTrue(compileMatch("/doc")->evaluateAsBool(doc.getDocumentElement()));
assertTrue(compileMatch("//doc")->evaluateAsBool(doc.getDocumentElement()));
assertTrue(compileMatch("comment()|doc")->evaluateAsBool(doc.getDocumentElement()));
assertTrue(compileMatch("comment()|/doc")->evaluateAsBool(doc.getDocumentElement()));
assertTrue(compileMatch("comment()|//doc")->evaluateAsBool(doc.getDocumentElement()));
assertTrue(compileMatch("processing-instruction()|comment()|doc")->evaluateAsBool(doc.getDocumentElement()));
assertTrue(compileMatch("processing-instruction()|comment()|/doc")->evaluateAsBool(doc.getDocumentElement()));
assertTrue(compileMatch("processing-instruction()|comment()|//doc")->evaluateAsBool(doc.getDocumentElement()));
assertTrue(compileMatch("processing-instruction()|doc|comment()")->evaluateAsBool(doc.getDocumentElement()));
assertTrue(compileMatch("processing-instruction()|/doc|comment()")->evaluateAsBool(doc.getDocumentElement()));
assertTrue(compileMatch("processing-instruction()|//doc|comment()")->evaluateAsBool(doc.getDocumentElement()));
assertTrue(compileMatch("doc|processing-instruction()|comment()")->evaluateAsBool(doc.getDocumentElement()));
assertTrue(compileMatch("/doc|processing-instruction()|comment()")->evaluateAsBool(doc.getDocumentElement()));
assertTrue(compileMatch("//doc|processing-instruction()|comment()")->evaluateAsBool(doc.getDocumentElement()));
2005-12-19 16:55:06 +01:00
} // testDocElementMatch
void testDocElementNotMatch()
{
DOM::Document<string_type> doc = parseXML("<doc><para>hello</para></doc>");
assertFalse(compileMatch("para")->evaluateAsBool(doc.getDocumentElement()));
assertFalse(compileMatch("@*")->evaluateAsBool(doc.getDocumentElement()));
2005-12-19 16:55:06 +01:00
assertFalse(compileMatch("text()")->evaluateAsBool(doc.getDocumentElement()));
assertFalse(compileMatch("comment()")->evaluateAsBool(doc.getDocumentElement()));
assertFalse(compileMatch("processing-instruction()")->evaluateAsBool(doc.getDocumentElement()));
assertFalse(compileMatch("//para")->evaluateAsBool(doc.getDocumentElement()));
2005-12-22 01:02:48 +01:00
assertFalse(compileMatch("/para")->evaluateAsBool(doc.getDocumentElement()));
assertFalse(compileMatch("/para|text()")->evaluateAsBool(doc.getDocumentElement()));
assertFalse(compileMatch("/para|@*")->evaluateAsBool(doc.getDocumentElement()));
assertFalse(compileMatch("/para|poopsicle|comment()")->evaluateAsBool(doc.getDocumentElement()));
2006-01-09 12:00:29 +01:00
assertFalse(compileMatch("/")->evaluateAsBool(doc.getDocumentElement()));
2005-12-19 16:55:06 +01:00
} // testDocElementNotMatch
void testAttributeMatch()
{
DOM::Document<string_type> doc = parseXML("<doc><para id='woop' name='charlie'>hello</para></doc>");
DOM::Node<string_type> a1 = doc.getDocumentElement().getFirstChild().getAttributes().getNamedItem(SA::construct_from_utf8("id"));
DOM::Node<string_type> a2 = doc.getDocumentElement().getFirstChild().getAttributes().getNamedItem(SA::construct_from_utf8("name"));
assertTrue(compileMatch("@id")->evaluateAsBool(a1));
assertTrue(compileMatch("@*")->evaluateAsBool(a1));
assertTrue(compileMatch("para/@id")->evaluateAsBool(a1));
assertTrue(compileMatch("node()/@id")->evaluateAsBool(a1));
assertTrue(compileMatch("doc//@*")->evaluateAsBool(a1));
assertTrue(compileMatch("//@*")->evaluateAsBool(a1));
assertFalse(compileMatch("@id")->evaluateAsBool(a2));
assertTrue(compileMatch("@*")->evaluateAsBool(a2));
assertFalse(compileMatch("para/@id")->evaluateAsBool(a2));
assertTrue(compileMatch("doc/para/@*")->evaluateAsBool(a2));
assertFalse(compileMatch("@id[../para]")->evaluateAsBool(a2));
assertFalse(compileMatch("node()")->evaluateAsBool(a1));
assertFalse(compileMatch("*")->evaluateAsBool(a1));
assertFalse(compileMatch("pod/para/@*")->evaluateAsBool(a1));
2006-01-09 12:00:29 +01:00
assertFalse(compileMatch("/")->evaluateAsBool(a1));
assertFalse(compileMatch("/")->evaluateAsBool(a2));
assertFalse(compileMatch("/|comment()")->evaluateAsBool(a2));
assertTrue(compileMatch("@id|@name")->evaluateAsBool(a1));
assertTrue(compileMatch("@id|@name")->evaluateAsBool(a2));
assertTrue(compileMatch("@name|@id")->evaluateAsBool(a1));
assertTrue(compileMatch("@name|@id")->evaluateAsBool(a2));
} // testAttributeMatch
2005-12-19 16:55:06 +01:00
bool dontCompileThis(const char* path)
{
try {
2005-12-19 16:55:06 +01:00
compileMatch(path);
return false;
}
catch(const Arabica::XPath::SyntaxException&) {
}
return true;
} // dontCompileThis
bool compileThis(const char* path)
{
try {
2005-12-19 16:55:06 +01:00
compileMatch(path);
return true;
}
catch(const Arabica::XPath::UnsupportedException&) {
}
catch(const Arabica::XPath::SyntaxException& ex) {
std::cerr << ex.what() << std::endl;
}
return false;
} // compileThis
2005-12-19 16:55:06 +01:00
Arabica::XPath::XPathExpressionPtr<string_type, string_adaptor> compileMatch(const char* match)
{
//std::cout << "----\n" << match << std::endl;
2005-12-19 16:55:06 +01:00
return parser.compile_match(SA::construct_from_utf8(match));
} // compileMatch
DOM::Document<string_type> parseXML(const char* match)
{
std::stringstream ss;
ss << match;
SAX::basic_InputSource<string_type> is(ss);
SAX::CatchErrorHandler<string_type> eh;
SAX2DOM::Parser<string_type, string_adaptor> parser;
parser.setErrorHandler(eh);
parser.parse(is);
if(eh.errorsReported())
throw std::runtime_error(eh.errors());
return parser.getDocument();
} // parse
}; // class MatchTest
template<class string_type, class string_adaptor>
TestSuite* MatchTest_suite()
{
TestSuite *suiteOfTests = new TestSuite;
suiteOfTests->addTest(new TestCaller<MatchTest<string_type, string_adaptor> >("testParse", &MatchTest<string_type, string_adaptor>::testParse));
suiteOfTests->addTest(new TestCaller<MatchTest<string_type, string_adaptor> >("testParseFail", &MatchTest<string_type, string_adaptor>::testParseFails));
2005-12-19 16:55:06 +01:00
suiteOfTests->addTest(new TestCaller<MatchTest<string_type, string_adaptor> >("testEvaluateDocMatch", &MatchTest<string_type, string_adaptor>::testEvaluateDocMatch));
suiteOfTests->addTest(new TestCaller<MatchTest<string_type, string_adaptor> >("testDocElementMatch", &MatchTest<string_type, string_adaptor>::testDocElementMatch));
suiteOfTests->addTest(new TestCaller<MatchTest<string_type, string_adaptor> >("testDocElementNotMatch", &MatchTest<string_type, string_adaptor>::testDocElementNotMatch));
suiteOfTests->addTest(new TestCaller<MatchTest<string_type, string_adaptor> >("testAttributeMatch", &MatchTest<string_type, string_adaptor>::testAttributeMatch));
return suiteOfTests;
} // MatchTest_suite
#endif