Migrate from cppunit to Boost.test
[libt2n] / test / simplecmd.cpp
CommitLineData
19facd85
TJ
1/*
2Copyright (C) 2004 by Intra2net AG
d184c648 3
19facd85
TJ
4The software in this package is distributed under the GNU General
5Public License version 2 (with a special exception described below).
6
7A copy of GNU General Public License (GPL) is included in this distribution,
8in the file COPYING.GPL.
9
10As a special exception, if other files instantiate templates or use macros
11or inline functions from this file, or you compile this file and link it
12with other works to produce a work based on this file, this file
13does not by itself cause the resulting work to be covered
14by the GNU General Public License.
15
16However the source code for this file must still be made available
17in accordance with section (3) of the GNU General Public License.
18
19This exception does not invalidate any other reasons why a work based
20on this file might be covered by the GNU General Public License.
21*/
d184c648
GE
22#include <sys/types.h>
23#include <unistd.h>
24#include <errno.h>
25#include <signal.h>
26#include <stdio.h>
27
28#include <iostream>
29#include <string>
30#include <sstream>
31#include <stdexcept>
32
307b5e74
TJ
33#define BOOST_TEST_DYN_LINK
34#include <boost/test/unit_test.hpp>
d184c648 35
a7170401
GE
36#include <boost/archive/binary_oarchive.hpp>
37#include <boost/archive/binary_iarchive.hpp>
d535333f
GE
38#include <boost/archive/xml_oarchive.hpp>
39#include <boost/archive/xml_iarchive.hpp>
a7170401
GE
40#include <boost/serialization/serialization.hpp>
41
d184c648
GE
42#include <container.hxx>
43#include <socket_client.hxx>
44#include <socket_server.hxx>
45#include <command_client.hxx>
46#include <command_server.hxx>
47
307b5e74
TJ
48#include "test_fixtures.hxx"
49
d184c648 50using namespace std;
d184c648
GE
51
52string testfunc(const string& str)
53{
58b327c6 54 string ret;
e453407d
GE
55 if (str=="throw")
56 throw libt2n::t2n_runtime_error("throw me around");
58b327c6
GE
57 if (str=="big")
58 ret.insert(0,100*1024,'x');
59 else
60 ret=str+", testfunc() was here";
d184c648
GE
61 return ret;
62}
63
d535333f 64class testfunc_res : public libt2n::result
d184c648
GE
65{
66 private:
67 string res;
68
69 friend class boost::serialization::access;
70 template<class Archive>
71 void serialize(Archive & ar, const unsigned int version)
72 {
d535333f 73 ar & BOOST_SERIALIZATION_BASE_OBJECT_NVP(libt2n::result);
d184c648
GE
74 ar & BOOST_SERIALIZATION_NVP(res);
75 }
76
77 public:
78 testfunc_res()
79 { }
80
81 testfunc_res(const string& str)
82 {
83 res=str;
84 }
85
86 string get_data()
87 {
88 return res;
89 }
90};
91
a7170401 92
d184c648
GE
93class testfunc_cmd : public libt2n::command
94{
95 private:
96 string param;
97
98 friend class boost::serialization::access;
99 template<class Archive>
100 void serialize(Archive & ar, const unsigned int version)
101 {
d184c648
GE
102 ar & BOOST_SERIALIZATION_BASE_OBJECT_NVP(libt2n::command);
103 ar & BOOST_SERIALIZATION_NVP(param);
104 }
105
106 public:
107 testfunc_cmd()
108 { }
109
110 testfunc_cmd(const string& str)
111 {
112 param=str;
113 }
114
d535333f 115 libt2n::result* operator()()
d184c648
GE
116 {
117 return new testfunc_res(testfunc(param));
118 }
119};
120
a7170401 121#include <boost/serialization/export.hpp>
d184c648
GE
122
123BOOST_CLASS_EXPORT(testfunc_cmd)
124BOOST_CLASS_EXPORT(testfunc_res)
125
d535333f
GE
126using namespace libt2n;
127
307b5e74
TJ
128BOOST_FIXTURE_TEST_SUITE(test_simplecmd, KillChildOnShutdownFixture)
129
130BOOST_AUTO_TEST_CASE(SimpleCmd)
d184c648 131{
307b5e74
TJ
132 switch(child_pid=fork())
133 {
134 case -1:
135 {
136 BOOST_FAIL("fork error");
137 break;
138 }
139 case 0:
140 // child
141 {
142 try
143 {
144 socket_server ss("./socket");
145 command_server cs(ss);
d184c648 146
307b5e74
TJ
147 // max 10 sec
148 for (int i=0; i < 10; i++)
149 cs.handle(1000000);
150 } catch(...)
151 {
152 std::cerr << "exception in child. ignoring\n";
153 }
d184c648 154
307b5e74
TJ
155 // don't call atexit and stuff
156 _exit(0);
157 }
d184c648 158
307b5e74
TJ
159 default:
160 // parent
161 {
162 // wait till server is up
163 sleep(1);
164 socket_client_connection sc("./socket");
165 sc.set_logging(&cerr,debug);
166 command_client cc(&sc);
b5922184 167
307b5e74
TJ
168 result_container rc;
169 cc.send_command(new testfunc_cmd("hello"),rc);
d184c648 170
307b5e74 171 string ret=dynamic_cast<testfunc_res*>(rc.get_result())->get_data();
d184c648 172
307b5e74
TJ
173 BOOST_CHECK_EQUAL(string("hello, testfunc() was here"),ret);
174 }
b5922184 175 }
307b5e74 176}
d184c648 177
307b5e74
TJ
178BOOST_AUTO_TEST_CASE(SimpleException)
179{
180 switch(child_pid=fork())
d184c648 181 {
307b5e74
TJ
182 case -1:
183 {
184 BOOST_FAIL("fork error");
185 break;
186 }
187 case 0:
188 // child
d184c648 189 {
307b5e74 190 try
d184c648 191 {
307b5e74
TJ
192 socket_server ss("./socket");
193 command_server cs(ss);
194
195 // max 10 sec
196 for (int i=0; i < 10; i++)
197 cs.handle(1000000);
198 } catch(...)
d184c648 199 {
307b5e74 200 std::cerr << "exception in child. ignoring\n";
d184c648
GE
201 }
202
307b5e74
TJ
203 // don't call atexit and stuff
204 _exit(0);
205 }
d184c648 206
307b5e74
TJ
207 default:
208 // parent
209 {
210 // wait till server is up
211 sleep(1);
212 socket_client_connection sc("./socket");
213 sc.set_logging(&cerr,debug);
214 command_client cc(&sc);
d184c648 215
307b5e74
TJ
216 result_container rc;
217 cc.send_command(new testfunc_cmd("throw"),rc);
d184c648 218
307b5e74 219 string ret;
d184c648 220
307b5e74 221 try
e453407d 222 {
307b5e74 223 ret=dynamic_cast<testfunc_res*>(rc.get_result())->get_data();
e453407d 224 }
307b5e74
TJ
225 catch(t2n_runtime_error &e)
226 { ret=e.what(); }
227 catch(...)
228 { throw; }
e453407d 229
307b5e74 230 BOOST_CHECK_EQUAL(string("throw me around"),ret);
e453407d
GE
231 }
232 }
307b5e74 233}
d184c648 234
307b5e74
TJ
235BOOST_AUTO_TEST_CASE(BigReturn)
236{
237 switch(child_pid=fork())
58b327c6 238 {
307b5e74
TJ
239 case -1:
240 {
241 BOOST_FAIL("fork error");
242 break;
243 }
244 case 0:
245 // child
58b327c6 246 {
307b5e74 247 try
58b327c6 248 {
307b5e74
TJ
249 socket_server ss("./socket");
250 command_server cs(ss);
251
252 // max 10 sec
253 for (int i=0; i < 10; i++)
254 cs.handle(1000000);
255 } catch(...)
58b327c6 256 {
307b5e74 257 std::cerr << "exception in child. ignoring\n";
58b327c6
GE
258 }
259
307b5e74
TJ
260 // don't call atexit and stuff
261 _exit(0);
262 }
58b327c6 263
307b5e74
TJ
264 default:
265 // parent
266 {
267 // wait till server is up
268 sleep(1);
269 socket_client_connection sc("./socket");
270 command_client cc(&sc);
58b327c6 271
307b5e74
TJ
272 result_container rc;
273 cc.send_command(new testfunc_cmd("big"),rc);
58b327c6 274
307b5e74
TJ
275 string ret=dynamic_cast<testfunc_res*>(rc.get_result())->get_data();
276
277 BOOST_CHECK_EQUAL(string().insert(0,100*1024,'x'),ret);
58b327c6
GE
278 }
279 }
307b5e74 280}
58b327c6 281
307b5e74
TJ
282BOOST_AUTO_TEST_CASE(BigParameter)
283{
284 switch(child_pid=fork())
58b327c6 285 {
307b5e74 286 case -1:
58b327c6 287 {
307b5e74
TJ
288 BOOST_FAIL("fork error");
289 break;
290 }
291 case 0:
292 // child
293 {
294 try
58b327c6 295 {
307b5e74
TJ
296 socket_server ss("./socket");
297 command_server cs(ss);
298
299 // max 60 sec - we need atleast 28 handle calls to transfer the buffer
300 for (int i=0; i < 60; i++) {
301 cs.handle(1000000);
58b327c6 302 }
307b5e74 303 } catch(...)
58b327c6 304 {
307b5e74 305 std::cerr << "exception in child. ignoring\n";
58b327c6
GE
306 }
307
307b5e74
TJ
308 // don't call atexit and stuff
309 _exit(0);
310 }
311
312 default:
313 // parent
314 {
315 // wait till server is up
316 sleep(1);
317 socket_client_connection sc("./socket");
318 command_client cc(&sc);
58b327c6 319
307b5e74
TJ
320 result_container rc;
321 cc.send_command(new testfunc_cmd(string().insert(0,100*1024,'y')),rc);
58b327c6 322
307b5e74 323 string ret=dynamic_cast<testfunc_res*>(rc.get_result())->get_data();
58b327c6 324
307b5e74 325 BOOST_CHECK_EQUAL(string().insert(0,100*1024,'y')+", testfunc() was here",ret);
58b327c6
GE
326 }
327 }
307b5e74 328}
58b327c6 329
307b5e74 330BOOST_AUTO_TEST_SUITE_END()