X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Ftest_filter_rewrite.cpp;h=36e1a15f1dfb938e32cc9e3fdaaedd5b420664f4;hb=6bc88607a5726bcf482ceb23d0cf5e7dd9db8341;hp=40ab6ba0fb0afcec3946da48d45918e8dffded4e;hpb=8181c47896ffd66e31add5fd15236bc5f28a2596;p=metaproxy-moved-to-github.git diff --git a/src/test_filter_rewrite.cpp b/src/test_filter_rewrite.cpp index 40ab6ba..36e1a15 100644 --- a/src/test_filter_rewrite.cpp +++ b/src/test_filter_rewrite.cpp @@ -21,271 +21,337 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #include #include "filter_http_client.hpp" +#include "filter_http_rewrite.hpp" #include -#include "router_chain.hpp" +#include #include -#define BOOST_REGEX_MATCH_EXTRA - -#include +#include #include +#include + #define BOOST_AUTO_TEST_MAIN #define BOOST_TEST_DYN_LINK #include using namespace boost::unit_test; -using namespace boost::xpressive; namespace mp = metaproxy_1; - -class FilterHeaderRewrite: public mp::filter::Base { -public: - void process(mp::Package & package) const { - Z_GDU *gdu = package.request().get(); - //we have an http req - if (gdu && gdu->which == Z_GDU_HTTP_Request) - { - std::cout << "Request headers" << std::endl; - Z_HTTP_Request *hreq = gdu->u.HTTP_Request; - //dump req headers - for (Z_HTTP_Header *header = hreq->headers; - header != 0; - header = header->next) - { - std::cout << header->name << ": " << header->value << std::endl; - rewrite_req_header(header); - } - } - package.move(); - gdu = package.response().get(); - if (gdu && gdu->which == Z_GDU_HTTP_Response) - { - std::cout << "Respose headers" << std::endl; - Z_HTTP_Response *hr = gdu->u.HTTP_Response; - //dump resp headers - for (Z_HTTP_Header *header = hr->headers; - header != 0; - header = header->next) - { - std::cout << header->name << ": " << header->value << std::endl; - } - } - - }; - void configure(const xmlNode* ptr, bool test_only, const char *path) {}; - - void rewrite_req_header(Z_HTTP_Header *header) const - { - //exec regex against value - sregex re = sregex::compile(req_uri_rx); - smatch what; - std::string hvalue(header->value); - std::map vars; - if (regex_match(hvalue, what, re)) - { - unsigned i; - for (i = 1; i < what.size(); ++i) - { - //check if the group is named - std::map::const_iterator it - = groups_by_num.find(i); - if (it != groups_by_num.end()) - { //it is - std::string name = it->second; - vars[name] = what[i]; - } - } - //rewrite the header according to the recipe - std::string rvalue = sub_vars(req_uri_pat, vars); - std::cout << "Rewritten '"+hvalue+"' to '"+rvalue+"'\n"; - } - else - { - std::cout << "No match found in '" + hvalue + "'\n"; - } - }; - - static void parse_groups(const std::string & str, - std::map & groups_bynum, - std::map & groups_byname) +/* + * The global testconfig is commented out, as it won't even compile + * on old Centos5 machines +struct TestConfig { + TestConfig() { - int gnum = 0; - bool esc = false; - for (int i = 0; i < str.size(); ++i) - { - if (!esc && str[i] == '\\') - { - esc = true; - continue; - } - if (!esc && str[i] == '(') //group starts - { - gnum++; - if (i+1 < str.size() && str[i+1] == '?') //group with attrs - { - i++; - if (i+1 < str.size() && str[i+1] == 'P') //optional, python - i++; - if (i+1 < str.size() && str[i+1] == '<') //named - { - i++; - std::string gname; - bool term = false; - while (++i < str.size()) - { - if (str[i] == '>') { term = true; break; } - if (!isalnum(str[i])) - throw mp::filter::FilterException - ("Only alphanumeric chars allowed, found " - " in '" - + str - + "' at " - + boost::lexical_cast(i)); - gname += str[i]; - } - if (!term) - throw mp::filter::FilterException - ("Unterminated group name '" + gname - + " in '" + str +"'"); - groups_bynum[gnum] = gname; - groups_byname[gname] = gnum; - std::cout << "Found named group '" << gname - << "' at $" << gnum << std::endl; - } - } - } - esc = false; - } + std::cout << "global setup\n"; + yaz_log_init_level(YLOG_ALL); } - - static std::string sub_vars (const std::string & in, - const std::map & vars) - { - std::string out; - bool esc = false; - for (int i = 0; i < in.size(); ++i) - { - if (!esc && in[i] == '\\') - { - esc = true; - continue; - } - if (!esc && in[i] == '$') //var - { - if (i+1 < in.size() && in[i+1] == '{') //ref prefix - { - ++i; - std::string name; - bool term = false; - while (++i < in.size()) - { - if (in[i] == '}') { term = true; break; } - name += in[i]; - } - if (!term) throw mp::filter::FilterException - ("Unterminated var ref in '"+in+"' at " - + boost::lexical_cast(i)); - std::map::const_iterator it - = vars.find(name); - if (it != vars.end()) - out += it->second; - } - else - { - throw mp::filter::FilterException - ("Malformed or trimmed var ref in '" - +in+"' at "+boost::lexical_cast(i)); - } - continue; - } - //passthru - out += in[i]; - esc = false; - } - return out; + ~TestConfig() + { + std::cout << "global teardown\n"; } - - void configure( - const std::string & req_uri_rx, - const std::string & req_uri_pat, - const std::string & resp_uri_rx, - const std::string & resp_uri_pat) - { - this->req_uri_rx = req_uri_rx; - this->req_uri_pat = req_uri_pat; - //pick up names - parse_groups(req_uri_rx, groups_by_num, groups_by_name); - this->resp_uri_rx = resp_uri_rx; - this->resp_uri_pat = resp_uri_pat; - }; - -private: - std::map vars; - std::string req_uri_rx; - std::string resp_uri_rx; - std::string req_uri_pat; - std::string resp_uri_pat; - std::map groups_by_num; - std::map groups_by_name; - }; +BOOST_GLOBAL_FIXTURE( TestConfig ); +*/ BOOST_AUTO_TEST_CASE( test_filter_rewrite_1 ) { try { - FilterHeaderRewrite fhr; + std::cout << "Running non-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" + " \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: 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" + "" + "" + "" + "" + "

Welcome to our website. It doesn't make it easy to get pro" + "xified" + "" + " An absolute link" + "\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); - router.append(hc); // create an http request mp::Package pack; mp::odr odr; Z_GDU *gdu_req = z_get_HTTP_Request_uri(odr, - "http://localhost:80/~jakub/targetsite.php", 0, 1); + "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" + "