File: test_server.c

package info (click to toggle)
libcontra 0.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 576 kB
  • sloc: ansic: 1,458; sh: 106; makefile: 11
file content (713 lines) | stat: -rw-r--r-- 21,578 bytes parent folder | download
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
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
/* 
  Copyright 2023 Thorsten Alteholz <libcontra@alteholz.eu>

  This program is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation; either version 3 of the License, or
  (at your option) any later version.

  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with this program (see the file COPYING included with this
  distribution); if not, write to the Free Software Foundation, Inc.,
  59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*/

/*!
*************************************************************************
*
* \file test_server.c
*
* \author Thorsten Alteholz <libcontra@alteholz.eu>
*
* \brief this is the server for testing
*
* This server contains all functions that are within the wrapper 
* library. It shall produce the output for all server functions.
*
*
* \addtogroup libcontratest
* The group of the test stuff
* @{
************************************************************************/

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <getopt.h>
#include <pthread.h>
#include <stdbool.h>
#include <libgen.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
#define __USE_MISC 1 /*!< Google said this has to be set here */
#include <arpa/inet.h>
#include <netdb.h>
#include <sys/socket.h>
#include <strings.h>
#include <libcontra_log.h>
#include <libcontra.h>
#include "test-common.h"

pthread_mutex_t libcontra_lock; /*!< mutex for output locks in different functions */
bool	libcontra_logStdio=true; /*!< during the tests we want to capture output on stdio */
int	libcontra_loglevel=LOGLEVEL_MAX; /*!< during the tests we want to log everything */
FILE*	libcontra_file=NULL; /*!< variable needed to be able to use libcontra */

/* global variables for server tests */
#define PORT 54321 /*!< default port that the test server listens on */
#define SA struct sockaddr  /*!< shortcut */
struct sockaddr_in servaddr; /*!< global variable for local test server address */
int globalSockfd; /*!< global variable for socket that can be used in each test */
int globalConnfd; /*!< global variable for connection socket that can be used in each test */


static const struct option long_options[] =
    {
        { "testnumber", required_argument,       0, 't' },
//        { "BBB", no_argument,       0, 'b' },
//        { "CCC", required_argument, 0, 'c' },
//        { "DDD", no_argument,       0, 'd' },
//        { "EEE", no_argument,       0, 0   },
//        { "FFF", required_argument, 0, 0   },
        0
    };

/*!
*************************************************************************
*
* \fn void setSocketOptions(int sockfd)
*
* \author Thorsten Alteholz <libcontra@alteholz.eu>
*
* \brief set default options of socket
* 
* at the moment the only default option that is set is SO_REUSEADDR
*
************************************************************************/
void setSocketOptions(int sockfd)
{
  const int enable = 1;
  if (setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, &enable, sizeof(int)) < 0)
      libcontra_log(LOGLEVEL_ERROR, "E: could not setsockopt(v(%i) -> SO_REUSEADDR  (%s:v(%d))",sockfd, basename(__FILE__), __LINE__);
}

/*!
*************************************************************************
*
* \fn bool do_test_0_1(int testcase)
*
* \author Thorsten Alteholz <libcontra@alteholz.eu>
*
* \brief test feature 1 of testcase 0
*
* \return rc value of test -> always true
************************************************************************/
bool do_test_0_1(int testcase)
{
  bool result=true;

  libcontra_log(LOGLEVEL_INFO, "I: ...... doing test %02i 1: %5s (%5s)",testcase, bool2str(result), bool2str(true));
  return result;
}

/*!
*************************************************************************
*
* \fn bool do_test_0_2(int testcase)
*
* \author Thorsten Alteholz <libcontra@alteholz.eu>
*
* \brief test feature 2 of testcase 0
*
* \return rc value of test = always false
************************************************************************/
bool do_test_0_2(int testcase)
{
  bool result=false;

  libcontra_log(LOGLEVEL_INFO, "I: ...... doing test %02i 2: %5s (%5s)",testcase, bool2str(result), bool2str(false));
  return result;
}

