mirror of
https://github.com/ennorehling/cutest.git
synced 2024-12-22 07:52:21 +00:00
make all line endings unix-style
This commit is contained in:
parent
9649a847aa
commit
457823ff5e
50
AllTests.c
50
AllTests.c
@ -1,25 +1,25 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#include "CuTest.h"
|
#include "CuTest.h"
|
||||||
|
|
||||||
CuSuite* CuGetSuite();
|
CuSuite* CuGetSuite();
|
||||||
CuSuite* CuStringGetSuite();
|
CuSuite* CuStringGetSuite();
|
||||||
|
|
||||||
void RunAllTests(void)
|
void RunAllTests(void)
|
||||||
{
|
{
|
||||||
CuString *output = CuStringNew();
|
CuString *output = CuStringNew();
|
||||||
CuSuite* suite = CuSuiteNew();
|
CuSuite* suite = CuSuiteNew();
|
||||||
|
|
||||||
CuSuiteAddSuite(suite, CuGetSuite());
|
CuSuiteAddSuite(suite, CuGetSuite());
|
||||||
CuSuiteAddSuite(suite, CuStringGetSuite());
|
CuSuiteAddSuite(suite, CuStringGetSuite());
|
||||||
|
|
||||||
CuSuiteRun(suite);
|
CuSuiteRun(suite);
|
||||||
CuSuiteSummary(suite, output);
|
CuSuiteSummary(suite, output);
|
||||||
CuSuiteDetails(suite, output);
|
CuSuiteDetails(suite, output);
|
||||||
printf("%s\n", output->buffer);
|
printf("%s\n", output->buffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
int main(void)
|
int main(void)
|
||||||
{
|
{
|
||||||
RunAllTests();
|
RunAllTests();
|
||||||
}
|
}
|
||||||
|
618
CuTest.c
618
CuTest.c
@ -1,309 +1,309 @@
|
|||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <setjmp.h>
|
#include <setjmp.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
|
||||||
#include "CuTest.h"
|
#include "CuTest.h"
|
||||||
|
|
||||||
/*-------------------------------------------------------------------------*
|
/*-------------------------------------------------------------------------*
|
||||||
* CuStr
|
* CuStr
|
||||||
*-------------------------------------------------------------------------*/
|
*-------------------------------------------------------------------------*/
|
||||||
|
|
||||||
char* CuStrAlloc(int size)
|
char* CuStrAlloc(int size)
|
||||||
{
|
{
|
||||||
char* newStr = (char*) malloc( sizeof(char) * (size) );
|
char* newStr = (char*) malloc( sizeof(char) * (size) );
|
||||||
return newStr;
|
return newStr;
|
||||||
}
|
}
|
||||||
|
|
||||||
char* CuStrCopy(const char* old)
|
char* CuStrCopy(const char* old)
|
||||||
{
|
{
|
||||||
int len = (int)strlen(old);
|
int len = (int)strlen(old);
|
||||||
char* newStr = CuStrAlloc(len + 1);
|
char* newStr = CuStrAlloc(len + 1);
|
||||||
strcpy(newStr, old);
|
strcpy(newStr, old);
|
||||||
return newStr;
|
return newStr;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*-------------------------------------------------------------------------*
|
/*-------------------------------------------------------------------------*
|
||||||
* CuString
|
* CuString
|
||||||
*-------------------------------------------------------------------------*/
|
*-------------------------------------------------------------------------*/
|
||||||
|
|
||||||
void CuStringInit(CuString* str)
|
void CuStringInit(CuString* str)
|
||||||
{
|
{
|
||||||
str->length = 0;
|
str->length = 0;
|
||||||
str->size = STRING_MAX;
|
str->size = STRING_MAX;
|
||||||
str->buffer = (char*) malloc(sizeof(char) * str->size);
|
str->buffer = (char*) malloc(sizeof(char) * str->size);
|
||||||
str->buffer[0] = '\0';
|
str->buffer[0] = '\0';
|
||||||
}
|
}
|
||||||
|
|
||||||
CuString* CuStringNew(void)
|
CuString* CuStringNew(void)
|
||||||
{
|
{
|
||||||
CuString* str = (CuString*) malloc(sizeof(CuString));
|
CuString* str = (CuString*) malloc(sizeof(CuString));
|
||||||
str->length = 0;
|
str->length = 0;
|
||||||
str->size = STRING_MAX;
|
str->size = STRING_MAX;
|
||||||
str->buffer = (char*) malloc(sizeof(char) * str->size);
|
str->buffer = (char*) malloc(sizeof(char) * str->size);
|
||||||
str->buffer[0] = '\0';
|
str->buffer[0] = '\0';
|
||||||
return str;
|
return str;
|
||||||
}
|
}
|
||||||
|
|
||||||
void CuStringResize(CuString* str, int newSize)
|
void CuStringResize(CuString* str, int newSize)
|
||||||
{
|
{
|
||||||
str->buffer = (char*) realloc(str->buffer, sizeof(char) * newSize);
|
str->buffer = (char*) realloc(str->buffer, sizeof(char) * newSize);
|
||||||
str->size = newSize;
|
str->size = newSize;
|
||||||
}
|
}
|
||||||
|
|
||||||
void CuStringAppend(CuString* str, const char* text)
|
void CuStringAppend(CuString* str, const char* text)
|
||||||
{
|
{
|
||||||
int length;
|
int length;
|
||||||
|
|
||||||
if (text == NULL) {
|
if (text == NULL) {
|
||||||
text = "NULL";
|
text = "NULL";
|
||||||
}
|
}
|
||||||
|
|
||||||
length = (int)strlen(text);
|
length = (int)strlen(text);
|
||||||
if (str->length + length + 1 >= str->size)
|
if (str->length + length + 1 >= str->size)
|
||||||
CuStringResize(str, str->length + length + 1 + STRING_INC);
|
CuStringResize(str, str->length + length + 1 + STRING_INC);
|
||||||
str->length += length;
|
str->length += length;
|
||||||
strcat(str->buffer, text);
|
strcat(str->buffer, text);
|
||||||
}
|
}
|
||||||
|
|
||||||
void CuStringAppendChar(CuString* str, char ch)
|
void CuStringAppendChar(CuString* str, char ch)
|
||||||
{
|
{
|
||||||
char text[2];
|
char text[2];
|
||||||
text[0] = ch;
|
text[0] = ch;
|
||||||
text[1] = '\0';
|
text[1] = '\0';
|
||||||
CuStringAppend(str, text);
|
CuStringAppend(str, text);
|
||||||
}
|
}
|
||||||
|
|
||||||
void CuStringAppendFormat(CuString* str, const char* format, ...)
|
void CuStringAppendFormat(CuString* str, const char* format, ...)
|
||||||
{
|
{
|
||||||
va_list argp;
|
va_list argp;
|
||||||
char buf[HUGE_STRING_LEN];
|
char buf[HUGE_STRING_LEN];
|
||||||
va_start(argp, format);
|
va_start(argp, format);
|
||||||
vsprintf(buf, format, argp);
|
vsprintf(buf, format, argp);
|
||||||
va_end(argp);
|
va_end(argp);
|
||||||
CuStringAppend(str, buf);
|
CuStringAppend(str, buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
void CuStringInsert(CuString* str, const char* text, int pos)
|
void CuStringInsert(CuString* str, const char* text, int pos)
|
||||||
{
|
{
|
||||||
int length = (int)strlen(text);
|
int length = (int)strlen(text);
|
||||||
if (pos > str->length)
|
if (pos > str->length)
|
||||||
pos = str->length;
|
pos = str->length;
|
||||||
if (str->length + length + 1 >= str->size)
|
if (str->length + length + 1 >= str->size)
|
||||||
CuStringResize(str, str->length + length + 1 + STRING_INC);
|
CuStringResize(str, str->length + length + 1 + STRING_INC);
|
||||||
memmove(str->buffer + pos + length, str->buffer + pos, (str->length - pos) + 1);
|
memmove(str->buffer + pos + length, str->buffer + pos, (str->length - pos) + 1);
|
||||||
str->length += length;
|
str->length += length;
|
||||||
memcpy(str->buffer + pos, text, length);
|
memcpy(str->buffer + pos, text, length);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*-------------------------------------------------------------------------*
|
/*-------------------------------------------------------------------------*
|
||||||
* CuTest
|
* CuTest
|
||||||
*-------------------------------------------------------------------------*/
|
*-------------------------------------------------------------------------*/
|
||||||
|
|
||||||
void CuTestInit(CuTest* t, const char* name, TestFunction function)
|
void CuTestInit(CuTest* t, const char* name, TestFunction function)
|
||||||
{
|
{
|
||||||
t->name = CuStrCopy(name);
|
t->name = CuStrCopy(name);
|
||||||
t->failed = 0;
|
t->failed = 0;
|
||||||
t->ran = 0;
|
t->ran = 0;
|
||||||
t->message = NULL;
|
t->message = NULL;
|
||||||
t->function = function;
|
t->function = function;
|
||||||
t->jumpBuf = NULL;
|
t->jumpBuf = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
CuTest* CuTestNew(const char* name, TestFunction function)
|
CuTest* CuTestNew(const char* name, TestFunction function)
|
||||||
{
|
{
|
||||||
CuTest* tc = CU_ALLOC(CuTest);
|
CuTest* tc = CU_ALLOC(CuTest);
|
||||||
CuTestInit(tc, name, function);
|
CuTestInit(tc, name, function);
|
||||||
return tc;
|
return tc;
|
||||||
}
|
}
|
||||||
|
|
||||||
void CuTestRun(CuTest* tc)
|
void CuTestRun(CuTest* tc)
|
||||||
{
|
{
|
||||||
jmp_buf buf;
|
jmp_buf buf;
|
||||||
tc->jumpBuf = &buf;
|
tc->jumpBuf = &buf;
|
||||||
if (setjmp(buf) == 0)
|
if (setjmp(buf) == 0)
|
||||||
{
|
{
|
||||||
tc->ran = 1;
|
tc->ran = 1;
|
||||||
(tc->function)(tc);
|
(tc->function)(tc);
|
||||||
}
|
}
|
||||||
tc->jumpBuf = 0;
|
tc->jumpBuf = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void CuFailInternal(CuTest* tc, const char* file, int line, CuString* string)
|
static void CuFailInternal(CuTest* tc, const char* file, int line, CuString* string)
|
||||||
{
|
{
|
||||||
char buf[HUGE_STRING_LEN];
|
char buf[HUGE_STRING_LEN];
|
||||||
|
|
||||||
sprintf(buf, "%s:%d: ", file, line);
|
sprintf(buf, "%s:%d: ", file, line);
|
||||||
CuStringInsert(string, buf, 0);
|
CuStringInsert(string, buf, 0);
|
||||||
|
|
||||||
tc->failed = 1;
|
tc->failed = 1;
|
||||||
tc->message = string->buffer;
|
tc->message = string->buffer;
|
||||||
if (tc->jumpBuf != 0) longjmp(*(tc->jumpBuf), 0);
|
if (tc->jumpBuf != 0) longjmp(*(tc->jumpBuf), 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
void CuFail_Line(CuTest* tc, const char* file, int line, const char* message2, const char* message)
|
void CuFail_Line(CuTest* tc, const char* file, int line, const char* message2, const char* message)
|
||||||
{
|
{
|
||||||
CuString string;
|
CuString string;
|
||||||
|
|
||||||
CuStringInit(&string);
|
CuStringInit(&string);
|
||||||
if (message2 != NULL)
|
if (message2 != NULL)
|
||||||
{
|
{
|
||||||
CuStringAppend(&string, message2);
|
CuStringAppend(&string, message2);
|
||||||
CuStringAppend(&string, ": ");
|
CuStringAppend(&string, ": ");
|
||||||
}
|
}
|
||||||
CuStringAppend(&string, message);
|
CuStringAppend(&string, message);
|
||||||
CuFailInternal(tc, file, line, &string);
|
CuFailInternal(tc, file, line, &string);
|
||||||
}
|
}
|
||||||
|
|
||||||
void CuAssert_Line(CuTest* tc, const char* file, int line, const char* message, int condition)
|
void CuAssert_Line(CuTest* tc, const char* file, int line, const char* message, int condition)
|
||||||
{
|
{
|
||||||
if (condition) return;
|
if (condition) return;
|
||||||
CuFail_Line(tc, file, line, NULL, message);
|
CuFail_Line(tc, file, line, NULL, message);
|
||||||
}
|
}
|
||||||
|
|
||||||
void CuAssertStrEquals_LineMsg(CuTest* tc, const char* file, int line, const char* message,
|
void CuAssertStrEquals_LineMsg(CuTest* tc, const char* file, int line, const char* message,
|
||||||
const char* expected, const char* actual)
|
const char* expected, const char* actual)
|
||||||
{
|
{
|
||||||
CuString string;
|
CuString string;
|
||||||
if ((expected == NULL && actual == NULL) ||
|
if ((expected == NULL && actual == NULL) ||
|
||||||
(expected != NULL && actual != NULL &&
|
(expected != NULL && actual != NULL &&
|
||||||
strcmp(expected, actual) == 0))
|
strcmp(expected, actual) == 0))
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
CuStringInit(&string);
|
CuStringInit(&string);
|
||||||
if (message != NULL)
|
if (message != NULL)
|
||||||
{
|
{
|
||||||
CuStringAppend(&string, message);
|
CuStringAppend(&string, message);
|
||||||
CuStringAppend(&string, ": ");
|
CuStringAppend(&string, ": ");
|
||||||
}
|
}
|
||||||
CuStringAppend(&string, "expected <");
|
CuStringAppend(&string, "expected <");
|
||||||
CuStringAppend(&string, expected);
|
CuStringAppend(&string, expected);
|
||||||
CuStringAppend(&string, "> but was <");
|
CuStringAppend(&string, "> but was <");
|
||||||
CuStringAppend(&string, actual);
|
CuStringAppend(&string, actual);
|
||||||
CuStringAppend(&string, ">");
|
CuStringAppend(&string, ">");
|
||||||
CuFailInternal(tc, file, line, &string);
|
CuFailInternal(tc, file, line, &string);
|
||||||
}
|
}
|
||||||
|
|
||||||
void CuAssertIntEquals_LineMsg(CuTest* tc, const char* file, int line, const char* message,
|
void CuAssertIntEquals_LineMsg(CuTest* tc, const char* file, int line, const char* message,
|
||||||
int expected, int actual)
|
int expected, int actual)
|
||||||
{
|
{
|
||||||
char buf[STRING_MAX];
|
char buf[STRING_MAX];
|
||||||
if (expected == actual) return;
|
if (expected == actual) return;
|
||||||
sprintf(buf, "expected <%d> but was <%d>", expected, actual);
|
sprintf(buf, "expected <%d> but was <%d>", expected, actual);
|
||||||
CuFail_Line(tc, file, line, message, buf);
|
CuFail_Line(tc, file, line, message, buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
void CuAssertDblEquals_LineMsg(CuTest* tc, const char* file, int line, const char* message,
|
void CuAssertDblEquals_LineMsg(CuTest* tc, const char* file, int line, const char* message,
|
||||||
double expected, double actual, double delta)
|
double expected, double actual, double delta)
|
||||||
{
|
{
|
||||||
char buf[STRING_MAX];
|
char buf[STRING_MAX];
|
||||||
if (fabs(expected - actual) <= delta) return;
|
if (fabs(expected - actual) <= delta) return;
|
||||||
sprintf(buf, "expected <%f> but was <%f>", expected, actual);
|
sprintf(buf, "expected <%f> but was <%f>", expected, actual);
|
||||||
CuFail_Line(tc, file, line, message, buf);
|
CuFail_Line(tc, file, line, message, buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
void CuAssertPtrEquals_LineMsg(CuTest* tc, const char* file, int line, const char* message,
|
void CuAssertPtrEquals_LineMsg(CuTest* tc, const char* file, int line, const char* message,
|
||||||
void* expected, void* actual)
|
void* expected, void* actual)
|
||||||
{
|
{
|
||||||
char buf[STRING_MAX];
|
char buf[STRING_MAX];
|
||||||
if (expected == actual) return;
|
if (expected == actual) return;
|
||||||
sprintf(buf, "expected pointer <0x%p> but was <0x%p>", expected, actual);
|
sprintf(buf, "expected pointer <0x%p> but was <0x%p>", expected, actual);
|
||||||
CuFail_Line(tc, file, line, message, buf);
|
CuFail_Line(tc, file, line, message, buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*-------------------------------------------------------------------------*
|
/*-------------------------------------------------------------------------*
|
||||||
* CuSuite
|
* CuSuite
|
||||||
*-------------------------------------------------------------------------*/
|
*-------------------------------------------------------------------------*/
|
||||||
|
|
||||||
void CuSuiteInit(CuSuite* testSuite)
|
void CuSuiteInit(CuSuite* testSuite)
|
||||||
{
|
{
|
||||||
testSuite->count = 0;
|
testSuite->count = 0;
|
||||||
testSuite->failCount = 0;
|
testSuite->failCount = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
CuSuite* CuSuiteNew(void)
|
CuSuite* CuSuiteNew(void)
|
||||||
{
|
{
|
||||||
CuSuite* testSuite = CU_ALLOC(CuSuite);
|
CuSuite* testSuite = CU_ALLOC(CuSuite);
|
||||||
CuSuiteInit(testSuite);
|
CuSuiteInit(testSuite);
|
||||||
return testSuite;
|
return testSuite;
|
||||||
}
|
}
|
||||||
|
|
||||||
void CuSuiteAdd(CuSuite* testSuite, CuTest *testCase)
|
void CuSuiteAdd(CuSuite* testSuite, CuTest *testCase)
|
||||||
{
|
{
|
||||||
assert(testSuite->count < MAX_TEST_CASES);
|
assert(testSuite->count < MAX_TEST_CASES);
|
||||||
testSuite->list[testSuite->count] = testCase;
|
testSuite->list[testSuite->count] = testCase;
|
||||||
testSuite->count++;
|
testSuite->count++;
|
||||||
}
|
}
|
||||||
|
|
||||||
void CuSuiteAddSuite(CuSuite* testSuite, CuSuite* testSuite2)
|
void CuSuiteAddSuite(CuSuite* testSuite, CuSuite* testSuite2)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
for (i = 0 ; i < testSuite2->count ; ++i)
|
for (i = 0 ; i < testSuite2->count ; ++i)
|
||||||
{
|
{
|
||||||
CuTest* testCase = testSuite2->list[i];
|
CuTest* testCase = testSuite2->list[i];
|
||||||
CuSuiteAdd(testSuite, testCase);
|
CuSuiteAdd(testSuite, testCase);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void CuSuiteRun(CuSuite* testSuite)
|
void CuSuiteRun(CuSuite* testSuite)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
for (i = 0 ; i < testSuite->count ; ++i)
|
for (i = 0 ; i < testSuite->count ; ++i)
|
||||||
{
|
{
|
||||||
CuTest* testCase = testSuite->list[i];
|
CuTest* testCase = testSuite->list[i];
|
||||||
CuTestRun(testCase);
|
CuTestRun(testCase);
|
||||||
if (testCase->failed) { testSuite->failCount += 1; }
|
if (testCase->failed) { testSuite->failCount += 1; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void CuSuiteSummary(CuSuite* testSuite, CuString* summary)
|
void CuSuiteSummary(CuSuite* testSuite, CuString* summary)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
for (i = 0 ; i < testSuite->count ; ++i)
|
for (i = 0 ; i < testSuite->count ; ++i)
|
||||||
{
|
{
|
||||||
CuTest* testCase = testSuite->list[i];
|
CuTest* testCase = testSuite->list[i];
|
||||||
CuStringAppend(summary, testCase->failed ? "F" : ".");
|
CuStringAppend(summary, testCase->failed ? "F" : ".");
|
||||||
}
|
}
|
||||||
CuStringAppend(summary, "\n\n");
|
CuStringAppend(summary, "\n\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
void CuSuiteDetails(CuSuite* testSuite, CuString* details)
|
void CuSuiteDetails(CuSuite* testSuite, CuString* details)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
int failCount = 0;
|
int failCount = 0;
|
||||||
|
|
||||||
if (testSuite->failCount == 0)
|
if (testSuite->failCount == 0)
|
||||||
{
|
{
|
||||||
int passCount = testSuite->count - testSuite->failCount;
|
int passCount = testSuite->count - testSuite->failCount;
|
||||||
const char* testWord = passCount == 1 ? "test" : "tests";
|
const char* testWord = passCount == 1 ? "test" : "tests";
|
||||||
CuStringAppendFormat(details, "OK (%d %s)\n", passCount, testWord);
|
CuStringAppendFormat(details, "OK (%d %s)\n", passCount, testWord);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (testSuite->failCount == 1)
|
if (testSuite->failCount == 1)
|
||||||
CuStringAppend(details, "There was 1 failure:\n");
|
CuStringAppend(details, "There was 1 failure:\n");
|
||||||
else
|
else
|
||||||
CuStringAppendFormat(details, "There were %d failures:\n", testSuite->failCount);
|
CuStringAppendFormat(details, "There were %d failures:\n", testSuite->failCount);
|
||||||
|
|
||||||
for (i = 0 ; i < testSuite->count ; ++i)
|
for (i = 0 ; i < testSuite->count ; ++i)
|
||||||
{
|
{
|
||||||
CuTest* testCase = testSuite->list[i];
|
CuTest* testCase = testSuite->list[i];
|
||||||
if (testCase->failed)
|
if (testCase->failed)
|
||||||
{
|
{
|
||||||
failCount++;
|
failCount++;
|
||||||
CuStringAppendFormat(details, "%d) %s: %s\n",
|
CuStringAppendFormat(details, "%d) %s: %s\n",
|
||||||
failCount, testCase->name, testCase->message);
|
failCount, testCase->name, testCase->message);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
CuStringAppend(details, "\n!!!FAILURES!!!\n");
|
CuStringAppend(details, "\n!!!FAILURES!!!\n");
|
||||||
|
|
||||||
CuStringAppendFormat(details, "Runs: %d ", testSuite->count);
|
CuStringAppendFormat(details, "Runs: %d ", testSuite->count);
|
||||||
CuStringAppendFormat(details, "Passes: %d ", testSuite->count - testSuite->failCount);
|
CuStringAppendFormat(details, "Passes: %d ", testSuite->count - testSuite->failCount);
|
||||||
CuStringAppendFormat(details, "Fails: %d\n", testSuite->failCount);
|
CuStringAppendFormat(details, "Fails: %d\n", testSuite->failCount);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
222
CuTest.h
222
CuTest.h
@ -1,111 +1,111 @@
|
|||||||
#ifndef CU_TEST_H
|
#ifndef CU_TEST_H
|
||||||
#define CU_TEST_H
|
#define CU_TEST_H
|
||||||
|
|
||||||
#include <setjmp.h>
|
#include <setjmp.h>
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
|
|
||||||
/* CuString */
|
/* CuString */
|
||||||
|
|
||||||
char* CuStrAlloc(int size);
|
char* CuStrAlloc(int size);
|
||||||
char* CuStrCopy(const char* old);
|
char* CuStrCopy(const char* old);
|
||||||
|
|
||||||
#define CU_ALLOC(TYPE) ((TYPE*) malloc(sizeof(TYPE)))
|
#define CU_ALLOC(TYPE) ((TYPE*) malloc(sizeof(TYPE)))
|
||||||
|
|
||||||
#define HUGE_STRING_LEN 8192
|
#define HUGE_STRING_LEN 8192
|
||||||
#define STRING_MAX 256
|
#define STRING_MAX 256
|
||||||
#define STRING_INC 256
|
#define STRING_INC 256
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
int length;
|
int length;
|
||||||
int size;
|
int size;
|
||||||
char* buffer;
|
char* buffer;
|
||||||
} CuString;
|
} CuString;
|
||||||
|
|
||||||
void CuStringInit(CuString* str);
|
void CuStringInit(CuString* str);
|
||||||
CuString* CuStringNew(void);
|
CuString* CuStringNew(void);
|
||||||
void CuStringRead(CuString* str, const char* path);
|
void CuStringRead(CuString* str, const char* path);
|
||||||
void CuStringAppend(CuString* str, const char* text);
|
void CuStringAppend(CuString* str, const char* text);
|
||||||
void CuStringAppendChar(CuString* str, char ch);
|
void CuStringAppendChar(CuString* str, char ch);
|
||||||
void CuStringAppendFormat(CuString* str, const char* format, ...);
|
void CuStringAppendFormat(CuString* str, const char* format, ...);
|
||||||
void CuStringInsert(CuString* str, const char* text, int pos);
|
void CuStringInsert(CuString* str, const char* text, int pos);
|
||||||
void CuStringResize(CuString* str, int newSize);
|
void CuStringResize(CuString* str, int newSize);
|
||||||
|
|
||||||
/* CuTest */
|
/* CuTest */
|
||||||
|
|
||||||
typedef struct CuTest CuTest;
|
typedef struct CuTest CuTest;
|
||||||
|
|
||||||
typedef void (*TestFunction)(CuTest *);
|
typedef void (*TestFunction)(CuTest *);
|
||||||
|
|
||||||
struct CuTest
|
struct CuTest
|
||||||
{
|
{
|
||||||
const char* name;
|
const char* name;
|
||||||
TestFunction function;
|
TestFunction function;
|
||||||
int failed;
|
int failed;
|
||||||
int ran;
|
int ran;
|
||||||
const char* message;
|
const char* message;
|
||||||
jmp_buf *jumpBuf;
|
jmp_buf *jumpBuf;
|
||||||
};
|
};
|
||||||
|
|
||||||
void CuTestInit(CuTest* t, const char* name, TestFunction function);
|
void CuTestInit(CuTest* t, const char* name, TestFunction function);
|
||||||
CuTest* CuTestNew(const char* name, TestFunction function);
|
CuTest* CuTestNew(const char* name, TestFunction function);
|
||||||
void CuTestRun(CuTest* tc);
|
void CuTestRun(CuTest* tc);
|
||||||
|
|
||||||
/* Internal versions of assert functions -- use the public versions */
|
/* 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 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 CuAssert_Line(CuTest* tc, const char* file, int line, const char* message, int condition);
|
||||||
void CuAssertStrEquals_LineMsg(CuTest* tc,
|
void CuAssertStrEquals_LineMsg(CuTest* tc,
|
||||||
const char* file, int line, const char* message,
|
const char* file, int line, const char* message,
|
||||||
const char* expected, const char* actual);
|
const char* expected, const char* actual);
|
||||||
void CuAssertIntEquals_LineMsg(CuTest* tc,
|
void CuAssertIntEquals_LineMsg(CuTest* tc,
|
||||||
const char* file, int line, const char* message,
|
const char* file, int line, const char* message,
|
||||||
int expected, int actual);
|
int expected, int actual);
|
||||||
void CuAssertDblEquals_LineMsg(CuTest* tc,
|
void CuAssertDblEquals_LineMsg(CuTest* tc,
|
||||||
const char* file, int line, const char* message,
|
const char* file, int line, const char* message,
|
||||||
double expected, double actual, double delta);
|
double expected, double actual, double delta);
|
||||||
void CuAssertPtrEquals_LineMsg(CuTest* tc,
|
void CuAssertPtrEquals_LineMsg(CuTest* tc,
|
||||||
const char* file, int line, const char* message,
|
const char* file, int line, const char* message,
|
||||||
void* expected, void* actual);
|
void* expected, void* actual);
|
||||||
|
|
||||||
/* public assert functions */
|
/* public assert functions */
|
||||||
|
|
||||||
#define CuFail(tc, ms) CuFail_Line( (tc), __FILE__, __LINE__, NULL, (ms))
|
#define CuFail(tc, ms) CuFail_Line( (tc), __FILE__, __LINE__, NULL, (ms))
|
||||||
#define CuAssert(tc, ms, cond) CuAssert_Line((tc), __FILE__, __LINE__, (ms), (cond))
|
#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 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(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 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(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 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(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 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(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 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 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))
|
#define CuAssertPtrNotNullMsg(tc,msg,p) CuAssert_Line((tc),__FILE__,__LINE__,(msg),(p != NULL))
|
||||||
|
|
||||||
/* CuSuite */
|
/* CuSuite */
|
||||||
|
|
||||||
#define MAX_TEST_CASES 1024
|
#define MAX_TEST_CASES 1024
|
||||||
|
|
||||||
#define SUITE_ADD_TEST(SUITE,TEST) CuSuiteAdd(SUITE, CuTestNew(#TEST, TEST))
|
#define SUITE_ADD_TEST(SUITE,TEST) CuSuiteAdd(SUITE, CuTestNew(#TEST, TEST))
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
int count;
|
int count;
|
||||||
CuTest* list[MAX_TEST_CASES];
|
CuTest* list[MAX_TEST_CASES];
|
||||||
int failCount;
|
int failCount;
|
||||||
|
|
||||||
} CuSuite;
|
} CuSuite;
|
||||||
|
|
||||||
|
|
||||||
void CuSuiteInit(CuSuite* testSuite);
|
void CuSuiteInit(CuSuite* testSuite);
|
||||||
CuSuite* CuSuiteNew(void);
|
CuSuite* CuSuiteNew(void);
|
||||||
void CuSuiteAdd(CuSuite* testSuite, CuTest *testCase);
|
void CuSuiteAdd(CuSuite* testSuite, CuTest *testCase);
|
||||||
void CuSuiteAddSuite(CuSuite* testSuite, CuSuite* testSuite2);
|
void CuSuiteAddSuite(CuSuite* testSuite, CuSuite* testSuite2);
|
||||||
void CuSuiteRun(CuSuite* testSuite);
|
void CuSuiteRun(CuSuite* testSuite);
|
||||||
void CuSuiteSummary(CuSuite* testSuite, CuString* summary);
|
void CuSuiteSummary(CuSuite* testSuite, CuString* summary);
|
||||||
void CuSuiteDetails(CuSuite* testSuite, CuString* details);
|
void CuSuiteDetails(CuSuite* testSuite, CuString* details);
|
||||||
|
|
||||||
#endif /* CU_TEST_H */
|
#endif /* CU_TEST_H */
|
||||||
|
1418
CuTestTest.c
1418
CuTestTest.c
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user