Cleaned up the init tests.

This commit is contained in:
Pietro Gagliardi 2020-05-09 16:35:01 -04:00
parent a2f0d5c2cd
commit c39bd66d38
1 changed files with 20 additions and 35 deletions

View File

@ -5,7 +5,7 @@
// TODO test the number of calls to queued functions made // TODO test the number of calls to queued functions made
TestNoInit(InitFailure) static void testImplInitFailure(void)
{ {
uiInitError err; uiInitError err;
void *ctx; void *ctx;
@ -22,7 +22,12 @@ TestNoInit(InitFailure)
endCheckProgrammerError(ctx); endCheckProgrammerError(ctx);
} }
TestNoInit(InitWithNonNullOptionsIsProgrammerError) TestNoInit(InitFailure)
{
testImplInitFailure();
}
static void testImplNonNullOptions(void)
{ {
void *ctx; void *ctx;
@ -32,6 +37,11 @@ TestNoInit(InitWithNonNullOptionsIsProgrammerError)
endCheckProgrammerError(ctx); endCheckProgrammerError(ctx);
} }
TestNoInit(InitWithNonNullOptionsIsProgrammerError)
{
testImplNonNullOptions();
}
TestNoInit(InitWithNullErrorIsProgrammerError) TestNoInit(InitWithNullErrorIsProgrammerError)
{ {
void *ctx; void *ctx;
@ -83,42 +93,23 @@ TestNoInit(InitCorrectlyAfterFailureToInitialize)
uiInitError err; uiInitError err;
void *ctx; void *ctx;
ctx = beginCheckProgrammerError(NULL); testImplInitFailure();
uiprivTestHookSetInitShouldFailArtificially(true);
memset(&err, 0, sizeof (uiInitError));
err.Size = sizeof (uiInitError);
if (uiInit(NULL, &err))
TestErrorf("uiInit() succeeded; expected failure");
else if (strcmp(err.Message, "general failure") != 0)
TestErrorf("uiInit() failed with wrong message:" diff("%s"),
err.Message, "general failure");
endCheckProgrammerError(ctx);
ctx = beginCheckProgrammerError("uiInit(): attempt to call more than once"); ctx = beginCheckProgrammerError("uiInit(): attempt to call more than once");
memset(&err, 0, sizeof (uiInitError)); memset(&err, 0, sizeof (uiInitError));
err.Size = sizeof (uiInitError); err.Size = sizeof (uiInitError);
if (uiInit(NULL, &err)) if (uiInit(NULL, &err))
TestFatalf("uiInit() after a previous successful call succeeded; expected failure"); TestFatalf("uiInit() after a previous failed call succeeded; expected failure");
endCheckProgrammerError(ctx); endCheckProgrammerError(ctx);
} }
TestNoInit(InitIncorrectlyAfterFailureToInitialize) TestNoInit(InitIncorrectlyAfterFailureToInitialize)
{ {
uiInitError err;
void *ctx; void *ctx;
ctx = beginCheckProgrammerError(NULL); testImplInitFailure();
uiprivTestHookSetInitShouldFailArtificially(true);
memset(&err, 0, sizeof (uiInitError));
err.Size = sizeof (uiInitError);
if (uiInit(NULL, &err))
TestErrorf("uiInit() succeeded; expected failure");
else if (strcmp(err.Message, "general failure") != 0)
TestErrorf("uiInit() failed with wrong message:" diff("%s"),
err.Message, "general failure");
endCheckProgrammerError(ctx);
ctx = beginCheckProgrammerError("uiInit(): attempt to call more than once"); ctx = beginCheckProgrammerError("uiInit(): attempt to call more than once");
if (uiInit(NULL, NULL)) if (uiInit(NULL, NULL))
TestFatalf("bad uiInit() after a previous successful call succeeded; expected failure"); TestFatalf("bad uiInit() after a previous failed call succeeded; expected failure");
endCheckProgrammerError(ctx); endCheckProgrammerError(ctx);
} }
@ -127,15 +118,12 @@ TestNoInit(InitCorrectlyAfterIncorrectInitialization)
uiInitError err; uiInitError err;
void *ctx; void *ctx;
ctx = beginCheckProgrammerError("uiInit(): invalid uiInitOptions passed"); testImplNonNullOptions();
if (uiInit(ctx, NULL))
TestErrorf("uiInit() with non-NULL options succeeded; expected failure");
endCheckProgrammerError(ctx);
ctx = beginCheckProgrammerError("uiInit(): attempt to call more than once"); ctx = beginCheckProgrammerError("uiInit(): attempt to call more than once");
memset(&err, 0, sizeof (uiInitError)); memset(&err, 0, sizeof (uiInitError));
err.Size = sizeof (uiInitError); err.Size = sizeof (uiInitError);
if (uiInit(NULL, &err)) if (uiInit(NULL, &err))
TestFatalf("uiInit() after a previous successful call succeeded; expected failure"); TestFatalf("uiInit() after a previous erroneous call succeeded; expected failure");
endCheckProgrammerError(ctx); endCheckProgrammerError(ctx);
} }
@ -143,13 +131,10 @@ TestNoInit(InitIncorrectlyAfterIncorrectInitialization)
{ {
void *ctx; void *ctx;
ctx = beginCheckProgrammerError("uiInit(): invalid uiInitOptions passed"); testImplNonNullOptions();
if (uiInit(ctx, NULL))
TestErrorf("uiInit() with non-NULL options succeeded; expected failure");
endCheckProgrammerError(ctx);
ctx = beginCheckProgrammerError("uiInit(): attempt to call more than once"); ctx = beginCheckProgrammerError("uiInit(): attempt to call more than once");
if (uiInit(NULL, NULL)) if (uiInit(NULL, NULL))
TestFatalf("bad uiInit() after a previous successful call succeeded; expected failure"); TestFatalf("bad uiInit() after a previous erroneous call succeeded; expected failure");
endCheckProgrammerError(ctx); endCheckProgrammerError(ctx);
} }