mirror of
https://github.com/berkeleydb/libdb.git
synced 2024-11-17 09:36:24 +00:00
161 lines
5.4 KiB
C
161 lines
5.4 KiB
C
|
/*
|
||
|
* See the file LICENSE for redistribution information.
|
||
|
*
|
||
|
* Copyright (c) 2010, 2011 Oracle and/or its affiliates. All rights reserved.
|
||
|
*
|
||
|
* $Id$
|
||
|
*/
|
||
|
#ifndef CU_TEST_H
|
||
|
#define CU_TEST_H
|
||
|
|
||
|
#include <setjmp.h>
|
||
|
#include <stdarg.h>
|
||
|
|
||
|
#define CUTEST_VERSION "CuTest 1.6"
|
||
|
|
||
|
/* CuString */
|
||
|
|
||
|
char* CuStrAlloc(int size);
|
||
|
char* CuStrCopy(const char* old);
|
||
|
|
||
|
#define CU_ALLOC(TYPE) ((TYPE*) malloc(sizeof(TYPE)))
|
||
|
|
||
|
#define HUGE_STRING_LEN 8192
|
||
|
#define STRING_MAX 256
|
||
|
#define STRING_INC 256
|
||
|
|
||
|
#define CU_FAIL_HEADER "INTERNAL TEST HARNESS FAILURE"
|
||
|
|
||
|
typedef struct
|
||
|
{
|
||
|
int length;
|
||
|
int size;
|
||
|
char* buffer;
|
||
|
} CuString;
|
||
|
|
||
|
void CuStringInit(CuString* str);
|
||
|
CuString* CuStringNew(void);
|
||
|
void CuStringRead(CuString* str, const char* path);
|
||
|
int CuStringAppend(CuString* str, const char* text, int dump);
|
||
|
int CuStringAppendChar(CuString* str, char ch, int dump);
|
||
|
int CuStringAppendFormat(CuString* str, int dump, const char* format, ...);
|
||
|
int CuStringInsert(CuString* str, const char* text, int pos, int dump);
|
||
|
int CuStringResize(CuString* str, int newSize);
|
||
|
void CuStringDelete(CuString* str);
|
||
|
|
||
|
/* CuTest */
|
||
|
|
||
|
typedef struct CuSuite CuSuite;
|
||
|
typedef struct CuTest CuTest;
|
||
|
|
||
|
typedef int (*TestFunction)(CuTest *);
|
||
|
typedef int (*TestSetupFunction)(CuTest *);
|
||
|
typedef int (*TestTeardownFunction)(CuTest *);
|
||
|
typedef int (*SuiteSetupFunction)(CuSuite *);
|
||
|
typedef int (*SuiteTeardownFunction)(CuSuite *);
|
||
|
|
||
|
struct CuTest
|
||
|
{
|
||
|
char* name;
|
||
|
TestFunction function;
|
||
|
int (*TestSetup)(CuTest *);
|
||
|
int (*TestTeardown)(CuTest *);
|
||
|
int failed;
|
||
|
int ran;
|
||
|
/*
|
||
|
* TODO: Change message from a const char * to a CuString, so that
|
||
|
* test cases can add content.
|
||
|
*/
|
||
|
const char* message;
|
||
|
CuSuite *suite;
|
||
|
jmp_buf *jumpBuf;
|
||
|
void *context; /* For private use by individual test. */
|
||
|
};
|
||
|
|
||
|
void CuTestInit(CuTest* t, const char* name, TestFunction function,
|
||
|
TestSetupFunction setup, TestTeardownFunction teardown);
|
||
|
CuTest* CuTestNew(const char* name, TestFunction function,
|
||
|
TestSetupFunction setup, TestTeardownFunction teardown);
|
||
|
void CuTestRun(CuTest* tc);
|
||
|
void CuTestDelete(CuTest *t);
|
||
|
|
||
|
int TestEnvConfigTestSetup(CuTest *);
|
||
|
int TestEnvConfigTestTeardown(CuTest *);
|
||
|
|
||
|
/* Internal versions of assert functions -- use the public versions */
|
||
|
void CuFail_Line(CuTest* tc, const char* file, int line, const char* message2, const char* message);
|
||
|
void CuAssert_Line(CuTest* tc, const char* file, int line, const char* message, int condition);
|
||
|
void CuAssertStrEquals_LineMsg(CuTest* tc,
|
||
|
const char* file, int line, const char* message,
|
||
|
const char* expected, const char* actual);
|
||
|
void CuAssertIntEquals_LineMsg(CuTest* tc,
|
||
|
const char* file, int line, const char* message,
|
||
|
int expected, int actual);
|
||
|
void CuAssertDblEquals_LineMsg(CuTest* tc,
|
||
|
const char* file, int line, const char* message,
|
||
|
double expected, double actual, double delta);
|
||
|
void CuAssertPtrEquals_LineMsg(CuTest* tc,
|
||
|
const char* file, int line, const char* message,
|
||
|
void* expected, void* actual);
|
||
|
|
||
|
/* public assert functions */
|
||
|
|
||
|
#define CuFail(tc, ms) CuFail_Line( (tc), __FILE__, __LINE__, NULL, (ms))
|
||
|
#define CuAssert(tc, ms, cond) CuAssert_Line((tc), __FILE__, __LINE__, (ms), (cond))
|
||
|
#define CuAssertTrue(tc, cond) CuAssert_Line((tc), __FILE__, __LINE__, "assert failed", (cond))
|
||
|
|
||
|
#define CuAssertStrEquals(tc,ex,ac) CuAssertStrEquals_LineMsg((tc),__FILE__,__LINE__,NULL,(ex),(ac))
|
||
|
#define CuAssertStrEquals_Msg(tc,ms,ex,ac) CuAssertStrEquals_LineMsg((tc),__FILE__,__LINE__,(ms),(ex),(ac))
|
||
|
#define CuAssertIntEquals(tc,ex,ac) CuAssertIntEquals_LineMsg((tc),__FILE__,__LINE__,NULL,(ex),(ac))
|
||
|
#define CuAssertIntEquals_Msg(tc,ms,ex,ac) CuAssertIntEquals_LineMsg((tc),__FILE__,__LINE__,(ms),(ex),(ac))
|
||
|
#define CuAssertDblEquals(tc,ex,ac,dl) CuAssertDblEquals_LineMsg((tc),__FILE__,__LINE__,NULL,(ex),(ac),(dl))
|
||
|
#define CuAssertDblEquals_Msg(tc,ms,ex,ac,dl) CuAssertDblEquals_LineMsg((tc),__FILE__,__LINE__,(ms),(ex),(ac),(dl))
|
||
|
#define CuAssertPtrEquals(tc,ex,ac) CuAssertPtrEquals_LineMsg((tc),__FILE__,__LINE__,NULL,(ex),(ac))
|
||
|
#define CuAssertPtrEquals_Msg(tc,ms,ex,ac) CuAssertPtrEquals_LineMsg((tc),__FILE__,__LINE__,(ms),(ex),(ac))
|
||
|
|
||
|
#define CuAssertPtrNotNull(tc,p) CuAssert_Line((tc),__FILE__,__LINE__,"null pointer unexpected",(p != NULL))
|
||
|
#define CuAssertPtrNotNullMsg(tc,msg,p) CuAssert_Line((tc),__FILE__,__LINE__,(msg),(p != NULL))
|
||
|
|
||
|
/* CuSuite */
|
||
|
|
||
|
#define MAX_TEST_CASES 1024
|
||
|
|
||
|
#define SUITE_ADD_TEST(SUITE,TEST,SETUP_FN, TEARDOWN_FN) \
|
||
|
CuSuiteAdd(SUITE, CuTestNew(#TEST, TEST, SETUP_FN, TEARDOWN_FN))
|
||
|
|
||
|
typedef struct {
|
||
|
char *name;
|
||
|
int (*fn)(CuString*);
|
||
|
} TestSuite;
|
||
|
|
||
|
struct CuSuite
|
||
|
{
|
||
|
const char *name;
|
||
|
int count;
|
||
|
CuTest* list[MAX_TEST_CASES];
|
||
|
int failCount;
|
||
|
|
||
|
int (*SuiteSetup)(CuSuite *);
|
||
|
int (*SuiteTeardown)(CuSuite *);
|
||
|
void *context; /* For private use by individual suite. */
|
||
|
};
|
||
|
|
||
|
|
||
|
void CuSuiteInit(CuSuite* testSuite, const char *name,
|
||
|
SuiteSetupFunction setup, SuiteTeardownFunction teardown);
|
||
|
CuSuite* CuSuiteNew(const char *name,
|
||
|
SuiteSetupFunction setup, SuiteTeardownFunction teardown);
|
||
|
void CuSuiteDelete(CuSuite *testSuite);
|
||
|
void CuSuiteAdd(CuSuite* testSuite, CuTest *testCase);
|
||
|
void CuSuiteAddSuite(CuSuite* testSuite, CuSuite* testSuite2);
|
||
|
void CuSuiteRun(CuSuite* testSuite);
|
||
|
void CuSuiteSummary(CuSuite* testSuite, CuString* summary);
|
||
|
void CuSuiteDetails(CuSuite* testSuite, CuString* details);
|
||
|
|
||
|
/* Berkeley DB extensions. */
|
||
|
int RunAllSuites();
|
||
|
int RunSuite(const char *suite);
|
||
|
int RunTest(const char *suite, const char *test);
|
||
|
|
||
|
#endif /* CU_TEST_H */
|