52 lines
2.0 KiB
C
52 lines
2.0 KiB
C
// 28 april 2019
|
|
#include "../ui.h"
|
|
#include "../common/testhooks.h"
|
|
#include "lib/testing.h"
|
|
#include "lib/timer.h"
|
|
|
|
// TODO this should have the case reports indented
|
|
#define diff(t, clause, fmt, got, want) testingTErrorf(t, "%s:\ngot " fmt "\nwant " fmt, clause, got, want)
|
|
#define diff_2str(t, clause, clause2, fmt, got, want) testingTErrorf(t, "%s %s:\ngot " fmt "\nwant " fmt, clause, clause2, got, want)
|
|
#define diff2(t, clause, fmts, got1, got2, want1, want2) testingTErrorf(t, "%s:\ngot " fmts "\nwant " fmts, clause, got1, got2, want1, want2)
|
|
#define diffFatal(t, clause, fmt, got, want) testingTFatalf(t, "%s:\ngot " fmt "\nwant " fmt, clause, got, want)
|
|
#define diff2Fatal(t, clause, fmts, got1, got2, want1, want2) testingTFatalf(t, "%s:\ngot " fmts "\nwant " fmts, clause, got1, got2, want1, want2)
|
|
|
|
// main.c
|
|
extern void timeoutMain(void *data);
|
|
#define timeout_uiMain(t, d) { \
|
|
timerSysError err; \
|
|
int timedOut; \
|
|
err = timerRunWithTimeout(d, timeoutMain, NULL, &timedOut); \
|
|
if (err != 0) \
|
|
testingTErrorf(t, "error running uiMain() in timeout: " timerSysErrorFmt, timerSysErrorFmtArg(err)); \
|
|
if (timedOut) { \
|
|
char timeoutstr[timerDurationStringLen]; \
|
|
timerDurationString(d, timeoutstr); \
|
|
testingTErrorf(t, "uiMain() timed out (%s)", timeoutstr); \
|
|
} \
|
|
}
|
|
struct errorParams {
|
|
testingT *t;
|
|
// TODO this shouldn't have a colon in it but the diff() macros above necessitate it
|
|
const char *exprstr;
|
|
const char *msgWant;
|
|
bool caught;
|
|
};
|
|
extern struct errorParams errorParams;
|
|
extern void catchProgrammerError(const char *prefix, const char *msg, const char *suffix, bool internal);
|
|
#define testProgrammerError(tt, expr, mw) { \
|
|
testingTLogf(t, "*** %s", #expr); \
|
|
uiprivTestHookReportProgrammerError(catchProgrammerError); \
|
|
errorParams.t = tt; \
|
|
errorParams.exprstr = #expr ":"; \
|
|
errorParams.msgWant = mw; \
|
|
errorParams.caught = false; \
|
|
expr; \
|
|
if (!errorParams.caught) \
|
|
testingTErrorf(t, "%s did not throw a programmer error; should have", #expr); \
|
|
uiprivTestHookReportProgrammerError(NULL); \
|
|
}
|
|
|
|
// init.c
|
|
extern testingSet *beforeTests;
|