Implemented the rest of the uiInit() tests. A bit repetitive, but it works.
This commit is contained in:
parent
9fcc4d500c
commit
a2f0d5c2cd
|
@ -78,8 +78,49 @@ Test(InitIncorrectlyAfterInitializedSuccessfully)
|
||||||
endCheckProgrammerError(ctx);
|
endCheckProgrammerError(ctx);
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO TestNoInit(InitCorrectlyAfterFailureToInitailize)
|
TestNoInit(InitCorrectlyAfterFailureToInitialize)
|
||||||
// TODO TestNoInit(InitIncorrectlyAfterFailureToInitialize)
|
{
|
||||||
|
uiInitError err;
|
||||||
|
void *ctx;
|
||||||
|
|
||||||
|
ctx = beginCheckProgrammerError(NULL);
|
||||||
|
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");
|
||||||
|
memset(&err, 0, sizeof (uiInitError));
|
||||||
|
err.Size = sizeof (uiInitError);
|
||||||
|
if (uiInit(NULL, &err))
|
||||||
|
TestFatalf("uiInit() after a previous successful call succeeded; expected failure");
|
||||||
|
endCheckProgrammerError(ctx);
|
||||||
|
}
|
||||||
|
|
||||||
|
TestNoInit(InitIncorrectlyAfterFailureToInitialize)
|
||||||
|
{
|
||||||
|
uiInitError err;
|
||||||
|
void *ctx;
|
||||||
|
|
||||||
|
ctx = beginCheckProgrammerError(NULL);
|
||||||
|
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");
|
||||||
|
if (uiInit(NULL, NULL))
|
||||||
|
TestFatalf("bad uiInit() after a previous successful call succeeded; expected failure");
|
||||||
|
endCheckProgrammerError(ctx);
|
||||||
|
}
|
||||||
|
|
||||||
TestNoInit(InitCorrectlyAfterIncorrectInitialization)
|
TestNoInit(InitCorrectlyAfterIncorrectInitialization)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue