X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Ftest_filter_rewrite.cpp;h=65cb4c08fd140425d27b20e258c2f62debea150e;hb=68250b45b381d70615236e9160e683c2ba8bf53a;hp=d69d927b5c95130aab8aebbae3e7bccba9b8bd52;hpb=8dbed786f672225bef92284dbe38d86f03dac7cc;p=metaproxy-moved-to-github.git diff --git a/src/test_filter_rewrite.cpp b/src/test_filter_rewrite.cpp index d69d927..65cb4c0 100644 --- a/src/test_filter_rewrite.cpp +++ b/src/test_filter_rewrite.cpp @@ -23,7 +23,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #include "filter_http_client.hpp" #include "filter_http_rewrite.hpp" #include -#include "router_chain.hpp" +#include #include #include @@ -38,115 +38,63 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA using namespace boost::unit_test; namespace mp = metaproxy_1; - +/* + * The global testconfig is commented out, as it won't even compile + * on old Centos5 machines struct TestConfig { - TestConfig() + TestConfig() { - std::cout << "global setup\n"; + std::cout << "global setup\n"; yaz_log_init_level(YLOG_ALL); } - ~TestConfig() - { - std::cout << "global teardown\n"; + ~TestConfig() + { + std::cout << "global teardown\n"; } }; BOOST_GLOBAL_FIXTURE( TestConfig ); +*/ BOOST_AUTO_TEST_CASE( test_filter_rewrite_1 ) { try { - mp::filter::HttpRewrite fhr; - } - catch ( ... ) { - BOOST_CHECK (false); - } -} - -BOOST_AUTO_TEST_CASE( test_filter_rewrite_2 ) -{ - try - { + std::cout << "Running non-xml config test case" << std::endl; mp::RouterChain router; - mp::filter::HttpRewrite fhr; - - mp::filter::HttpRewrite::spair_vec vec_req; - vec_req.push_back(std::make_pair( - "(?http\\:\\/\\/s?)(?[^\\/?#]+)\\/(?[^\\/]+)" - "\\/(?[^\\/]+)(?.*)", - "${proto}${host}${path}" - )); - vec_req.push_back(std::make_pair( - "(?:Host\\: )(.*)", - "Host: localhost" - )); - - mp::filter::HttpRewrite::spair_vec vec_res; - vec_res.push_back(std::make_pair( - "(?http\\:\\/\\/s?)(?[^\\/?#]+)\\/(?[^ >]+)", - "http://${pxhost}/${pxpath}/${host}/${path}" - )); - - fhr.configure(vec_req, vec_res); - - mp::filter::HTTPClient hc; - - router.append(fhr); - router.append(hc); - - // create an http request - mp::Package pack; - - mp::odr odr; - Z_GDU *gdu_req = z_get_HTTP_Request_uri(odr, - "http://proxyhost/proxypath/localhost:80/~jakub/targetsite.php", 0, 1); - - pack.request() = gdu_req; - - //feed to the router - pack.router(router).move(); - - //analyze the response - Z_GDU *gdu_res = pack.response().get(); - BOOST_CHECK(gdu_res); - BOOST_CHECK_EQUAL(gdu_res->which, Z_GDU_HTTP_Response); - - Z_HTTP_Response *hres = gdu_res->u.HTTP_Response; - BOOST_CHECK(hres); - - } - catch (std::exception & e) { - std::cout << e.what(); - std::cout << std::endl; - BOOST_CHECK (false); - } -} -BOOST_AUTO_TEST_CASE( test_filter_rewrite_3 ) -{ - try - { std::string xmlconf = "\n" "\n" " \n" - " \n" + " \n" + " \n" - " \n" + " \n" + " \n" + " \n" + " \n" " \n" " \n" - " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" " \n" "\n" - ; + ; std::cout << xmlconf; @@ -154,36 +102,120 @@ BOOST_AUTO_TEST_CASE( test_filter_rewrite_3 ) xmlDocPtr doc = xmlParseMemory(xmlconf.c_str(), xmlconf.size()); BOOST_CHECK(doc); xmlNode *root_element = xmlDocGetRootElement(doc); - mp::filter::HttpRewrite fhr; fhr.configure(root_element, true, ""); xmlFreeDoc(doc); - mp::filter::HTTPClient hc; - - mp::RouterChain router; router.append(fhr); - router.append(hc); // create an http request mp::Package pack; mp::odr odr; - Z_GDU *gdu_req = z_get_HTTP_Request_uri(odr, - "http://proxyhost/proxypath/localhost:80/~jakub/targetsite.php", 0, 1); + Z_GDU *gdu_req = z_get_HTTP_Request_uri(odr, + "http://proxyhost/proxypath/targetsite/page1.html", 0, 1); pack.request() = gdu_req; + //create the http response + + const char *resp_buf = + "HTTP/1.1 200 OK\r\n" + "Content-Length: 441\r\n" + "Content-Type: text/html\r\n" + "Link: ; rel=absolute\r\n" + "Link: ; rel=relative\r\n" + "\r\n" + "Hello proxy!" + "" + "" + "" + "" + "

