2011-05-23 13:14:09 +03:00
|
|
|
/*
|
|
|
|
Copyright (C) 2011 Markus Kauppila <markus.kauppila@gmail.com>
|
|
|
|
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
|
|
warranty. In no event will the authors be held liable for any damages
|
|
|
|
arising from the use of this software.
|
|
|
|
|
|
|
|
Permission is granted to anyone to use this software for any purpose,
|
|
|
|
including commercial applications, and to alter it and redistribute it
|
|
|
|
freely, subject to the following restrictions:
|
|
|
|
|
|
|
|
1. The origin of this software must not be misrepresented; you must not
|
|
|
|
claim that you wrote the original software. If you use this software
|
|
|
|
in a product, an acknowledgment in the product documentation would be
|
|
|
|
appreciated but is not required.
|
|
|
|
2. Altered source versions must be plainly marked as such, and must not be
|
|
|
|
misrepresented as being the original software.
|
|
|
|
3. This notice may not be removed or altered from any source distribution.
|
|
|
|
*/
|
|
|
|
|
2011-05-26 18:38:56 +03:00
|
|
|
#ifndef _SDL_TEST_H
|
|
|
|
#define _SDL_TEST_H
|
2011-05-23 13:14:09 +03:00
|
|
|
|
|
|
|
#include <SDL/SDL.h>
|
|
|
|
|
2011-06-26 23:04:37 +03:00
|
|
|
#include "logger.h"
|
|
|
|
|
2011-06-04 17:50:23 +03:00
|
|
|
extern int _testReturnValue;
|
|
|
|
extern int _testAssertsFailed;
|
|
|
|
extern int _testAssertsPassed;
|
|
|
|
|
2011-07-06 16:06:39 +03:00
|
|
|
extern AssertFp testAssert;
|
|
|
|
|
2011-05-30 11:53:59 +03:00
|
|
|
// \todo Should these be consts?
|
|
|
|
#define TEST_ENABLED 1
|
|
|
|
#define TEST_DISABLED 0
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Holds information about a test case
|
|
|
|
*/
|
2011-05-26 19:19:46 +03:00
|
|
|
typedef struct TestCaseReference {
|
2011-06-11 21:37:28 +03:00
|
|
|
/*!< "Func2Stress" */
|
|
|
|
char *name;
|
|
|
|
/*!< "This test beats the crap out of func2()" */
|
|
|
|
char *description;
|
|
|
|
/*!< Set to TEST_ENABLED or TEST_DISABLED */
|
|
|
|
int enabled;
|
|
|
|
/*!< Set to TEST_REQUIRES_OPENGL, TEST_REQUIRES_AUDIO, ... */
|
|
|
|
long requirements;
|
|
|
|
/*<! Timeout value in seconds. If exceeded runner will kill the test. 0 means infinite time */
|
|
|
|
long timeout;
|
2011-05-26 19:19:46 +03:00
|
|
|
} TestCaseReference;
|
|
|
|
|
2011-06-27 23:10:13 +03:00
|
|
|
/*!
|
2011-05-30 11:53:59 +03:00
|
|
|
* Initialized the test case. Must be called at
|
|
|
|
* the beginning of every test case, before doing
|
|
|
|
* anything else.
|
|
|
|
*/
|
2011-07-06 16:06:39 +03:00
|
|
|
void _TestCaseInit();
|
2011-05-30 11:53:59 +03:00
|
|
|
|
2011-06-27 23:10:13 +03:00
|
|
|
/*!
|
2011-05-30 11:53:59 +03:00
|
|
|
* Deinitializes and exits the test case
|
|
|
|
*
|
2011-05-30 12:55:40 +03:00
|
|
|
* \return 0 if test succeeded, otherwise 1
|
2011-05-30 11:53:59 +03:00
|
|
|
*/
|
2011-06-04 17:50:23 +03:00
|
|
|
int _TestCaseQuit();
|
2011-05-26 18:38:56 +03:00
|
|
|
|
2011-06-04 17:50:23 +03:00
|
|
|
/*!
|
2011-06-04 18:50:41 +03:00
|
|
|
* Assert function. Tests if the expected value equals the actual value, then
|
|
|
|
* the test assert succeeds, otherwise it fails and warns about it.
|
|
|
|
*
|
|
|
|
* \param expected Value user expects to have
|
|
|
|
* \param actual The actual value of tested variable
|
|
|
|
* \param message Message that will be printed if assert fails
|
2011-06-04 17:50:23 +03:00
|
|
|
*/
|
2011-06-01 18:03:09 -07:00
|
|
|
void AssertEquals(Uint32 expected, Uint32 actual, char *message, ...);
|
|
|
|
|
2011-06-04 17:50:23 +03:00
|
|
|
/*!
|
2011-06-04 18:50:41 +03:00
|
|
|
* Assert function. Tests if the given condition is true. True in
|
|
|
|
* this case means non-zero value. If the condition is true, the
|
|
|
|
* assert passes, otherwise it fails.
|
|
|
|
*
|
|
|
|
* \param condition Condition which will be evaluated
|
|
|
|
* \param message Message that will be printed if assert fails
|
2011-06-04 17:50:23 +03:00
|
|
|
*/
|
2011-06-01 18:03:09 -07:00
|
|
|
void AssertTrue(int condition, char *message, ...);
|
2011-05-23 13:14:09 +03:00
|
|
|
|
2011-07-01 17:11:20 +03:00
|
|
|
/*!
|
|
|
|
\todo add markup
|
|
|
|
*/
|
|
|
|
void AssertFail(char *message, ...);
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\todo add markup
|
|
|
|
*/
|
|
|
|
void AssertPass(char *message, ...);
|
|
|
|
|
2011-05-23 13:14:09 +03:00
|
|
|
#endif
|