945a242ed6b209ea655131f4022f493989b774a0
[metaproxy-moved-to-github.git] / src / test_filter_frontend_net.cpp
1 /* This file is part of Metaproxy.
2    Copyright (C) 2005-2011 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 <metaproxy/util.hpp>
24 #include "filter_frontend_net.hpp"
25
26 #include "router_chain.hpp"
27 #include <metaproxy/package.hpp>
28
29 #define BOOST_AUTO_TEST_MAIN
30 #define BOOST_TEST_DYN_LINK
31 #include <boost/test/auto_unit_test.hpp>
32
33 using namespace boost::unit_test;
34 namespace mp = metaproxy_1;
35
36 class FilterInit: public mp::filter::Base {
37 public:
38     void process(mp::Package & package) const {
39         
40         if (package.session().is_closed())
41         {
42             // std::cout << "Got Close.\n";
43         }
44        
45         Z_GDU *gdu = package.request().get();
46         if (gdu && gdu->which == Z_GDU_Z3950)
47         {
48             // std::cout << "Got PDU. Sending init response\n";
49             mp::odr odr;
50             Z_APDU *apdu = odr.create_initResponse(gdu->u.z3950, 0, 0);
51             package.response() = apdu;
52         }
53         return package.move();
54     };
55 };
56
57
58 BOOST_AUTO_TEST_CASE( test_filter_frontend_net_1 )
59 {
60     try 
61     {
62         {
63             mp::filter::FrontendNet nf;
64         }
65     }
66     catch (std::runtime_error &e) {
67         std::cerr << "std::runtime error: " << e.what() << std::endl;
68         BOOST_CHECK(false);
69     }
70     catch ( ... ) {
71         BOOST_CHECK (false);
72     }
73 }
74
75 BOOST_AUTO_TEST_CASE( test_filter_frontend_net_2 )
76 {
77     try 
78     {
79         {
80             mp::RouterChain router;
81
82             FilterInit tf;
83
84             router.append(tf);
85
86             // Create package with Z39.50 init request in it
87             mp::Package pack;
88
89             mp::odr odr;
90             Z_APDU *apdu = zget_APDU(odr, Z_APDU_initRequest);
91             
92             pack.request() = apdu;
93             // Done creating query. 
94
95             // Put it in router
96             pack.router(router).move(); 
97
98             // Inspect that we got Z39.50 init response
99             yazpp_1::GDU *gdu = &pack.response();
100
101             Z_GDU *z_gdu = gdu->get();
102             BOOST_CHECK(z_gdu);
103             if (z_gdu) {
104                 BOOST_CHECK_EQUAL(z_gdu->which, Z_GDU_Z3950);
105                 BOOST_CHECK_EQUAL(z_gdu->u.z3950->which, Z_APDU_initResponse);
106             }
107         }
108     }
109     catch (std::runtime_error &e) {
110         std::cerr << "std::runtime error: " << e.what() << std::endl;
111         BOOST_CHECK(false);
112     }
113     catch ( ... ) {
114         BOOST_CHECK (false);
115     }
116 }
117
118 BOOST_AUTO_TEST_CASE( test_filter_frontend_net_3 )
119 {
120     try 
121     {
122         {
123             mp::RouterChain router;
124
125             // put in frontend first
126             mp::filter::FrontendNet filter_front;
127
128             std::vector <std::string> ports;
129             ports.insert(ports.begin(), "unix:socket");
130             filter_front.set_ports(ports);
131             filter_front.set_listen_duration(1);  // listen a short time only
132             router.append(filter_front);
133
134             // put in a backend
135             FilterInit filter_init;
136             router.append(filter_init);
137
138             mp::Package pack;
139             
140             pack.router(router).move(); 
141         }
142         BOOST_CHECK(true);
143     }
144     catch (std::runtime_error &e) {
145         std::cerr << "std::runtime error: " << e.what() << std::endl;
146         BOOST_CHECK(false);
147     }
148     catch ( ... ) {
149         BOOST_CHECK (false);
150     }
151 }
152
153 /*
154  * Local variables:
155  * c-basic-offset: 4
156  * c-file-style: "Stroustrup"
157  * indent-tabs-mode: nil
158  * End:
159  * vim: shiftwidth=4 tabstop=8 expandtab
160  */
161