X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Ftest_html_parser.cpp;h=5ba7e5a29b39478ce52af1b63b71c1c00b8552e6;hb=586d78659d671683f33ec55f4a7d32b28e345ccd;hp=523011700b842079f2bdc31fbae5c07375e33226;hpb=a258482a3b53b90b0932f4a789ba66e8e1576c05;p=metaproxy-moved-to-github.git diff --git a/src/test_html_parser.cpp b/src/test_html_parser.cpp index 5230117..5ba7e5a 100644 --- a/src/test_html_parser.cpp +++ b/src/test_html_parser.cpp @@ -1,5 +1,5 @@ /* This file is part of Metaproxy. - Copyright (C) 2005-2013 Index Data + Copyright (C) Index Data Metaproxy is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free @@ -35,59 +35,267 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA using namespace boost::unit_test; namespace mp = metaproxy_1; -class MyEvent : public mp::HTMLParserEvent { - public: - std::string out; - void openTagStart(const char *name) +class MyEvent : public mp::HTMLParserEvent +{ +public: + std::string out; + void openTagStart(const char *tag, int tag_len) { + out += "<"; + out.append(tag, tag_len); + } + + void attribute(const char *tag, int tag_len, + const char *attr, int attr_len, + const char *value, int val_len, const char *sep) { + out += " "; + out.append(attr, attr_len); + if (value) { - out += "<"; - out += name; - } - - void attribute(const char *tagName, - const char *name, const char *value) + out += "="; + out += sep; + out.append(value, val_len); + out += sep; + } + } + void anyTagEnd(const char *tag, int tag_len, int close_it) { + if (close_it) + out += "/"; + out += ">"; + } + void closeTag(const char *tag, int tag_len) { + out += "some text" + "
"; + const char* expected = + "some text" + "
"; + MyEvent e; + hp.set_verbose(0); + hp.parse(e, html); + + BOOST_CHECK_EQUAL(std::string(expected), e.out); + if (std::string(expected) != e.out) { - out += " "; - out += name; - out += "=\""; - out += value; - out += "\""; + std::cout << "Expected" << std::endl; + std::cout << expected << std::endl; + std::cout << "Got" << std::endl; + std::cout << e.out << std::endl; } + } + catch (std::exception & e) + { + std::cout << e.what(); + std::cout << std::endl; + BOOST_CHECK (false); + } +} - void anyTagEnd(const char *name) +BOOST_AUTO_TEST_CASE( test_html_parser_2 ) +{ + try + { + mp::HTMLParser hp; + const char* html = + "\n" + "\n" + " \n" + " YAZ 4.2.60\n" + " \n" + " \n" + "

YAZ 4.2.60

\n" + "

Error: 404

\n" + "

Description: Not Found

\n" + " \n" + ""; + + const char* expected = html; + MyEvent e; + hp.set_verbose(0); + hp.parse(e, html); + + BOOST_CHECK_EQUAL(std::string(expected), e.out); + if (std::string(expected) != e.out) + { + std::cout << "Expected" << std::endl; + std::cout << expected << std::endl; + std::cout << "Got" << std::endl; + std::cout << e.out << std::endl; + } + } + catch (std::exception & e) + { + std::cout << e.what(); + std::cout << std::endl; + BOOST_CHECK (false); + } +} + +BOOST_AUTO_TEST_CASE( test_html_parser_3 ) +{ + try + { + mp::HTMLParser hp; + const char* html = + "\n" + "\n" + " %local;\n" + "]>\n" + ""; + + const char* expected = html; + MyEvent e; + hp.set_verbose(0); + hp.parse(e, html); + + BOOST_CHECK_EQUAL(std::string(expected), e.out); + if (std::string(expected) != e.out) { - out += ">"; + std::cout << "Expected" << std::endl; + std::cout << expected << std::endl; + std::cout << "Got" << std::endl; + std::cout << e.out << std::endl; } - - void closeTag(const char *name) + } + catch (std::exception & e) + { + std::cout << e.what(); + std::cout << std::endl; + BOOST_CHECK (false); + } +} + +BOOST_AUTO_TEST_CASE( test_html_parser_4 ) +{ + try + { + mp::HTMLParser hp; + const char* html = + "\n" + ""; + + const char* expected = html; + MyEvent e; + hp.set_verbose(0); + hp.parse(e, html); + + BOOST_CHECK_EQUAL(std::string(expected), e.out); + if (std::string(expected) != e.out) { - out += ""; + + const char* expected = html; + MyEvent e; + hp.set_verbose(0); + hp.parse(e, html); + + BOOST_CHECK_EQUAL(std::string(expected), e.out); + if (std::string(expected) != e.out) { - out.append(value, len); + std::cout << "Expected" << std::endl; + std::cout << expected << std::endl; + std::cout << "Got" << std::endl; + std::cout << e.out << std::endl; } -}; + } + catch (std::exception & e) + { + std::cout << e.what(); + std::cout << std::endl; + BOOST_CHECK (false); + } +} +BOOST_AUTO_TEST_CASE( test_html_parser_6 ) +{ + try + { + mp::HTMLParser hp; + const char* html = + ""; -BOOST_AUTO_TEST_CASE( test_html_parser_1 ) + const char* expected = html; + MyEvent e; + hp.set_verbose(0); + hp.parse(e, html); + + BOOST_CHECK_EQUAL(std::string(expected), e.out); + if (std::string(expected) != e.out) + { + std::cout << "Expected" << std::endl; + std::cout << expected << std::endl; + std::cout << "Got" << std::endl; + std::cout << e.out << std::endl; + } + } + catch (std::exception & e) + { + std::cout << e.what(); + std::cout << std::endl; + BOOST_CHECK (false); + } +} + +BOOST_AUTO_TEST_CASE( test_html_parser_7 ) { try { mp::HTMLParser hp; - const char* html = - "some text" - "
some text" - "
" + "\nx=2;\n"; + + const char* expected = html; MyEvent e; + hp.set_verbose(0); hp.parse(e, html); + BOOST_CHECK_EQUAL(std::string(expected), e.out); + if (std::string(expected) != e.out) + { + std::cout << "Expected" << std::endl; + std::cout << expected << std::endl; + std::cout << "Got" << std::endl; + std::cout << e.out << std::endl; + } } - catch (std::exception & e) + catch (std::exception & e) { std::cout << e.what(); std::cout << std::endl;