/*!
*************************************************************************
*
* \fn bool do_test_0_3(int testcase)
*
* \author Thorsten Alteholz <libcontra@alteholz.eu>
*
* \brief test feature 3 of testcase 0
* 
* produce log output for binary data, need to be compared
* with template, so return value is always true
*
* \return rc value of test = always true
************************************************************************/
bool do_test_0_3(int testcase)
{
  bool result=true;
  
  char *data1="01234567";             /* less than a line */
  char *data2="01234567899876543210"; /* a bit more than a line */
  char data3[257];
  int i;
  
  for (i=0;i<256;i++) data3[i]=i; 
  data3[256]=0; data3[0]=1;
  
  libcontra_log_data(LOGLEVEL_MAX, data1, strlen(data1));
  libcontra_log_data(LOGLEVEL_MAX, data2, strlen(data2));
  libcontra_log_data(LOGLEVEL_MAX, data3, strlen(data3));

  libcontra_log(LOGLEVEL_INFO, "I: ...... doing test %02i 3: %5s (%5s)",testcase, bool2str(result), bool2str(false));
  return result;
}

/*!
*************************************************************************
*
* \fn bool do_test_0(int testcase)
*
* \author Thorsten Alteholz <libcontra@alteholz.eu>
*
* \brief testcase 0, server internal test
*
* \return rc value of all tests from testcase 0
************************************************************************/
bool do_test_0(int testcase)
{
  bool result=true;

  result=result & do_test_0_1(testcase); /* result of test: true */
  result=result & !do_test_0_2(testcase); /* result of test: false */
  result=result & do_test_0_3(testcase); /* result of test: false */
  libcontra_log(LOGLEVEL_INFO, "I: ... test %02i: %5s (%5s)",testcase, bool2str(result), bool2str(true));

  return result;
}

/*!
*************************************************************************
*
* \fn bool do_test_1_2(int testcase)
*
* \author Thorsten Alteholz <libcontra@alteholz.eu>
*
* \brief test feature 1 of testcase 2; socket(AF_INET6)
*
* \return rc value of test
************************************************************************/
int do_test_1_2(int testcase)
{
  int result=0;
  bool resultBool;
  
  result=socket(AF_INET6, SOCK_STREAM, 0);
  resultBool=socket>0;
  libcontra_log(LOGLEVEL_INFO, "I: ...... doing test %02i 2: v(%i) %5s (%5s) (%s:v(%d))",testcase, result, bool2str(resultBool), bool2str(true), basename(__FILE__), __LINE__);
  return result;
}

/*!
*************************************************************************
*
* \fn bool do_test_1_1(int testcase)
*
* \author Thorsten Alteholz <libcontra@alteholz.eu>
*
* \brief test feature 1 of testcase 1; socket(AF_INET)
*
* \return rc value of test
************************************************************************/
int do_test_1_1(int testcase)
{
  int result=0;
  bool resultBool;
  
  result=socket(AF_INET, SOCK_STREAM, 0);
  resultBool=socket>0;
  libcontra_log(LOGLEVEL_INFO, "I: ...... doing test %02i 1: v(%i) %5s (%5s) (%s:v(%d))",testcase, result, bool2str(resultBool), bool2str(true), basename(__FILE__), __LINE__);
  return result;
}


/*!
*************************************************************************
*
* \fn bool do_test_1(int testcase)
*
* \author Thorsten Alteholz <libcontra@alteholz.eu>
*
* \brief testcase 1, socket test
*
* \return rc value of all tests from testcase 0
************************************************************************/
bool do_test_1(int testcase)
{
  bool result=true;

  result=result & (do_test_1_1(testcase)>0); /* result of test: true */
  result=result & (do_test_1_2(testcase)>0); /* result of test: true */
  libcontra_log(LOGLEVEL_INFO, "I: ... test %02i: %5s (%5s)",testcase, bool2str(result), bool2str(true));

  return result;
}

/*!
*************************************************************************
*
* \fn int do_test_2_1(int testcase, int sockfd)
*
* \author Thorsten Alteholz <libcontra@alteholz.eu>
*
* \brief test feature 1 of testcase 2; bind()
*
* \return rc value of test
************************************************************************/
int do_test_2_1(int testcase, int sockfd)
{
  int result=0;
  bool resultBool;
  
  // assign IP, PORT
  bzero(&servaddr, sizeof(servaddr));   
  servaddr.sin_family = AF_INET;
  servaddr.sin_addr.s_addr = htonl(INADDR_ANY);
  servaddr.sin_port = htons(PORT+testcase);

  result=bind(sockfd, (SA*)&servaddr, sizeof(servaddr));
  
  resultBool=result==0;
  
  libcontra_log(LOGLEVEL_INFO, "I: ...... doing test %02i 1: v(%i) %5s (%5s) (%s:v(%d))",testcase, result, bool2str(resultBool), bool2str(true), basename(__FILE__), __LINE__);
  return result;
}


