forked from artyom-beilis/cppcms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserialization_test.cpp
More file actions
478 lines (438 loc) · 9.13 KB
/
serialization_test.cpp
File metadata and controls
478 lines (438 loc) · 9.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
///////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2008-2012 Artyom Beilis (Tonkikh) <artyomtnk@yahoo.com>
//
// See accompanying file COPYING.TXT file for licensing details.
//
///////////////////////////////////////////////////////////////////////////////
#include <cppcms/serialization.h>
#include "test.h"
struct foo {
double t,v;
};
struct test2_base {
foo f;
int x,y;
void init()
{
f.t=100;
f.v=20;
x=65;
y=10;
}
void check()
{
TEST(f.t==100);
TEST(f.v==20);
TEST(x==65);
TEST(y==10);
}
};
struct test2 : public test2_base, public cppcms::serializable
{
void serialize(cppcms::archive &a)
{
a & cppcms::as_pod(f) & x & y;
}
};
struct test2c : public test2_base, public cppcms::serializable_base
{
void save(cppcms::archive &a) const
{
a << cppcms::as_pod(f) << x << y;
}
void load(cppcms::archive &a)
{
a >> cppcms::as_pod(f) >> x >> y;
}
};
template<typename Test2>
struct test1_base {
void init()
{
str="Hello";
x=11;
v.push_back(10);
v.push_back(20);
mapping[10].init();
mapping[20].init();
p.reset(new Test2);
p->init();
}
void check()
{
TEST(str=="Hello" && x == 11 && v[0]==10 && v[1]==20 && v.size()==2);
TEST(mapping.size()==2);
mapping[10].check();
mapping[20].check();
TEST(mapping.size()==2);
TEST(p);
p->check();
}
std::string str;
int x;
std::vector<int> v;
std::map<int,Test2> mapping;
booster::shared_ptr<Test2> p;
};
struct test1 : public test1_base<test2>, public cppcms::serializable
{
void serialize(cppcms::archive &a)
{
a & str & x & v & mapping & p;
}
};
struct test1c : public test1_base<test2c>, public cppcms::serializable_base
{
void save(cppcms::archive &a) const
{
a << str << x << v << mapping << p;
}
void load(cppcms::archive &a)
{
a >> str >> x >> v >> mapping >> p;
}
};
template<typename Pointer>
void test_ptr()
{
{
cppcms::archive a;
Pointer x(new int(15)),y;
a & x;
a.mode(cppcms::archive::load_from_archive);
a & y;
TEST(*x==*y && x.get()!=y.get());
TEST(a.eof());
}
{
cppcms::archive a;
Pointer const x(new int(15));
Pointer y;
a << x;
a.mode(cppcms::archive::load_from_archive);
a >> y;
TEST(*x==*y && x.get()!=y.get());
TEST(a.eof());
}
{
cppcms::archive a;
Pointer x,y(new int(15));
a & x;
a.mode(cppcms::archive::load_from_archive);
a & y;
TEST(y.get()==0);
TEST(a.eof());
}
{
cppcms::archive a;
Pointer const x;
Pointer y(new int(15));
a << x;
a.mode(cppcms::archive::load_from_archive);
a >> y;
TEST(y.get()==0);
TEST(a.eof());
}
}
template<typename T>
T const &const_ref(T &x)
{
return x;
}
int main()
{
try {
std::cout << "Testing POD" << std::endl;
{
cppcms::archive a;
unsigned int x=0xDEADBEEF;
a & x;
a.mode(cppcms::archive::load_from_archive);
unsigned int y = 0xFFFFFFFF;
a & y;
TEST(y==0xDEADBEEF);
TEST(a.eof());
a.reset();
TEST(a.next_chunk_size() == sizeof(int));
}
{
cppcms::archive a;
const unsigned int x=0xDEADBEEF;
a << x;
a.mode(cppcms::archive::load_from_archive);
unsigned int y = 0xFFFFFFFF;
a >> y;
TEST(y==0xDEADBEEF);
TEST(a.eof());
a.reset();
TEST(a.next_chunk_size() == sizeof(int));
}
std::cout << "Testing String" << std::endl;
{
cppcms::archive a;
std::string x="Hello World";
a & x;
a.mode(cppcms::archive::load_from_archive);
std::string y;
a & y;
TEST(y==x);
TEST(a.eof());
a.reset();
TEST(a.next_chunk_size() == x.size());
}
{
cppcms::archive a;
std::string const x="Hello World";
a << x;
a.mode(cppcms::archive::load_from_archive);
std::string y;
a >> y;
TEST(y==x);
TEST(a.eof());
a.reset();
TEST(a.next_chunk_size() == x.size());
}
std::cout << "Testing array" << std::endl;
{
cppcms::archive a;
std::string x[2]={"hello","world"};
a << x;
a.mode(cppcms::archive::load_from_archive);
std::string y[2];
a >> y;
TEST(x[0]==y[0] && x[1]==y[1]);
TEST(a.eof());
}
{
cppcms::archive a;
std::string const x[2]={"hello","world"};
a << x;
a.mode(cppcms::archive::load_from_archive);
std::string y[2];
a >> y;
TEST(x[0]==y[0] && x[1]==y[1]);
TEST(a.eof());
}
std::cout << "Testing POD array" << std::endl;
{
cppcms::archive a;
int x[2]={10,20};
a & x;
a.mode(cppcms::archive::load_from_archive);
TEST(a.next_chunk_size()==sizeof(int)*2);
int y[2]={0,0};
a & y;
TEST(x[0]==y[0] && x[1]==y[1]);
TEST(a.eof());
}
{
cppcms::archive a;
int const x[2]={10,20};
a << x;
a.mode(cppcms::archive::load_from_archive);
TEST(a.next_chunk_size()==sizeof(int)*2);
int y[2]={0,0};
a >> y;
TEST(x[0]==y[0] && x[1]==y[1]);
TEST(a.eof());
}
std::cout << "Testing POD vector" << std::endl;
{
cppcms::archive a;
std::vector<int> x;
x.push_back(10);
x.push_back(20);
x.push_back(30);
a & x;
a.mode(cppcms::archive::load_from_archive);
TEST(a.next_chunk_size()==sizeof(int)*3);
std::vector<int> y;
a & y;
TEST(x==y);
TEST(a.eof());
}
{
cppcms::archive a;
std::vector<int> xr;
xr.push_back(10);
xr.push_back(20);
xr.push_back(30);
std::vector<int> const &x=xr;
a << x;
a.mode(cppcms::archive::load_from_archive);
TEST(a.next_chunk_size()==sizeof(int)*3);
std::vector<int> y;
a >> y;
TEST(x==y);
TEST(a.eof());
}
std::cout << "Testing list" << std::endl;
{
cppcms::archive a;
std::list<int> x;
x.push_back(10);
x.push_back(20);
x.push_back(30);
a & x;
a.mode(cppcms::archive::load_from_archive);
std::list<int> y;
a & y;
TEST(x==y);
TEST(a.eof());
}
{
cppcms::archive a;
std::list<int> xr;
xr.push_back(10);
xr.push_back(20);
xr.push_back(30);
std::list<int> const &x=xr;
a << x;
a.mode(cppcms::archive::load_from_archive);
std::list<int> y;
a >> y;
TEST(x==y);
TEST(a.eof());
}
std::cout << "Testing compund" << std::endl;
{
cppcms::archive a;
std::vector<std::string> x;
x.push_back("a");
x.push_back("XX");
x.push_back("tttt");
a & x;
a.mode(cppcms::archive::load_from_archive);
std::vector<std::string> y;
a & y;
TEST(x==y);
TEST(a.eof());
}
{
cppcms::archive a;
std::vector<std::string> xr;
xr.push_back("a");
xr.push_back("XX");
xr.push_back("tttt");
std::vector<std::string> const &x=xr;
a << x;
a.mode(cppcms::archive::load_from_archive);
std::vector<std::string> y;
a >> y;
TEST(x==y);
TEST(a.eof());
}
std::cout << "Testing set" << std::endl;
{
cppcms::archive a;
std::set<std::string> x;
x.insert("a");
x.insert("XX");
x.insert("tttt");
a & x;
a.mode(cppcms::archive::load_from_archive);
std::set<std::string> y;
a & y;
TEST(x==y);
TEST(a.eof());
}
{
cppcms::archive a;
std::set<std::string> xr;
xr.insert("a");
xr.insert("XX");
xr.insert("tttt");
std::set<std::string> const &x=xr;
a << x;
a.mode(cppcms::archive::load_from_archive);
std::set<std::string> y;
a >> y;
TEST(x==y);
TEST(a.eof());
}
std::cout << "Testing map" << std::endl;
{
cppcms::archive a;
std::map<std::string,std::vector<int> > x;
x["a"].push_back(10);
x["a"].push_back(20);
x["b"].push_back(40);
a & x;
a.mode(cppcms::archive::load_from_archive);
std::map<std::string,std::vector<int> > y;
a & y;
TEST(x==y);
TEST(a.eof());
}
{
cppcms::archive a;
std::map<std::string,std::vector<int> > xr;
xr["a"].push_back(10);
xr["a"].push_back(20);
xr["b"].push_back(40);
std::map<std::string,std::vector<int> > const &x=xr;
a << x;
a.mode(cppcms::archive::load_from_archive);
std::map<std::string,std::vector<int> > y;
a >> y;
TEST(x==y);
TEST(a.eof());
}
std::cout << "Testing multimap" << std::endl;
{
cppcms::archive a;
std::multimap<std::string,std::vector<int> > x,y;
x.insert(std::pair<std::string,std::vector<int> >("foo",std::vector<int>(10,20)));
a << const_ref(x);
a.mode(cppcms::archive::load_from_archive);
a >> y;
TEST(x==y);
TEST(a.eof());
}
std::cout << "Testing smart pointer" << std::endl;
test_ptr<booster::shared_ptr<int> >();
test_ptr<booster::hold_ptr<int> >();
test_ptr<booster::copy_ptr<int> >();
test_ptr<booster::clone_ptr<int> >();
test_ptr<std::auto_ptr<int> >();
std::cout << "Testing object serialization" << std::endl;
{
std::string tmp;
{
test1 t;
t.init();
{
test1 const &tt=t;
cppcms::serialization_traits<test1>::save(tt,tmp);
}
}
{
test1 t;
cppcms::serialization_traits<test1>::load(tmp,t);
t.check();
}
}
{
std::string tmp;
{
test1c t;
t.init();
{
test1c const &tt=t;
cppcms::serialization_traits<test1c>::save(tt,tmp);
}
}
{
test1c t;
cppcms::serialization_traits<test1c>::load(tmp,t);
t.check();
}
}
}
catch(std::exception const &e) {
std::cerr << "Fail: " << e.what() << std::endl;
return 1;
}
std::cout << "Ok" << std::endl;
}