-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.cpp
More file actions
554 lines (442 loc) · 11.8 KB
/
Copy pathtest.cpp
File metadata and controls
554 lines (442 loc) · 11.8 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
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
#include "XPPConfig.h"
#define ASSERT_EQUAL \
tests_total++; \
\
if( a == b ) { \
tests_passed++; \
printf( "ok" ); \
} \
else { \
tests_failed++; \
printf( "failed" ); \
} \
printf( "\n" ); \
if( XPPCError() ) { \
printf( "error was %s", XPPCLastError() );\
}
void assertInt( int, int );
void assertFloat( float, float );
void assertBool( bool, bool );
void assertString( string, string );
void assertCString( char *, char * );
void testInts( void );
void testFloats( void );
void testBools( void );
void testStrings( void );
void testCStrings( void );
int tests_total = 0;
int tests_passed = 0;
int tests_failed = 0;
void assertInt( int a, int b ) {
printf( "test %d = %d ", a, b );
ASSERT_EQUAL
}
void assertFloat( float a, float b ) {
printf( "test %f = %f ", a, b );
ASSERT_EQUAL
}
void assertBool( bool a, bool b ) {
printf( "test %d = %d ", a, b );
ASSERT_EQUAL
}
void assertString( string a, string b ) {
printf( "test %s = %s ", a.c_str(), b.c_str() );
ASSERT_EQUAL
}
void assertCString( char *a, char *b ) {
printf( "test %s = %s ", a, b );
/* this needs to be handled specially */
tests_total++;
if( strcmp( a, b ) == 0 ) {
printf( "ok" );
tests_passed++;
}
else {
printf( "failed" );
tests_failed++;
}
printf( "\n" );
}
void testInts( void ) {
int num_configs = 4;
XPPCItem *configs = XPPCInit( num_configs );
/* set defaults */
int one = 1,
two = 2,
three = 3,
four = 4;
/***
pos int
10
pos int2
583
neg int
-3
neg int2
-7382
*/
/* we'll tests several times with a few configurations:
* 1. all on default as possible, should all have the
* results from the file
*
* 2. all configed to be too high - should all be defaults
*
* 3. all configed to be too low - should all be defaults
*
* 4. test all configs at lower limit equal or above by one
*
* 5. test all configs at upper limit equal or below by one
*/
/* 1 all defaults, all results should be per the config file */
configs[0].type = XPPC_TYPE_INT;
configs[0].key = "pos int2";
configs[0].ref = &two;
configs[1].type = XPPC_TYPE_INT;
configs[1].key = "pos int";
configs[1].ref = &one;
configs[2].type = XPPC_TYPE_INT;
configs[2].key = "neg int";
configs[2].ref = &three;
configs[3].type = XPPC_TYPE_INT;
configs[3].key = "neg int2";
configs[3].ref = &four;
if( !XPPCParseConfigFile( "./test_conf.txt", configs, num_configs ) ) {
printf( "%s\n", XPPCLastError() );
return;
}
printf( "\ntesting ints with default settings...\n" );
assertInt( one, 10 );
assertInt( two, 583 );
assertInt( three, -3 );
assertInt( four, -7382 );
/* reset and do test 3:
* 3. all configs too low, expected default values */
configs = XPPCInit( num_configs );
/* set defaults */
one = 1;
two = 2;
three = 3;
four = 4;
configs[0].type = XPPC_TYPE_INT;
configs[0].key = "pos int2";
configs[0].ref = &two;
configs[0].min = 32757;
configs[1].type = XPPC_TYPE_INT;
configs[1].key = "pos int";
configs[1].ref = &one;
configs[1].min = 32757;
configs[2].type = XPPC_TYPE_INT;
configs[2].key = "neg int";
configs[2].ref = &three;
configs[2].min = 32757;
configs[3].type = XPPC_TYPE_INT;
configs[3].key = "neg int2";
configs[3].ref = &four;
configs[3].min = 32757;
XPPCParseConfigFile( "./test_conf.txt", configs, num_configs );
printf( "\ntesting ints with lower bound set to 32767...\n" );
assertInt( one, 1 );
assertInt( two, 2 );
assertInt( three, 3 );
assertInt( four, 4 );
/* reset and do test 4:
* 4. testing lower bound equal or above by one */
configs = XPPCInit( num_configs );
/* set defaults */
one = 1;
two = 2;
three = 3;
four = 4;
/***
pos int
10
pos int2
583
neg int
-3
neg int2
-7382
*/
configs[0].type = XPPC_TYPE_INT;
configs[0].key = "pos int2";
configs[0].ref = &two;
configs[0].min = 583;
configs[1].type = XPPC_TYPE_INT;
configs[1].key = "pos int";
configs[1].ref = &one;
configs[1].min = 11;
configs[2].type = XPPC_TYPE_INT;
configs[2].key = "neg int";
configs[2].ref = &three;
configs[2].min = -3;
configs[3].type = XPPC_TYPE_INT;
configs[3].key = "neg int2";
configs[3].ref = &four;
configs[3].min = -7381;
XPPCParseConfigFile( "./test_conf.txt", configs, num_configs );
printf( "\ntesting ints with lower bound equal or one greater...\n" );
assertInt( one, 1 );
assertInt( two, 583 );
assertInt( three, -3 );
assertInt( four, 4 );
/* reset and do test 5:
* 5. upper is equal or below by one */
configs = XPPCInit( num_configs );
/* set defaults */
one = 1;
two = 2;
three = 3;
four = 4;
/***
pos int
10
pos int2
583
neg int
-3
neg int2
-7382
*/
configs[0].type = XPPC_TYPE_INT;
configs[0].key = "pos int2";
configs[0].ref = &two;
configs[0].max = 582;
configs[1].type = XPPC_TYPE_INT;
configs[1].key = "pos int";
configs[1].ref = &one;
configs[1].max = 10;
configs[2].type = XPPC_TYPE_INT;
configs[2].key = "neg int";
configs[2].ref = &three;
configs[2].max = -4;
configs[3].type = XPPC_TYPE_INT;
configs[3].key = "neg int2";
configs[3].ref = &four;
configs[3].max = -7382;
XPPCParseConfigFile( "./test_conf.txt", configs, num_configs );
printf( "\ntesting ints with upper bound equal or one under...\n" );
assertInt( one, 10 );
assertInt( two, 2 );
assertInt( three, 3 );
assertInt( four, -7382 );
}
void testFloats( void ) {
int num_configs = 2;
XPPCItem *configs = XPPCInit( num_configs );
/*
pos float
4738.281
neg float
-29.275
*/
/* set defaults */
float one = 1,
two = 2;
configs[0].key = "pos float";
configs[0].ref = &one;
configs[1].key = "neg float";
configs[1].ref = &two;
XPPCParseConfigFile( "./test_conf.txt", configs, num_configs );
printf( "\ntesting floats with defaults...\n" );
assertFloat( one, 4738.281 );
assertFloat( two, -29.275 );
/* reset and do more tests */
configs = XPPCInit( num_configs );
one = 1,
two = 2;
configs[0].key = "pos float";
configs[0].ref = &one;
configs[0].max = 4738.280;
configs[1].key = "neg float";
configs[1].ref = &two;
configs[1].max = -29.276;
/*
pos float
4738.281
neg float
-29.275
*/
XPPCParseConfigFile( "./test_conf.txt", configs, num_configs );
printf( "\ntesting floats with upper limit .001 under\n" );
assertFloat( one, 1 );
assertFloat( two, 2 );
/* reset and do more tests */
configs = XPPCInit( num_configs );
one = 1,
two = 2;
configs[0].key = "pos float";
configs[0].ref = &one;
configs[0].min = 4738.282;
configs[1].key = "neg float";
configs[1].ref = &two;
configs[1].min = -29.274;
XPPCParseConfigFile( "./test_conf.txt", configs, num_configs );
printf( "\ntesting floats with lower limit .001 over\n" );
assertFloat( one, 1 );
assertFloat( two, 2 );
}
void testBools( void ) {
int num_configs = 6;
XPPCItem *configs = XPPCInit( num_configs );
/*
here's a bool
0
here's another bool
1
*/
/* for bools we'll test that real bools are read correctly and that
* ints read as bools fail as expected to the defaults */
bool one = true,
two = false,
three = true,
four = false,
five = true,
six = false;
configs[0].type = XPPC_TYPE_BOOLEAN;
configs[0].key = "here's a bool";
configs[0].ref = &one;
configs[1].type = XPPC_TYPE_BOOLEAN;
configs[1].key = "here's another bool";
configs[1].ref = &two;
configs[2].type = XPPC_TYPE_BOOLEAN;
configs[2].key = "neg int";
configs[2].ref = &three;
configs[3].type = XPPC_TYPE_BOOLEAN;
configs[3].key = "pos int";
configs[3].ref = &four;
configs[4].type = XPPC_TYPE_BOOLEAN;
configs[4].key = "pos int2";
configs[4].ref = &five;
configs[5].type = XPPC_TYPE_BOOLEAN;
configs[5].key = "neg int2";
configs[5].ref = &six;
XPPCParseConfigFile( "./test_conf.txt", configs, num_configs );
printf( "\ntesting bools....\n" );
assertBool( one, false );
assertBool( two, true );
assertBool( three, true );
assertBool( four, false );
assertBool( five, true );
assertBool( six, false );
}
void testStrings( void ) {
int num_configs = 5;
XPPCItem *configs = XPPCInit( num_configs );
/* set defaults */
string one = "foo",
two = "bar",
three = "baz",
four = "fizz",
five = "buzz";
/*
string
Hello World!
string2
!dlroW olleH
string 3
cats
string 4
dogs
string 5
potatoes
*/
/* defaults */
configs[0].type = XPPC_TYPE_STRING;
configs[0].key = "string";
configs[0].ref = &one;
/* min = strlen */
configs[1].type = XPPC_TYPE_STRING;
configs[1].key = "string2";
configs[1].ref = &two;
configs[1].min = 9;
/* min > strlen */
configs[2].type = XPPC_TYPE_STRING;
configs[2].key = "string 3";
configs[2].ref = &three;
configs[2].min = 5;
/* max = strlen */
configs[3].type = XPPC_TYPE_STRING;
configs[3].key = "string 4";
configs[3].ref = &four;
configs[3].max = 4;
/* max < strlen */
configs[4].type = XPPC_TYPE_STRING;
configs[4].key = "string 5";
configs[4].ref = &five;
configs[4].max = 7;
XPPCParseConfigFile( "./test_conf.txt", configs, num_configs );
printf( "\ntesting strings....\n" );
assertString( one, "Hello World!" );
assertString( two, "!dlroW olleH" );
assertString( three, "baz" );
assertString( four, "dogs" );
assertString( five, "buzz" );
}
void testCStrings( void ) {
int num_configs = 5;
XPPCItem *configs = XPPCInit( num_configs );
/* set defaults */
char *one = "foo",
*two = "bar",
*three = "baz",
*four = "fizz",
*five = "buzz";
/*
string
Hello World!
string2
!dlroW olleH
string 3
cats
string 4
dogs
string 5
potatoes
*/
/* defaults */
configs[0].type = XPPC_TYPE_CSTRING;
configs[0].key = "string";
configs[0].ref = &one;
/* min = strlen */
configs[1].type = XPPC_TYPE_CSTRING;
configs[1].key = "string2";
configs[1].ref = &two;
configs[1].min = 9;
/* min > strlen */
configs[2].type = XPPC_TYPE_CSTRING;
configs[2].key = "string 3";
configs[2].ref = &three;
configs[2].min = 5;
/* max = strlen */
configs[3].type = XPPC_TYPE_CSTRING;
configs[3].key = "string 4";
configs[3].ref = &four;
configs[3].max = 4;
/* max < strlen */
configs[4].type = XPPC_TYPE_CSTRING;
configs[4].key = "string 5";
configs[4].ref = &five;
configs[4].max = 7;
XPPCParseConfigFile( "./test_conf.txt", configs, num_configs );
printf( "\ntesting cstrings....\n" );
assertCString( one, "Hello World!" );
assertCString( two, "!dlroW olleH" );
assertCString( three, "baz" );
assertCString( four, "dogs" );
assertCString( five, "buzz" );
}
int main( void ) {
string result;
testInts();
testFloats();
testBools();
testStrings();
testCStrings();
result = tests_failed
? "FAILURE"
: "SUCCESS";
printf( "\ntotal: %d\npassed: %d\nfailed: %d\n", tests_total, tests_passed, tests_failed );
printf( "\nTest results: %s\n\n", result.c_str() );
/* exit status 0 if nothing failed */
return tests_failed;
}