http_rewrite: content areas
[metaproxy-moved-to-github.git] / src / test_filter_rewrite.cpp
1 /* This file is part of Metaproxy.
2    Copyright (C) 2005-2013 Index Data
3
4 Metaproxy is free software; you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2, or (at your option) any later
7 version.
8
9 Metaproxy is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17 */
18
19 #include "config.hpp"
20 #include <iostream>
21 #include <stdexcept>
22
23 #include "filter_http_client.hpp"
24 #include "filter_http_rewrite.hpp"
25 #include <metaproxy/util.hpp>
26 #include <metaproxy/router_chain.hpp>
27 #include <metaproxy/package.hpp>
28
29 #include <boost/regex.hpp>
30 #include <boost/lexical_cast.hpp>
31
32 #include <yaz/log.h>
33
34 #define BOOST_AUTO_TEST_MAIN
35 #define BOOST_TEST_DYN_LINK
36
37 #include <boost/test/auto_unit_test.hpp>
38
39 using namespace boost::unit_test;
40 namespace mp = metaproxy_1;
41 /*
42  * The global testconfig is commented out, as it won't even compile
43  * on old Centos5 machines
44 struct TestConfig {
45     TestConfig()
46     {
47         std::cout << "global setup\n";
48         yaz_log_init_level(YLOG_ALL);
49     }
50     ~TestConfig()
51     {
52         std::cout << "global teardown\n";
53     }
54 };
55
56 BOOST_GLOBAL_FIXTURE( TestConfig );
57 */
58
59 BOOST_AUTO_TEST_CASE( test_filter_rewrite_1 )
60 {
61     try
62     {
63         std::cout << "Running non-xml config test case" << std::endl;
64         mp::RouterChain router;
65         mp::filter::HttpRewrite fhr;
66
67         std::string xmlconf =
68             "<?xml version='1.0'?>\n"
69             "<filter xmlns='http://indexdata.com/metaproxy'\n"
70             "        id='rewrite1' type='http_rewrite'>\n"
71             " <request verbose=\"1\">\n"
72             "  <rule name=\"null\"/>\n"
73             "  <rule name=\"url\">\n"
74             "     <rewrite from='"
75     "(?&lt;proto>https?://)(?&lt;pxhost>[^ /?#]+)/(?&lt;pxpath>[^ /]+)"
76     "/(?&lt;host>[^ /]+)(?&lt;path>[^ ]*)'\n"
77             "            to='${proto}${host}${path}' />\n"
78             "     <rewrite from='(?:Host: )(.*)'\n"
79             "            to='Host: ${host}' />\n"
80             "  </rule>\n"
81             "  <content type=\"headers\">\n"
82             "    <within header=\"link\" rule=\"null\"/>\n"
83             "    <within reqline=\"1\" rule=\"url\"/>\n"
84             "  </content>\n"
85             " </request>\n"
86             " <response verbose=\"1\">\n"
87             "  <rule name=\"null\"/>\n"
88             "  <rule name=\"url\">\n"
89             "     <rewrite from='foo' to='bar'/>\n"
90             "     <rewrite from='^cx' to='cy'/>\n"
91             "     <rewrite from='"
92     "(?&lt;proto>https?://)(?&lt;host>[^/?# &quot;&apos;>]+)/(?&lt;path>[^  &quot;&apos;>]+)'\n"
93             "            to='${proto}${pxhost}/${pxpath}/${host}/${path}' />\n"
94             "  </rule>\n"
95             "  <content type=\"headers\">\n"
96             "    <within header=\"link\" rule=\"url\"/>\n"
97             "  </content>\n"
98             "  <content type=\"html\" mime=\"text/xml|text/html\">\n"
99             "    <within tag=\"body\" attr=\"background\" rule=\"null\"/>\n"
100             "    <within tag=\"script\" attr=\"#text\" rule=\"url\"/>\n"
101             "    <within tag=\"style\" attr=\"#text\" rule=\"url\"/>\n"
102             "    <within attr=\"href,src\" rule=\"url\"/>\n"
103             "  </content>\n"
104             " </response>\n"
105             "</filter>\n"
106         ;
107
108         std::cout << xmlconf;
109
110         // reading and parsing XML conf
111         xmlDocPtr doc = xmlParseMemory(xmlconf.c_str(), xmlconf.size());
112         BOOST_CHECK(doc);
113         xmlNode *root_element = xmlDocGetRootElement(doc);
114         fhr.configure(root_element, true, "");
115         xmlFreeDoc(doc);
116
117         router.append(fhr);
118
119         // create an http request
120         mp::Package pack;
121
122         mp::odr odr;
123         Z_GDU *gdu_req = z_get_HTTP_Request_uri(odr,
124         "http://proxyhost/proxypath/targetsite/page1.html", 0, 1);
125
126         pack.request() = gdu_req;
127
128         //create the http response
129
130         const char *resp_buf =
131             "HTTP/1.1 200 OK\r\n"
132             "Content-Length: 441\r\n"
133             "Content-Type: text/html\r\n"
134             "Link: <http://targetsite/file.xml>; rel=absolute\r\n"
135             "Link: </dir/file.xml>; rel=relative\r\n"
136             "\r\n"
137             "<html><head><title>Hello proxy!</title>"
138             "<style>"
139             "body {"
140             "  background-image:url('http://targetsite/images/bg.png');"
141             "}"
142             "</style>"
143             "</head>"
144             "<script>var jslink=\"http://targetsite/webservice.xml\";"
145             "var some=foo;"
146             "</script>"
147             "<body>"
148             "<p>Welcome to our website. It doesn't make it easy to get pro"
149             "xified"
150             "<a href=\"http://targetsite/page2.html\">"
151             "  An absolute link</a>"
152             "<a target=_blank href=\"http://targetsite/page3.html\">"
153             "  Another abs link</a>"
154             "<a href=\"/docs/page4.html\" />"
155             "<a href=\"cxcx\" />"
156             "<a href=\"cx \" />"
157             "</body></html>";
158
159         const char *resp_expected =
160             "HTTP/1.1 200 OK\r\n"
161             "Content-Length: 564\r\n"
162             "Content-Type: text/html\r\n"
163             "Link: <http://proxyhost/proxypath/targetsite/file.xml>; rel=absolute\r\n"
164             "Link: </dir/file.xml>; rel=relative\r\n"
165             "\r\n"
166             "<html><head><title>Hello proxy!</title>"
167             "<style>"
168             "body {"
169             "  background-image:url('http://proxyhost/proxypath/targetsite/images/bg.png');"
170             "}"
171             "</style>"
172             "</head>"
173             "<script>var jslink=\"http://proxyhost/proxypath/targetsite/webservice.xml\";"
174             "var some=bar;"
175             "</script>"
176             "<body>"
177             "<p>Welcome to our website. It doesn't make it easy to get pro"
178             "xified"
179             "<a href=\"http://proxyhost/proxypath/targetsite/page2.html\">"
180             "  An absolute link</a>"
181             "<a target=_blank href=\"http://proxyhost/proxypath/targetsite/page3.html\">"
182             "  Another abs link</a>"
183             "<a href=\"/docs/page4.html\"/>"
184             "<a href=\"cycx\"/>"
185             "<a href=\"cy \"/>"
186             "</body></html>";
187
188         int r;
189         Z_GDU *gdu_res;
190         ODR dec = odr_createmem(ODR_DECODE);
191         odr_setbuf(dec, (char *) resp_buf, strlen(resp_buf), 0);
192         r = z_GDU(dec, &gdu_res, 0, 0);
193
194         BOOST_CHECK(r);
195         if (r)
196         {
197             BOOST_CHECK_EQUAL(gdu_res->which, Z_GDU_HTTP_Response);
198         }
199
200         pack.response() = gdu_res;
201
202         //feed to the router
203         pack.router(router).move();
204
205         //analyze the response
206         Z_GDU *gdu_res_rew = pack.response().get();
207         BOOST_CHECK(gdu_res_rew);
208         BOOST_CHECK_EQUAL(gdu_res_rew->which, Z_GDU_HTTP_Response);
209
210         Z_HTTP_Response *hres = gdu_res_rew->u.HTTP_Response;
211         BOOST_CHECK(hres);
212
213         //compare buffers
214         std::cout << "Expected result:\n" << resp_expected << std::endl;
215
216         ODR enc = odr_createmem(ODR_ENCODE);
217         z_GDU(enc, &gdu_res_rew, 0, 0);
218         char *resp_result;
219         int resp_result_len;
220         resp_result = odr_getbuf(enc, &resp_result_len, 0);
221
222         BOOST_CHECK(resp_result);
223         BOOST_CHECK_EQUAL((size_t) resp_result_len, strlen(resp_expected));
224
225         std::cout << "Got result:\n" << std::endl;
226         fflush(stdout);
227         fwrite(resp_result, 1, resp_result_len, stdout);
228         fflush(stdout);
229         std::cout << "\nGot result buf len: " << resp_result_len
230             << std::endl;
231
232         BOOST_CHECK(memcmp(resp_result, resp_expected, resp_result_len) == 0);
233
234         odr_destroy(dec);
235         odr_destroy(enc);
236     }
237     catch (std::exception & e) {
238         std::cout << e.what();
239         std::cout << std::endl;
240         BOOST_CHECK (false);
241     }
242 }
243
244
245 /*
246  * Local variables:
247  * c-basic-offset: 4
248  * c-file-style: "Stroustrup"
249  * indent-tabs-mode: nil
250  * End:
251  * vim: shiftwidth=4 tabstop=8 expandtab
252  */
253