/*!
*************************************************************************
*
* \fn bool do_test_2(int testcase)
*
* \author Thorsten Alteholz <libcontra@alteholz.eu>
*
* \brief testcase 2, bind test
*
* we use the global variable globalSockfd
*
* \return rc value of all tests from testcase 0
************************************************************************/
bool do_test_2(int testcase)
{
  bool result=true;
  int bindrc, sockfd;
  int i;
  
  /* get AF_INET socket with function from previous test */
  sockfd=do_test_1_1(testcase);
  if (sockfd == -1) {
    libcontra_log(LOGLEVEL_ERROR, "E: ... test %02i: could not create socket %i -> %s (%s:v(%d))", testcase, errno, strerror(errno), basename(__FILE__), __LINE__);
    return false;
  } else {
    libcontra_log(LOGLEVEL_INFO, "I: ... test %02i: socket created (%s:v(%d))", testcase, basename(__FILE__), __LINE__);
  }

  bindrc=do_test_2_1(testcase, sockfd);
  result=bindrc==0;

  close(sockfd); // we no longer need the socket
  
  libcontra_log(LOGLEVEL_INFO, "I: ... test %02i: %5s (%5s)",testcase, bool2str(result), bool2str(true));

  return result;
}

/*!
*************************************************************************
*
* \fn bool do_test_3_1(int testcase, int sockfd)
*
* \author Thorsten Alteholz <libcontra@alteholz.eu>
*
* \brief test feature 1 of testcase 3; listen()
*
* \return rc value of test
************************************************************************/
int do_test_3_1(int testcase, int sockfd)
{
  int result=0;
  bool resultBool;
  

  result=listen(sockfd, 0);
  
  resultBool=result==0;
  
  libcontra_log(LOGLEVEL_INFO, "I: ...... doing test %02i 1: v(%i) %5s (%5s) (%s:v(%d))",testcase, result, bool2str(resultBool), bool2str(true), basename(__FILE__), __LINE__);
  return result;
}

/*!
*************************************************************************
*
* \fn bool do_test_3(int testcase)
*
* \author Thorsten Alteholz <libcontra@alteholz.eu>
*
* \brief testcase 3, listen() test
*
* \return rc value of all tests from testcase 3
************************************************************************/
bool do_test_3(int testcase)
{
  bool result=true;
  int bindrc, listenrc;

  /* get AF_INET socket with function from previous test */
  globalSockfd=do_test_1_1(testcase);
  if (globalSockfd == -1) {
    libcontra_log(LOGLEVEL_ERROR, "E: ... test %02i: could not create socket %i -> %s (%s:v(%d))", testcase, errno, strerror(errno), basename(__FILE__), __LINE__);
    return false;
  } else {
    libcontra_log(LOGLEVEL_INFO, "I: ... test %02i: socket v(%i) created (%s:v(%d))", testcase, globalSockfd, basename(__FILE__), __LINE__);
  }
  setSocketOptions(globalSockfd);
  
  bindrc=do_test_2_1(testcase, globalSockfd);
  if (bindrc != 0) {
    libcontra_log(LOGLEVEL_ERROR, "E: ... test %02i: could not bind to socket: %i -> %s (%s:v(%d))", testcase, errno, strerror(errno), basename(__FILE__), __LINE__);
    return false;
  } else {
    libcontra_log(LOGLEVEL_INFO, "I: ... test %02i: bind done (%s:v(%d))", testcase, basename(__FILE__), __LINE__);
  }
  
  listenrc=do_test_3_1(testcase, globalSockfd);
  result=listenrc==0;
  
  //we do need this socket in do_test_4: close(globalSockfd);
  
  libcontra_log(LOGLEVEL_INFO, "I: ... test %02i: %5s (%5s)",testcase, bool2str(result), bool2str(true));

  return result;
}

/*!
*************************************************************************
*
* \fn bool do_test_4_1(int testcase, int sockfd)
*
* \author Thorsten Alteholz <libcontra@alteholz.eu>
*
* \brief test feature 1 of testcase 4; accept()
*
* \return rc value of test
************************************************************************/
int do_test_4_1(int testcase, int sockfd)
{
  int connfd=0;
  unsigned int len;
  bool resultBool;
  struct sockaddr_in cli;

  connfd=accept(sockfd, (SA*)&cli, &len);
  if (connfd < 0) {
    libcontra_log(LOGLEVEL_ERROR, "E: ... test %02i: could not accept socket: %i -> %s (%s:v(%d))", testcase, errno, strerror(errno), basename(__FILE__), __LINE__);
  }
  resultBool=connfd>=0;

  libcontra_log(LOGLEVEL_INFO, "I: ...... doing test %02i 1: v(%i) %5s (%5s) (%s:v(%d))",testcase, connfd, bool2str(resultBool), bool2str(true), basename(__FILE__), __LINE__);
  return connfd;
}

