From a2f0d5c2cdb4aeb83fdada289f830f7bbc0a4ad7 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Sat, 9 May 2020 02:38:07 -0400 Subject: [PATCH] Implemented the rest of the uiInit() tests. A bit repetitive, but it works. --- test/initmain.c | 45 +++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 43 insertions(+), 2 deletions(-) diff --git a/test/initmain.c b/test/initmain.c index 1a79a292..7b0b7d7b 100644 --- a/test/initmain.c +++ b/test/initmain.c @@ -78,8 +78,49 @@ Test(InitIncorrectlyAfterInitializedSuccessfully) endCheckProgrammerError(ctx); } -// TODO TestNoInit(InitCorrectlyAfterFailureToInitailize) -// TODO TestNoInit(InitIncorrectlyAfterFailureToInitialize) +TestNoInit(InitCorrectlyAfterFailureToInitialize) +{ + 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) {