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
|
#include <stdlib.h>
#include <stdio.h>
#ifdef _WIN32
# include <winsock2.h>
# include <ws2tcpip.h>
#else
# include <netinet/in.h>
#endif
#include "xmlrpc_config.h"
#include "xmlrpc-c/util.h"
#include "xmlrpc-c/util_int.h"
#include "testtool.h"
/* Defines global variable, 'total_tests', 'total_failures' */
/* This is a good place to set a breakpoint. */
void
test_failure(const char * const file,
unsigned int const line,
const char * const label,
const char * const statement) {
++total_failures;
printf("\n%s:%u: test failure: %s (%s)\n", file, line, label, statement);
/* We abort rather than exit so one can tell from a dump or debug session
who called us.
*/
abort();
}
void
test_fault(xmlrpc_env * const envP,
int const expectedCode,
const char * const fileName,
unsigned int const lineNumber) {
++total_tests;
if (!envP->fault_occurred)
test_failure(fileName, lineNumber, "no fault occurred", "");
else if (envP->fault_code != expectedCode)
test_failure(fileName, lineNumber, "wrong fault occurred",
envP->fault_string);
else
printf(".");
xmlrpc_env_clean(envP);
xmlrpc_env_init(envP);
}
void
test_null_string(const char * const string,
const char * const fileName,
unsigned int const lineNumber) {
++total_tests;
if (string != NULL)
test_failure(fileName, lineNumber, "string not null", string);
else
printf(".");
}
struct in_addr
test_ipAddrFromDecimal(unsigned int const byte0,
unsigned int const byte1,
unsigned int const byte2,
unsigned int const byte3) {
struct in_addr retval;
retval.s_addr =
htonl((byte0 << 24) + (byte1 << 16) + (byte2 << 8) + (byte3 << 0));
return retval;
}
|