/*!
*************************************************************************
*
* \fn bool do_test_4(int testcase)
*
* \author Thorsten Alteholz <libcontra@alteholz.eu>
*
* \brief testcase 4, accept() test
*
* \return rc value of all tests from testcase 4
************************************************************************/
bool do_test_4(int testcase)
{
  bool result=true;
  int len;

  globalConnfd=do_test_4_1(testcase, globalSockfd); /* this test returns a connection socket, that can be used later on */

  result=globalConnfd>=0;

  libcontra_log(LOGLEVEL_INFO, "I: ... test %02i: %5s (%5s)",testcase, bool2str(result), bool2str(true));

  return result;
}

/*!
*************************************************************************
*
* \fn bool do_test_5_1(int testcase, int sockfd)
*
* \author Thorsten Alteholz <libcontra@alteholz.eu>
*
* \brief test feature 1 of testcase 5; recv()
*
* \return rc value of test
************************************************************************/
int do_test_5_1(int testcase, int connfd)
{
  unsigned int len;
  char buffer[TEST_RECV_BUFFER_LEN];
  bool resultBool;
  ssize_t receivedBytes;

  receivedBytes=recv(connfd, &buffer, TEST_RECV_BUFFER_LEN, 0);
  if (receivedBytes != TEST_SEND_MESSAGE_LEN) {
    libcontra_log(LOGLEVEL_ERROR, "E: ... test %02i: did not receive all byte: %li of %i (%s:v(%d))", testcase, receivedBytes, TEST_SEND_MESSAGE_LEN, basename(__FILE__), __LINE__);
  }
  resultBool=receivedBytes == TEST_SEND_MESSAGE_LEN;

  libcontra_log(LOGLEVEL_INFO, "I: ...... doing test %02i 1: v(%li) %5s (%5s) (%s:v(%d))",testcase, receivedBytes, bool2str(resultBool), bool2str(true), basename(__FILE__), __LINE__);
  return connfd;
}

/*!
*************************************************************************
*
* \fn bool do_test_5(int testcase)
*
* \author Thorsten Alteholz <libcontra@alteholz.eu>
*
* \brief testcase 5, send()+recv() test
*
* \return rc value of all tests from testcase 5
************************************************************************/
bool do_test_5(int testcase)
{
  bool result=true;
  int len;

  /* do_test_4 sets globalConnfd that we can use here to receive data */
  result=do_test_5_1(testcase, globalConnfd); /* this test returns a connection socket, that can be user later on */

  libcontra_log(LOGLEVEL_INFO, "I: ... test %02i: %5s (%5s)",testcase, bool2str(result), bool2str(true));

  return result;
}

/*!
*************************************************************************
*
* \fn bool do_test_6(int testcase)
*
* \author Thorsten Alteholz <libcontra@alteholz.eu>
*
* \brief testcase 6, setsockopt() + getsockopt()
*
* we use the global variable globalSockfd
*
* \return rc value of all tests from testcase 0
************************************************************************/
bool do_test_6(int testcase)
{
  bool result=true;
  int bindrc, sockfd;
  int i, value;
  socklen_t socklen; 
  
  /* get AF_INET socket with function from previous test */
  sockfd=do_test_1_1(testcase);
  if (sockfd == -1) {
    libcontra_log(LOGLEVEL_ERROR, "E: ... test %02i: could not create socket %i -> %s (%s:v(%d))", testcase, errno, strerror(errno), basename(__FILE__), __LINE__);
    return false;
  } else {
    libcontra_log(LOGLEVEL_INFO, "I: ... test %02i: socket created (%s:v(%d))", testcase, basename(__FILE__), __LINE__);
  }

  /* we have a sockt, now do some stuff with it */
  result=getsockopt ( sockfd , IPPROTO_TCP , TCP_MAXSEG , ( char* ) &value , &socklen ) ==  0;

  close(sockfd); // we no longer need the socket
  
  libcontra_log(LOGLEVEL_INFO, "I: ... test %02i: %5s (%5s)",testcase, bool2str(result), bool2str(true));

  return result;
}

