mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-05-22 15:06:34 +00:00
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8545 d0543943-73ff-0310-b7d9-9358b9ac24b2
110 lines
2.5 KiB
C
110 lines
2.5 KiB
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <math.h>
|
|
|
|
#include "xmlrpc_config.h"
|
|
#include "xmlrpc-c/util.h"
|
|
#include "xmlrpc-c/util_int.h"
|
|
|
|
extern int total_tests;
|
|
extern int total_failures;
|
|
|
|
|
|
/* This is a good place to set a breakpoint. */
|
|
static __inline__ 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);
|
|
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)
|
|
|
|
#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) {
|
|
|
|
++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);
|
|
}
|
|
|
|
|
|
#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)
|
|
|
|
;
|
|
|
|
#define TEST_ERROR(reason) \
|
|
do { \
|
|
printf("Unable to test at %s/%u. %s", __FILE__, __LINE__, reason); \
|
|
abort(); \
|
|
} while (0)
|
|
|
|
;
|