2006-12-21 03:57:49 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
2008-05-23 20:56:24 +00:00
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
#include "xmlrpc_config.h"
|
|
|
|
#include "xmlrpc-c/util.h"
|
|
|
|
#include "xmlrpc-c/util_int.h"
|
2006-12-21 03:57:49 +00:00
|
|
|
|
|
|
|
extern int total_tests;
|
|
|
|
extern int total_failures;
|
|
|
|
|
|
|
|
|
|
|
|
/* This is a good place to set a breakpoint. */
|
2008-05-23 20:56:24 +00:00
|
|
|
static __inline__ void
|
2006-12-21 03:57:49 +00:00
|
|
|
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);
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define TEST(statement) \
|
|
|
|
do { \
|
|
|
|
++total_tests; \
|
|
|
|
if ((statement)) { \
|
|
|
|
printf("."); \
|
|
|
|
} else { \
|
|
|
|
test_failure(__FILE__, __LINE__, "expected", #statement); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define TEST_NO_FAULT(env) \
|
|
|
|
do { \
|
|
|
|
++total_tests; \
|
|
|
|
if (!(env)->fault_occurred) { \
|
|
|
|
printf("."); \
|
|
|
|
} else { \
|
|
|
|
test_failure(__FILE__, __LINE__, "fault occurred", \
|
|
|
|
(env)->fault_string); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
2008-05-23 20:56:24 +00:00
|
|
|
#define TEST_EPSILON 1E-5
|
|
|
|
|
|
|
|
#define FORCENONZERO(x) (MAX(fabs(x), TEST_EPSILON))
|
|
|
|
|
|
|
|
#define FLOATEQUAL(comparand, comparator) \
|
|
|
|
((fabs((comparand)-(comparator)))/FORCENONZERO(comparand) < TEST_EPSILON)
|
|
|
|
#define TESTFLOATEQUAL(comparand, comparator) \
|
|
|
|
TEST(FLOATEQUAL(comparand, comparator))
|
|
|
|
|
|
|
|
static __inline__ void
|
|
|
|
test_fault(xmlrpc_env * const envP,
|
|
|
|
int const expectedCode,
|
|
|
|
const char * const fileName,
|
|
|
|
unsigned int const lineNumber) {
|
2006-12-21 03:57:49 +00:00
|
|
|
|
2008-05-23 20:56:24 +00:00
|
|
|
++total_tests;
|
2006-12-21 03:57:49 +00:00
|
|
|
|
2008-05-23 20:56:24 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#define TEST_FAULT(envP, code) \
|
|
|
|
do { test_fault(envP, code, __FILE__, __LINE__); } while(0)
|
|
|
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
static __inline__ 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(".");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#define TEST_NULL_STRING(string) \
|
|
|
|
do { test_null_string(string, __FILE__, __LINE__); } while(0)
|
|
|
|
|
|
|
|
;
|
2006-12-21 03:57:49 +00:00
|
|
|
|
|
|
|
#define TEST_ERROR(reason) \
|
|
|
|
do { \
|
|
|
|
printf("Unable to test at %s/%u. %s", __FILE__, __LINE__, reason); \
|
|
|
|
abort(); \
|
|
|
|
} while (0)
|
2008-05-23 20:56:24 +00:00
|
|
|
|
|
|
|
;
|