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
|
/*
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_client.c
*
* \author Thorsten Alteholz <libcontra@alteholz.eu>
*
* \brief this is the client for testing
*
* This client contains all functions that are within the wrapper
* library. It shall produce the output for all client 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 <strings.h>
#include <errno.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 client 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 of socket to be used in several tests */
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 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(int testcase)
*
* \author Thorsten Alteholz <libcontra@alteholz.eu>
*
* \brief testcase 0, client 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 */
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 bool do_test_4_1(int testcase)
*
* \author Thorsten Alteholz <libcontra@alteholz.eu>
*
* \brief test feature 1 of testcase 4; connect
*
* \return rc value of test
************************************************************************/
bool do_test_4_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=connect(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 resultBool;
}
/*!
*************************************************************************
*
* \fn bool do_test_4(int testcase)
*
* \author Thorsten Alteholz <libcontra@alteholz.eu>
*
* \brief testcase 1, connect test <- accept test on server
*
* \return rc value of all tests from testcase 0
************************************************************************/
bool do_test_4(int testcase)
{
bool result=true;
int sockfd;
/* 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__);
}
result=do_test_4_1(testcase, sockfd);
close(sockfd);
libcontra_log(LOGLEVEL_INFO, "I: ... test %02i: %5s (%5s)",testcase, bool2str(result), bool2str(true));
return result;
}
/*!
*************************************************************************
*
* \fn bool do_test_5_1(int testcase)
*
* \author Thorsten Alteholz <libcontra@alteholz.eu>
*
* \brief test feature 1 of testcase 5; send
*
* \return rc value of test
************************************************************************/
bool do_test_5_1(int testcase, int sockfd)
{
int result=0;
bool resultBool;
ssize_t bytesSent;
bytesSent=send(sockfd, TEST_SEND_MESSAGE, TEST_SEND_MESSAGE_LEN,0);
resultBool=bytesSent==TEST_SEND_MESSAGE_LEN;
libcontra_log(LOGLEVEL_INFO, "I: ...... doing test %02i 1: v(%li) %5s (%5s) (%s:v(%d))",testcase, bytesSent, bool2str(resultBool), bool2str(true), basename(__FILE__), __LINE__);
return resultBool;
}
/*!
*************************************************************************
*
* \fn bool do_test_5(int testcase)
*
* \author Thorsten Alteholz <libcontra@alteholz.eu>
*
* \brief testcase 1, send)() test <- recv test on server
*
* \return rc value of all tests from testcase 0
************************************************************************/
bool do_test_5(int testcase)
{
bool result=true;
int sockfd;
/* 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__);
}
result=do_test_4_1(testcase, sockfd);
result=result & do_test_5_1(testcase, sockfd);
close(sockfd);
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 client
*
* @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_client");
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 4:
testresult=do_test_4(4);
break;
case 5:
testresult=do_test_5(5);
break;
default:
libcontra_log(LOGLEVEL_INFO, "I: wrong testcase %i", testnumber);
break;
}
libcontra_log(LOGLEVEL_INFO, "I: end test_client: %s", bool2str(testresult));
if (testresult) return 0;
else return 1;
}
/*! @} */
|