CuTest.h 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. /*
  2. * Copyright (c) 2003 Asim Jalis
  3. *
  4. * This software is provided 'as-is', without any express or implied
  5. * warranty. In no event will the authors be held liable for any
  6. * damages arising from the use of this software.
  7. *
  8. * Permission is granted to anyone to use this software for any
  9. * purpose, including commercial applications, and to alter it and
  10. * redistribute it freely, subject to the following restrictions:
  11. *
  12. * 1. The origin of this software must not be misrepresented; you
  13. * must not claim that you wrote the original software. If you use
  14. * this software in a product, an acknowledgment in the product
  15. * documentation would be appreciated but is not required.
  16. *
  17. * 2. Altered source versions must be plainly marked as such, and
  18. * must not be misrepresented as being the original software.
  19. *
  20. * 3. This notice may not be removed or altered from any source
  21. * distribution.
  22. *-------------------------------------------------------------------------*
  23. *
  24. * Originally obtained from "http://cutest.sourceforge.net/" version 1.4.
  25. *
  26. * Modified for serf as follows
  27. * 4) added CuSuiteSetSetupTeardownCallbacks to set a constructor and
  28. * destructor per test suite, run for each test.
  29. * 3) added CuAssertStrnEquals(), CuAssertStrnEquals_Msg() and
  30. * CuAssertStrnEquals_LineMsg()
  31. * 2) removed const from struct CuTest.name
  32. * 1) added CuStringFree(), CuTestFree(), CuSuiteFree(), and
  33. * CuSuiteFreeDeep()
  34. * 0) reformatted the whitespace (doh!)
  35. */
  36. #ifndef CU_TEST_H
  37. #define CU_TEST_H
  38. #include <stdlib.h>
  39. #include <stddef.h>
  40. #include <setjmp.h>
  41. #include <stdarg.h>
  42. #include <apr.h>
  43. #ifndef WIN32
  44. #include "test.h"
  45. #endif
  46. /* CuString */
  47. char* CuStrAlloc(int size);
  48. char* CuStrCopy(const char* old);
  49. #define CU_ALLOC(TYPE) ((TYPE*) malloc(sizeof(TYPE)))
  50. #define HUGE_STRING_LEN 8192
  51. #define STRING_MAX 256
  52. #define STRING_INC 256
  53. typedef struct
  54. {
  55. int length;
  56. int size;
  57. char* buffer;
  58. } CuString;
  59. void CuStringInit(CuString* str);
  60. CuString* CuStringNew(void);
  61. void CuStringFree(CuString *str);
  62. void CuStringRead(CuString* str, const char* path);
  63. void CuStringAppend(CuString* str, const char* text);
  64. void CuStringAppendChar(CuString* str, char ch);
  65. void CuStringAppendFormat(CuString* str, const char* format, ...);
  66. void CuStringInsert(CuString* str, const char* text, int pos);
  67. void CuStringResize(CuString* str, int newSize);
  68. /* CuTest */
  69. typedef struct CuTest CuTest;
  70. typedef void (*TestFunction)(CuTest *);
  71. typedef void *(*TestCallback)(void *baton);
  72. struct CuTest
  73. {
  74. char* name;
  75. TestFunction function;
  76. int failed;
  77. int ran;
  78. const char* message;
  79. jmp_buf *jumpBuf;
  80. TestCallback setup;
  81. TestCallback teardown;
  82. void *testBaton;
  83. };
  84. void CuTestInit(CuTest* t, const char* name, TestFunction function);
  85. CuTest* CuTestNew(const char* name, TestFunction function);
  86. void CuTestFree(CuTest* tc);
  87. void CuTestRun(CuTest* tc);
  88. /* Internal versions of assert functions -- use the public versions */
  89. void CuFail_Line(CuTest* tc, const char* file, int line, const char* message2, const char* message);
  90. void CuAssert_Line(CuTest* tc, const char* file, int line, const char* message, int condition);
  91. void CuAssertStrEquals_LineMsg(CuTest* tc,
  92. const char* file, int line, const char* message,
  93. const char* expected, const char* actual);
  94. void CuAssertStrnEquals_LineMsg(CuTest* tc,
  95. const char* file, int line, const char* message,
  96. const char* expected, size_t explen, const char* actual);
  97. void CuAssertIntEquals_LineMsg(CuTest* tc,
  98. const char* file, int line, const char* message,
  99. int expected, int actual);
  100. void CuAssertDblEquals_LineMsg(CuTest* tc,
  101. const char* file, int line, const char* message,
  102. double expected, double actual, double delta);
  103. void CuAssertPtrEquals_LineMsg(CuTest* tc,
  104. const char* file, int line, const char* message,
  105. void* expected, void* actual);
  106. /* public assert functions */
  107. #define CuFail(tc, ms) CuFail_Line( (tc), __FILE__, __LINE__, NULL, (ms))
  108. #define CuAssert(tc, ms, cond) CuAssert_Line((tc), __FILE__, __LINE__, (ms), (cond))
  109. #define CuAssertTrue(tc, cond) CuAssert_Line((tc), __FILE__, __LINE__, "assert failed", (cond))
  110. #define CuAssertStrEquals(tc,ex,ac) CuAssertStrEquals_LineMsg((tc),__FILE__,__LINE__,NULL,(ex),(ac))
  111. #define CuAssertStrEquals_Msg(tc,ms,ex,ac) CuAssertStrEquals_LineMsg((tc),__FILE__,__LINE__,(ms),(ex),(ac))
  112. #define CuAssertStrnEquals(tc,ex,exlen,ac) CuAssertStrnEquals_LineMsg((tc),__FILE__,__LINE__,NULL,(ex),(exlen),(ac))
  113. #define CuAssertStrnEquals_Msg(tc,ms,ex,exlen,ac) CuAssertStrnEquals_LineMsg((tc),__FILE__,__LINE__,(ms),(ex),(exlen),(ac))
  114. #define CuAssertIntEquals(tc,ex,ac) CuAssertIntEquals_LineMsg((tc),__FILE__,__LINE__,NULL,(ex),(ac))
  115. #define CuAssertIntEquals_Msg(tc,ms,ex,ac) CuAssertIntEquals_LineMsg((tc),__FILE__,__LINE__,(ms),(ex),(ac))
  116. #define CuAssertDblEquals(tc,ex,ac,dl) CuAssertDblEquals_LineMsg((tc),__FILE__,__LINE__,NULL,(ex),(ac),(dl))
  117. #define CuAssertDblEquals_Msg(tc,ms,ex,ac,dl) CuAssertDblEquals_LineMsg((tc),__FILE__,__LINE__,(ms),(ex),(ac),(dl))
  118. #define CuAssertPtrEquals(tc,ex,ac) CuAssertPtrEquals_LineMsg((tc),__FILE__,__LINE__,NULL,(ex),(ac))
  119. #define CuAssertPtrEquals_Msg(tc,ms,ex,ac) CuAssertPtrEquals_LineMsg((tc),__FILE__,__LINE__,(ms),(ex),(ac))
  120. #define CuAssertPtrNotNull(tc,p) CuAssert_Line((tc),__FILE__,__LINE__,"null pointer unexpected",(p != NULL))
  121. #define CuAssertPtrNotNullMsg(tc,msg,p) CuAssert_Line((tc),__FILE__,__LINE__,(msg),(p != NULL))
  122. /* CuSuite */
  123. #define MAX_TEST_CASES 1024
  124. #define SUITE_ADD_TEST(SUITE,TEST) CuSuiteAdd(SUITE, CuTestNew(#TEST, TEST))
  125. typedef struct
  126. {
  127. int count;
  128. CuTest* list[MAX_TEST_CASES];
  129. int failCount;
  130. TestCallback setup;
  131. TestCallback teardown;
  132. void *testBaton;
  133. } CuSuite;
  134. void CuSuiteInit(CuSuite* testSuite);
  135. CuSuite* CuSuiteNew(void);
  136. void CuSuiteFree(CuSuite *testSuite);
  137. void CuSuiteFreeDeep(CuSuite *testSuite);
  138. void CuSuiteAdd(CuSuite* testSuite, CuTest *testCase);
  139. void CuSuiteAddSuite(CuSuite* testSuite, CuSuite* testSuite2);
  140. void CuSuiteRun(CuSuite* testSuite);
  141. void CuSuiteSummary(CuSuite* testSuite, CuString* summary);
  142. void CuSuiteDetails(CuSuite* testSuite, CuString* details);
  143. void CuSuiteSetSetupTeardownCallbacks(CuSuite* testSuite, TestCallback setup,
  144. TestCallback teardown);
  145. #endif /* CU_TEST_H */