X-Git-Url: http://sru.miketaylor.org.uk/?a=blobdiff_plain;f=src%2Ftest_filter_rewrite.cpp;h=7df4d0b05c0d41f2e3d02f8f2283fcc41d5eae1f;hb=577119fc1080b77c58b08db6d6c0114398494a33;hp=e3802a7531ca597a4054471778271654aac0d033;hpb=8949e75975de65f081f8eb9197e9f5f9ee9dd227;p=metaproxy-moved-to-github.git diff --git a/src/test_filter_rewrite.cpp b/src/test_filter_rewrite.cpp index e3802a7..7df4d0b 100644 --- a/src/test_filter_rewrite.cpp +++ b/src/test_filter_rewrite.cpp @@ -42,14 +42,14 @@ 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"; } }; @@ -63,23 +63,36 @@ BOOST_AUTO_TEST_CASE( test_filter_rewrite_1 ) std::cout << "Running non-xml config test case" << std::endl; mp::RouterChain router; mp::filter::HttpRewrite fhr; - + std::string xmlconf = "\n" "\n" - " \n" - " https?://)(?<pxhost>[^ /?#]+)/(?<pxpath>[^ /]+)" "/(?<host>[^ /]+)(?<path>[^ ]*)'\n" " to='${proto}${host}${path}' />\n" - " \n" + " \n" + " \n" + " \n" + " \n" " \n" - " \n" - " https?://)(?<host>[^/?# "'>]+)/(?<path>[^ "'>]+)'\n" - " to='${proto}${pxhost}/${pxpath}/${host}/${path}' />\n" + " to='${proto}${pxhost}/${pxpath}/${host}/${path}' />\n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" " \n" "\n" ; @@ -92,14 +105,14 @@ BOOST_AUTO_TEST_CASE( test_filter_rewrite_1 ) xmlNode *root_element = xmlDocGetRootElement(doc); fhr.configure(root_element, true, ""); xmlFreeDoc(doc); - + router.append(fhr); // create an http request mp::Package pack; mp::odr odr; - Z_GDU *gdu_req = z_get_HTTP_Request_uri(odr, + Z_GDU *gdu_req = z_get_HTTP_Request_uri(odr, "http://proxyhost/proxypath/targetsite/page1.html", 0, 1); pack.request() = gdu_req; @@ -126,14 +139,14 @@ BOOST_AUTO_TEST_CASE( test_filter_rewrite_1 ) "xified" "" " An absolute link" - "" + "" " Another abs link" - "" + "" ""; int r; @@ -177,7 +190,7 @@ BOOST_AUTO_TEST_CASE( test_filter_rewrite_1 ) 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); @@ -189,12 +202,15 @@ BOOST_AUTO_TEST_CASE( test_filter_rewrite_1 ) 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 << "Rewriten result:\n" << resp_result << std::endl; - std::cout << "Rewriten result buf len: " << resp_result_len + 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); @@ -209,143 +225,6 @@ BOOST_AUTO_TEST_CASE( test_filter_rewrite_1 ) } } -/* -BOOST_AUTO_TEST_CASE( test_filter_rewrite_2 ) -{ - try - { - std::cout << "Running xml config test case" << std::endl; - mp::RouterChain router; - mp::filter::HttpRewrite fhr; - - std::string xmlconf = - "\n" - "\n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - " \n" - "\n" - ; - - std::cout << xmlconf; - - // reading and parsing XML conf - xmlDocPtr doc = xmlParseMemory(xmlconf.c_str(), xmlconf.size()); - BOOST_CHECK(doc); - xmlNode *root_element = xmlDocGetRootElement(doc); - fhr.configure(root_element, true, ""); - xmlFreeDoc(doc); - - router.append(fhr); - - // create an http request - mp::Package pack; - - mp::odr odr; - 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: 50\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" - "" - "" - "" - "" - "

Welcome to our website. It doesn't make it easy to get pro" - "xified" - "" - " An absolute link" - "