/*!
*************************************************************************
*
* \fn bool do_test_7(int testcase)
*
* \author Thorsten Alteholz <libcontra@alteholz.eu>
*
* \brief testcase 7, gethostbyname() + gethostbyaddr()
*
* we use the global variable globalSockfd
*
* \return rc value of all tests from testcase 7
************************************************************************/
bool do_test_7(int testcase)
{
  bool result=true;
  int bindrc, sockfd;
  int i, value;
  socklen_t socklen; 
  const char *name="www.yahoo.com"; // they have several addresses and aliases
  struct hostent* rchostent;
  struct in_addr addr;
  struct in6_addr addr6;
  
  rchostent=gethostbyname(name);
  result=rchostent!=NULL;
  result=result & (strcmp(rchostent->h_name,"new-fp-shed.wg1.b.yahoo.com")==0); //TODO: is this an universal test?
  //TODO add more checks from rchostent struct
  
  inet_aton("87.248.100.216", &addr);
  rchostent=gethostbyaddr(&addr, sizeof(addr), AF_INET);
  result=result & (rchostent!=NULL);
  result=result & (strcmp(rchostent->h_name,"media-router-fp74.prod.media.vip.ir2.yahoo.com")==0); //TODO: is this an universal test?

  inet_pton(AF_INET6, "2a00:1288:110:c305::1:8000", &addr6);
  rchostent=gethostbyaddr(&addr6, sizeof(addr6), AF_INET6);
  result=result & (rchostent!=NULL);
  result=result & (strcmp(rchostent->h_name,"media-router-fp73.prod.media.vip.ir2.yahoo.com")==0); //TODO: is this an universal test?
  
  libcontra_log(LOGLEVEL_INFO, "I: ... test %02i: %5s (%5s)",testcase, bool2str(result), bool2str(true));

  return result;
}

/*!
*************************************************************************
*
* \fn bool do_test_8(int testcase)
*
* \author Thorsten Alteholz <libcontra@alteholz.eu>
*
* \brief testcase 8, reeaddrinfo() + getaddrinfo()
*
* we use the global variable globalSockfd
*
* \return rc value of all tests from testcase 8
************************************************************************/
bool do_test_8(int testcase)
{
  bool result=true;
  int rc;
  socklen_t socklen; 
  const char *nodename="www.yahoo.com";
  const char *srvname="www.yahoo.com";
  struct addrinfo *hints = NULL;
  struct addrinfo *res;

  
  rc=getaddrinfo(nodename, srvname, hints, &res);
  result=rc==0;
  
  
  libcontra_log(LOGLEVEL_INFO, "I: ... test %02i: %5s (%5s)",testcase, bool2str(result), bool2str(true));

  return result;
}

/*!
*************************************************************************
*
* \fn int main(int argc, char **argv)
*
* \author Thorsten Alteholz <libcontra@alteholz.eu>
*
* \brief main function of server
*
* @param[in] argc number of parameters
* @param[in] argv value of parameters
* 
* \return rc value of all tests
************************************************************************/

int main(int argc, char **argv)
{
 int result, index, testnumber=0;
 bool testresult=false;
 
 libcontra_log(LOGLEVEL_INFO, "I: start test_server");
 libcontra_log(LOGLEVEL_INFO, "I: ... parsing parameter");
 while(1) {
  result = getopt_long(argc, argv, "t:", long_options, &index);
  if (result == -1) break;
  switch (result) {
    case 't':
      testnumber=atoi(optarg);
      break;
    default: /* unknown */
      break;;
  }
 }
 libcontra_log(LOGLEVEL_INFO, "I: ... doing test %02i",testnumber);

 switch (testnumber) {
   case 0:
     testresult=do_test_0(0);
     break;
   case 1:
     testresult=do_test_1(1);
     break;
   case 2:
     testresult=do_test_2(2);
     break;
   case 3:
     testresult=do_test_3(3);
     break;
   case 4:
     /*
      *this is the same as testcase 3 ...
      */
     testresult=do_test_3(4);
     /*
      * ... but with a client actually connecting
      *     we are using globalSockfd here, so we can use that later
      */
     testresult=testresult & do_test_4(4);
     break;
   case 5:
     /*
      *this is the same as testcase 4 ...
      */
     testresult=do_test_3(5);
     /*
      * ... but with a client actually sending stuff
      *     we are using globalSockfd here, so we can use that later
      */
     testresult=testresult & do_test_4(5);
     testresult=testresult & do_test_5(5);
     break;
   case 6:
     testresult=do_test_6(6);
     break;
   case 7:
     testresult=do_test_7(7);
     break;
   case 8:
     testresult=do_test_8(8);
     break;
   default:
     break;
 }
 libcontra_log(LOGLEVEL_INFO, "I: end test_server: %s", bool2str(testresult));

 if (testresult) return 0;
 else return 1;
}




/*! @} */