Welcome to our website. It doesn't make it easy to get pro" + "xified" + "" + " An absolute link" + "" + " Another abs link" + "" + ""; + + const char *resp_expected = + "HTTP/1.1 200 OK\r\n" + "Content-Length: 522\r\n" + "Content-Type: text/html\r\n" + "Link: ; rel=absolute\r\n" + "Link: ; rel=relative\r\n" + "\r\n" + "Hello proxy!" + "" + "" + "" + "" + "

Welcome to our website. It doesn't make it easy to get pro" + "xified" + "" + " An absolute link" + "" + " Another abs link" + "" + ""; + + int r; + Z_GDU *gdu_res; + ODR dec = odr_createmem(ODR_DECODE); + odr_setbuf(dec, (char *) resp_buf, strlen(resp_buf), 0); + r = z_GDU(dec, &gdu_res, 0, 0); + + BOOST_CHECK(r); + if (r) + { + BOOST_CHECK_EQUAL(gdu_res->which, Z_GDU_HTTP_Response); + } + + pack.response() = gdu_res; + //feed to the router pack.router(router).move(); //analyze the response - Z_GDU *gdu_res = pack.response().get(); - BOOST_CHECK(gdu_res); - BOOST_CHECK_EQUAL(gdu_res->which, Z_GDU_HTTP_Response); - - Z_HTTP_Response *hres = gdu_res->u.HTTP_Response; + Z_GDU *gdu_res_rew = pack.response().get(); + BOOST_CHECK(gdu_res_rew); + BOOST_CHECK_EQUAL(gdu_res_rew->which, Z_GDU_HTTP_Response); + + Z_HTTP_Response *hres = gdu_res_rew->u.HTTP_Response; BOOST_CHECK(hres); + //compare buffers + std::cout << "Expected result:\n" << resp_expected << std::endl; + + ODR enc = odr_createmem(ODR_ENCODE); + z_GDU(enc, &gdu_res_rew, 0, 0); + char *resp_result; + int resp_result_len; + resp_result = odr_getbuf(enc, &resp_result_len, 0); + + BOOST_CHECK(resp_result); + BOOST_CHECK_EQUAL((size_t) resp_result_len, strlen(resp_expected)); + + std::cout << "Rewritten result:\n" << std::endl; + fflush(stdout); + fwrite(resp_result, 1, resp_result_len, stdout); + fflush(stdout); + std::cout << "\nRewritten result buf len: " << resp_result_len + << std::endl; + + BOOST_CHECK(memcmp(resp_result, resp_expected, resp_result_len) == 0); + + odr_destroy(dec); + odr_destroy(enc); } catch (std::exception & e) { std::cout << e.what(); @@ -192,6 +224,7 @@ BOOST_AUTO_TEST_CASE( test_filter_rewrite_3 ) } } + /* * Local variables: * c-basic-offset: 4