Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libSDL
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PocketInsanity
libSDL
Commits
1b21c654
Commit
1b21c654
authored
Jun 04, 2011
by
Markus Kauppila
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactoring the TestCaseInit and TestCaseQuit functions
to be caller from the Runner.
parent
450610b7
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
110 additions
and
51 deletions
+110
-51
Makefile.am
test/test-automation/Makefile.am
+1
-1
SDL_test.c
test/test-automation/SDL_test.c
+13
-9
SDL_test.h
test/test-automation/SDL_test.h
+14
-6
runner.c
test/test-automation/runner.c
+73
-11
testrect.c
test/test-automation/testrect/testrect.c
+2
-6
Makefile.am
test/test-automation/tests/Makefile.am
+1
-1
test.c
test/test-automation/tests/test.c
+6
-17
No files found.
test/test-automation/Makefile.am
View file @
1b21c654
test/test-automation/SDL_test.c
View file @
1b21c654
...
...
@@ -27,13 +27,16 @@
#include "SDL_test.h"
/*! \brief return value of test case. Non-zero value means that the test failed */
static
int
_testReturnValue
;
int
_testReturnValue
;
static
int
_testAssertsFailed
;
static
int
_testAssertsPassed
;
/*! \brief counts the failed asserts */
int
_testAssertsFailed
;
/*! \brief counts the passed asserts */
int
_testAssertsPassed
;
void
TestCaseInit
()
_
TestCaseInit
()
{
_testReturnValue
=
0
;
_testAssertsFailed
=
0
;
...
...
@@ -41,9 +44,10 @@ TestCaseInit()
}
int
TestCaseQuit
()
_
TestCaseQuit
()
{
printf
(
"Asserts: passed %d, failed %d
\n
"
,
_testAssertsPassed
,
_testAssertsFailed
);
//! \todo make the test fail, if it does not contain any asserts
printf
(
"Asserts: passed %d, failed %d
\n
"
,
_testAssertsPassed
,
_testAssertsFailed
);
fflush
(
stdout
);
return
_testReturnValue
;
}
...
...
@@ -57,7 +61,7 @@ AssertEquals(Uint32 expected, Uint32 actual, char* message, ...)
va_start
(
args
,
message
);
SDL_vsnprintf
(
buf
,
sizeof
(
buf
),
message
,
args
);
va_end
(
args
);
printf
(
"Assert Equals failed: expected %d, got %d; %s
\n
"
,
expected
,
actual
,
buf
);
printf
(
"Assert Equals failed: expected %d, got %d; %s
\n
"
,
expected
,
actual
,
buf
);
fflush
(
stdout
);
_testReturnValue
=
1
;
_testAssertsFailed
++
;
}
else
{
...
...
test/test-automation/SDL_test.h
View file @
1b21c654
...
...
@@ -23,11 +23,14 @@
#include <SDL/SDL.h>
extern
int
_testReturnValue
;
extern
int
_testAssertsFailed
;
extern
int
_testAssertsPassed
;
// \todo Should these be consts?
#define TEST_ENABLED 1
#define TEST_DISABLED 0
/*!
* Holds information about a test case
*/
...
...
@@ -38,23 +41,28 @@ typedef struct TestCaseReference {
long
requirements
;
/*!< Set to TEST_REQUIRES_OPENGL, TEST_REQUIRES_AUDIO, ... */
}
TestCaseReference
;
/*! \fn TestCaseInit
/*! \fn
_
TestCaseInit
* Initialized the test case. Must be called at
* the beginning of every test case, before doing
* anything else.
*/
void
TestCaseInit
();
void
_
TestCaseInit
();
/*! \fn TestCaseQuit
/*! \fn
_
TestCaseQuit
* Deinitializes and exits the test case
*
* \return 0 if test succeeded, otherwise 1
*/
int
TestCaseQuit
();
int
_TestCaseQuit
();
/*!
* todo add comment
*/
void
AssertEquals
(
Uint32
expected
,
Uint32
actual
,
char
*
message
,
...);
/*!
* todo add comment
*/
void
AssertTrue
(
int
condition
,
char
*
message
,
...);
#endif
test/test-automation/runner.c
View file @
1b21c654
...
...
@@ -28,7 +28,11 @@
#include "SDL_test.h"
//!< Function pointer to a test case function
typedef
int
(
*
TestCase
)(
void
*
arg
);
typedef
void
(
*
TestCase
)(
void
*
arg
);
//!< Function pointer to a test case init function
typedef
void
(
*
TestCaseInit
)(
void
);
//!< Function pointer to a test case quit function
typedef
int
(
*
TestCaseQuit
)(
void
);
//!< Flag for executing tests in-process
static
int
execute_inproc
=
0
;
...
...
@@ -99,6 +103,7 @@ QueryTestCases(void *library)
return
tests
;
}
/*!
* Loads test case from a test suite
*
...
...
@@ -110,7 +115,7 @@ QueryTestCases(void *library)
TestCase
LoadTestCase
(
void
*
suite
,
char
*
testName
)
{
TestCase
test
=
(
int
(
*
)(
void
*
)
)
SDL_LoadFunction
(
suite
,
testName
);
TestCase
test
=
(
TestCase
)
SDL_LoadFunction
(
suite
,
testName
);
if
(
test
==
NULL
)
{
fprintf
(
stderr
,
"Loading test failed, tests == NULL
\n
"
);
fprintf
(
stderr
,
"%s
\n
"
,
SDL_GetError
());
...
...
@@ -119,6 +124,43 @@ LoadTestCase(void *suite, char *testName)
return
test
;
}
/*!
* Loads function that initialises the test case from the
* given test suite.
*
* \param suite Used test suite
*
* \return Function pointer (TestCaseInit) which points to loaded init function. NULL if function fails.
*/
TestCaseInit
LoadTestCaseInit
(
void
*
suite
)
{
TestCaseInit
testCaseInit
=
(
TestCaseInit
)
SDL_LoadFunction
(
suite
,
"_TestCaseInit"
);
if
(
testCaseInit
==
NULL
)
{
fprintf
(
stderr
,
"Loading TestCaseInit function failed, testCaseInit == NULL
\n
"
);
fprintf
(
stderr
,
"%s
\n
"
,
SDL_GetError
());
}
return
testCaseInit
;
}
/*!
* Loads function that deinitialises the executed test case from the
* given test suite.
*
* \param suite Used test suite
*
* \return Function pointer (TestCaseInit) which points to loaded init function. NULL if function fails.
*/
TestCaseQuit
LoadTestCaseQuit
(
void
*
suite
)
{
TestCaseQuit
testCaseQuit
=
(
TestCaseQuit
)
SDL_LoadFunction
(
suite
,
"_TestCaseQuit"
);
if
(
testCaseQuit
==
NULL
)
{
fprintf
(
stderr
,
"Loading TestCaseQuit function failed, testCaseQuit == NULL
\n
"
);
fprintf
(
stderr
,
"%s
\n
"
,
SDL_GetError
());
}
return
testCaseQuit
;
}
/*!
* If using out-of-proc execution of tests. This function
...
...
@@ -147,6 +189,16 @@ HandleTestReturnValue(int stat_lock)
return
returnValue
;
}
/*!
* Prints usage information
*/
void
printUsage
()
{
printf
(
"Usage: ./runner [--in-proc] [--help]
\n
"
);
printf
(
"Options:
\n
"
);
printf
(
" --in-proc Executes tests in-process
\n
"
);
printf
(
" --help Print this help
\n
"
);
}
/*!
* Parse command line arguments
*
...
...
@@ -164,13 +216,13 @@ ParseOptions(int argc, char *argv[])
execute_inproc
=
1
;
}
else
if
(
SDL_strcmp
(
arg
,
"--help"
)
==
0
||
SDL_strcmp
(
arg
,
"-h"
)
==
0
)
{
printf
(
"Usage: ./runner [--in-proc] [--help]
\n
"
);
printf
(
"Options:
\n
"
);
printf
(
" --in-proc Executes tests in-process
\n
"
);
printf
(
" --help Print this help.:
\n
"
);
printUsage
();
exit
(
0
);
}
else
{
printf
(
"runner: unknown command '%s'
\n
"
,
arg
);
printUsage
();
exit
(
0
);
}
// \todo print error for unknown option
}
}
...
...
@@ -206,15 +258,25 @@ main(int argc, char *argv[])
printf
(
"Running %s (in %s):
\n
"
,
testname
,
testSuiteName
);
TestCaseInit
testCaseInit
=
LoadTestCaseInit
(
suite
);
TestCaseQuit
testCaseQuit
=
LoadTestCaseQuit
(
suite
);
TestCase
test
=
(
TestCase
)
LoadTestCase
(
suite
,
testname
);
int
retVal
=
1
;
if
(
execute_inproc
)
{
TestCase
test
=
(
TestCase
)
LoadTestCase
(
suite
,
testname
);
retVal
=
test
(
0x0
);
testCaseInit
();
test
(
0x0
);
retVal
=
testCaseQuit
();
}
else
{
int
childpid
=
fork
();
if
(
childpid
==
0
)
{
TestCase
test
=
(
TestCase
)
LoadTestCase
(
suite
,
testname
);
return
test
(
0x0
);
testCaseInit
();
test
(
0x0
);
return
testCaseQuit
();
}
else
{
int
stat_lock
=
-
1
;
int
child
=
wait
(
&
stat_lock
);
...
...
test/test-automation/testrect/testrect.c
View file @
1b21c654
...
...
@@ -21,8 +21,8 @@ TestCaseReference **QueryTestSuite() {
return
(
TestCaseReference
**
)
testSuite
;
}
/*
*
*
@
brief Tests SDL_IntersectRectAndLine()
/*
!
*
\
brief Tests SDL_IntersectRectAndLine()
*/
int
rect_testIntersectRectAndLine
(
void
*
arg
)
{
...
...
@@ -31,8 +31,6 @@ int rect_testIntersectRectAndLine (void *arg)
int
x2
,
y2
;
SDL_bool
clipped
;
TestCaseInit
();
x1
=
-
10
;
y1
=
0
;
x2
=
-
10
;
...
...
@@ -132,6 +130,4 @@ int rect_testIntersectRectAndLine (void *arg)
x1
==
0
&&
y1
==
31
&&
x2
==
31
&&
y2
==
0
,
"diagonal line to upper right was incorrectly clipped: %d,%d - %d,%d"
,
x1
,
y1
,
x2
,
y2
);
return
TestCaseQuit
();
}
test/test-automation/tests/Makefile.am
View file @
1b21c654
test/test-automation/tests/test.c
View file @
1b21c654
...
...
@@ -48,36 +48,25 @@ TestCaseReference **QueryTestSuite() {
}
/* Test case functions */
int
hello
(
void
*
arg
)
void
hello
(
void
*
arg
)
{
TestCaseInit
();
const
char
*
revision
=
SDL_GetRevision
();
printf
(
"Revision is %s
\n
"
,
revision
);
AssertEquals
(
3
,
5
,
"fails"
);
return
TestCaseQuit
(
);
AssertEquals
(
3
,
5
,
"fails"
);
}
int
hello2
(
void
*
arg
)
void
hello2
(
void
*
arg
)
{
TestCaseInit
();
char
*
msg
=
"eello"
;
//msg[0] = 'H';
return
TestCaseQuit
();
AssertTrue
(
0
,
"fails"
);
}
int
hello3
(
void
*
arg
)
void
hello3
(
void
*
arg
)
{
TestCaseInit
();
printf
(
"hello3
\n
"
);
AssertEquals
(
3
,
3
,
"passes"
);
return
TestCaseQuit
();
AssertTrue
(
1
,
"passes"
);
}
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment