X-Git-Url: http://sru.miketaylor.org.uk/?a=blobdiff_plain;f=src%2Ftest_filter_rewrite.cpp;h=29bc5ca31ea58d613281fb6ddb6f657196fff73b;hb=c26efced52c043f96c6560b453975d77ebde1b0f;hp=67d77409996ea03cb34195b9df485b05990a1292;hpb=67e481dac76e773799e3e18c87d29f0a210cbfb1;p=metaproxy-moved-to-github.git diff --git a/src/test_filter_rewrite.cpp b/src/test_filter_rewrite.cpp index 67d7740..29bc5ca 100644 --- a/src/test_filter_rewrite.cpp +++ b/src/test_filter_rewrite.cpp @@ -104,6 +104,75 @@ BOOST_AUTO_TEST_CASE( test_filter_rewrite_2 ) } 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" + ; + + std::cout << xmlconf; + + // reading and parsing XML conf + 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); + + 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); } }