zenilib  0.5.3.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
SDL_test_assert.c
Go to the documentation of this file.
1 /*
2  Simple DirectMedia Layer
3  Copyright (C) 1997-2013 Sam Lantinga <slouken@libsdl.org>
4 
5  This software is provided 'as-is', without any express or implied
6  warranty. In no event will the authors be held liable for any damages
7  arising from the use of this software.
8 
9  Permission is granted to anyone to use this software for any purpose,
10  including commercial applications, and to alter it and redistribute it
11  freely, subject to the following restrictions:
12 
13  1. The origin of this software must not be misrepresented; you must not
14  claim that you wrote the original software. If you use this software
15  in a product, an acknowledgment in the product documentation would be
16  appreciated but is not required.
17  2. Altered source versions must be plainly marked as such, and must not be
18  misrepresented as being the original software.
19  3. This notice may not be removed or altered from any source distribution.
20 */
21 
22 /*
23 
24  Used by the test framework and test cases.
25 
26 */
27 
28 #include "SDL_config.h"
29 
30 #include "SDL_test.h"
31 
32 /* Assert check message format */
33 const char *SDLTest_AssertCheckFormat = "Assert '%s': %s";
34 
35 /* Assert summary message format */
36 const char *SDLTest_AssertSummaryFormat = "Assert Summary: Total=%d Passed=%d Failed=%d";
37 
38 /* ! \brief counts the failed asserts */
40 
41 /* ! \brief counts the passed asserts */
43 
44 /*
45  * Assert that logs and break execution flow on failures (i.e. for harness errors).
46  */
47 void SDLTest_Assert(int assertCondition, const char *assertDescription, ...)
48 {
49  va_list list;
50  char logMessage[SDLTEST_MAX_LOGMESSAGE_LENGTH];
51 
52  /* Print assert description into a buffer */
54  va_start(list, assertDescription);
55  SDL_vsnprintf(logMessage, SDLTEST_MAX_LOGMESSAGE_LENGTH - 1, assertDescription, list);
56  va_end(list);
57 
58  /* Log, then assert and break on failure */
59  SDL_assert((SDLTest_AssertCheck(assertCondition, logMessage)));
60 }
61 
62 /*
63  * Assert that logs but does not break execution flow on failures (i.e. for test cases).
64  */
65 int SDLTest_AssertCheck(int assertCondition, const char *assertDescription, ...)
66 {
67  va_list list;
68  char logMessage[SDLTEST_MAX_LOGMESSAGE_LENGTH];
69 
70  /* Print assert description into a buffer */
72  va_start(list, assertDescription);
73  SDL_vsnprintf(logMessage, SDLTEST_MAX_LOGMESSAGE_LENGTH - 1, assertDescription, list);
74  va_end(list);
75 
76  /* Log pass or fail message */
77  if (assertCondition == ASSERT_FAIL)
78  {
80  SDLTest_LogError(SDLTest_AssertCheckFormat, logMessage, "Failed");
81  }
82  else
83  {
85  SDLTest_Log(SDLTest_AssertCheckFormat, logMessage, "Passed");
86  }
87 
88  return assertCondition;
89 }
90 
91 /*
92  * Explicitly passing Assert that logs (i.e. for test cases).
93  */
94 void SDLTest_AssertPass(const char *assertDescription, ...)
95 {
96  va_list list;
97  char logMessage[SDLTEST_MAX_LOGMESSAGE_LENGTH];
98 
99  /* Print assert description into a buffer */
101  va_start(list, assertDescription);
102  SDL_vsnprintf(logMessage, SDLTEST_MAX_LOGMESSAGE_LENGTH - 1, assertDescription, list);
103  va_end(list);
104 
105  /* Log pass message */
107  SDLTest_Log(SDLTest_AssertCheckFormat, logMessage, "Pass");
108 }
109 
110 /*
111  * Resets the assert summary counters to zero.
112  */
114 {
117 }
118 
119 /*
120  * Logs summary of all assertions (total, pass, fail) since last reset
121  * as INFO (failed==0) or ERROR (failed > 0).
122  */
124 {
126  if (SDLTest_AssertsFailed == 0)
127  {
128  SDLTest_Log(SDLTest_AssertSummaryFormat, totalAsserts, SDLTest_AssertsPassed, SDLTest_AssertsFailed);
129  }
130  else
131  {
132  SDLTest_LogError(SDLTest_AssertSummaryFormat, totalAsserts, SDLTest_AssertsPassed, SDLTest_AssertsFailed);
133  }
134 }
135 
136 /*
137  * Converts the current assert state into a test result
138  */
140 {
141  if (SDLTest_AssertsFailed > 0) {
142  return TEST_RESULT_FAILED;
143  } else {
144  if (SDLTest_AssertsPassed > 0) {
145  return TEST_RESULT_PASSED;
146  } else {
147  return TEST_RESULT_NO_ASSERT;
148  }
149  }
150 }
#define SDLTEST_MAX_LOGMESSAGE_LENGTH
Definition: SDL_test.h:58
int SDLTest_AssertCheck(int assertCondition, const char *assertDescription,...)
Assert for test cases that logs but does not break execution flow on failures. Updates assertion coun...
uint32_t Uint32
An unsigned 32-bit integer type.
Definition: SDL_stdinc.h:145
static Uint32 SDLTest_AssertsPassed
#define TEST_RESULT_FAILED
static Uint32 SDLTest_AssertsFailed
#define ASSERT_FAIL
Fails the assert.
const char * SDLTest_AssertSummaryFormat
DECLSPEC void *SDLCALL SDL_memset(void *dst, int c, size_t len)
Definition: SDL_string.c:261
#define TEST_RESULT_NO_ASSERT
const char * SDLTest_AssertCheckFormat
void SDLTest_Log(const char *fmt,...)
Prints given message with a timestamp in the TEST category and INFO priority.
Definition: SDL_test_log.c:71
#define SDL_assert(condition)
Definition: SDL_assert.h:159
int SDLTest_AssertSummaryToTestResult()
Converts the current assert summary state to a test result.
#define TEST_RESULT_PASSED
void SDLTest_ResetAssertSummary()
Resets the assert summary counters to zero.
void SDLTest_Assert(int assertCondition, const char *assertDescription,...)
Assert that logs and break execution flow on failures.
void SDLTest_LogAssertSummary()
Logs summary of all assertions (total, pass, fail) since last reset as INFO or ERROR.
void SDLTest_AssertPass(const char *assertDescription,...)
Explicitely pass without checking an assertion condition. Updates assertion counter.
DECLSPEC int SDLCALL SDL_vsnprintf(char *text, size_t maxlen, const char *fmt, va_list ap)
Definition: SDL_string.c:1479
void SDLTest_LogError(const char *fmt,...)
Prints given message with a timestamp in the TEST category and the ERROR priority.
Definition: SDL_test_log.c:89