SDL-mirror/test/test-automation/runner.c

575 lines
14 KiB
C
Raw Normal View History

/*
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-23 17:49:06 +03:00
#include "SDL/SDL.h"
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <dirent.h>
#include <sys/types.h>
#include "SDL_test.h"
2011-05-23 17:49:06 +03:00
//!< Function pointer to a test case function
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;
//!< Flag for executing only test with selected name
static int only_selected_test = 0;
//!< Flag for executing only the selected test suite
static int only_selected_suite = 0;
2011-06-08 19:41:12 +03:00
//!< Size of the test and suite name buffers
#define NAME_BUFFER_SIZE 1024
//!< Name of the selected test
char selected_test_name[NAME_BUFFER_SIZE];
//!< Name of the selected suite
char selected_suite_name[NAME_BUFFER_SIZE];
2011-06-08 19:41:12 +03:00
//! Default directory of the test suites
#define DEFAULT_TEST_DIRECTORY "tests/"
/*!
* Holds information about test suite. Implemented as
* linked list. \todo write better doc
*/
typedef struct TestSuiteReference {
char *name; //!< test suite name
void *library; //!< pointer to shared/dynamic library implemeting the suite
struct TestSuiteReference *next; //!< Pointer to next item in the list
} TestSuiteReference;
typedef struct TestCaseItem {
char *testName;
char *suiteName;
TestCaseInit testCaseInit;
TestCase testCase;
TestCaseQuit testCaseQuit;
struct TestCaseItem *next;
} TestCaseItem; //!< \todo rename
2011-05-30 11:53:59 +03:00
/*!
* Scans the tests/ directory and returns the names
* of the dynamic libraries implementing the test suites.
2011-06-08 19:41:12 +03:00
*
* Note: currently function assumes that test suites names
* are in following format: libtestsuite.dylib or libtestsuite.so.
2011-05-30 11:53:59 +03:00
*
2011-06-08 19:41:12 +03:00
* Note: if only_selected_suite flags is non-zero, only the selected
* test will be loaded.
*
* \param directoryName Name of the directory which will be scanned
*
* \return Pointer to TestSuiteReference which holds all the info about suites
2011-05-30 11:53:59 +03:00
*/
TestSuiteReference *
2011-06-08 19:41:12 +03:00
ScanForTestSuites(char *directoryName, char *extension) {
typedef struct dirent Entry;
2011-06-08 19:41:12 +03:00
DIR *directory = opendir(directoryName);
TestSuiteReference *suites = NULL;
Entry *entry = NULL;
if(!directory) {
perror("Couldn't open directory: tests/");
}
while(entry = readdir(directory)) {
if(entry->d_namlen > 2) { // discards . and ..
const char *delimiters = ".";
char *name = strtok(entry->d_name, delimiters);
char *ext = strtok(NULL, delimiters);
2011-06-08 19:41:12 +03:00
// filter out all other suites but the selected test suite
int ok = 1;
if(only_selected_suite) {
ok = SDL_strncmp(selected_suite_name, name, NAME_BUFFER_SIZE) == 0;
}
2011-06-08 19:41:12 +03:00
if(ok && SDL_strcmp(ext, extension) == 0) {
char buffer[NAME_BUFFER_SIZE];
memset(buffer, 0, NAME_BUFFER_SIZE);
strcat(buffer, directoryName);
strcat(buffer, name);
strcat(buffer, ".");
strcat(buffer, ext);
// create test suite reference
TestSuiteReference *reference = (TestSuiteReference *) SDL_malloc(sizeof(TestSuiteReference));
memset(reference, 0, sizeof(TestSuiteReference));
int length = strlen(buffer) + 1; // + 1 for '\0'?
reference->name = SDL_malloc(length * sizeof(char));
2011-06-08 19:41:12 +03:00
strcpy(reference->name, buffer);
reference->next = suites;
suites = reference;
printf("Reference added to: %s\n", buffer);
}
}
}
closedir(directory);
return suites;
}
2011-05-25 09:45:03 -07:00
/*!
* Loads test suite which is implemented as dynamic library.
*
2011-06-04 18:08:54 +03:00
* \param testSuiteName Name of the test suite which will be loaded
*
* \return Pointer to loaded test suite, or NULL if library could not be loaded
*/
void *
LoadTestSuite(char *testSuiteName)
{
void *library = SDL_LoadObject(testSuiteName);
if(library == NULL) {
fprintf(stderr, "Loading %s failed\n", testSuiteName);
fprintf(stderr, "%s\n", SDL_GetError());
}
return library;
}
2011-05-30 11:53:59 +03:00
/*!
* Loads the test case references from the given test suite.
* \param library Previously loaded dynamic library AKA test suite
* \return Pointer to array of TestCaseReferences or NULL if function failed
2011-05-30 11:53:59 +03:00
*/
2011-05-30 18:58:20 +03:00
TestCaseReference **
QueryTestCases(void *library)
{
2011-05-26 19:19:46 +03:00
TestCaseReference **(*suite)(void);
2011-05-30 11:53:59 +03:00
suite = (TestCaseReference **(*)(void)) SDL_LoadFunction(library, "QueryTestSuite");
if(suite == NULL) {
fprintf(stderr, "Loading QueryTestCaseReferences() failed.\n");
fprintf(stderr, "%s\n", SDL_GetError());
}
2011-05-26 19:19:46 +03:00
TestCaseReference **tests = suite();
if(tests == NULL) {
fprintf(stderr, "Failed to load test references.\n");
fprintf(stderr, "%s\n", SDL_GetError());
}
return tests;
}
/*!
* Loads test case from a test suite
*
2011-05-30 18:58:20 +03:00
* \param suite a test suite
* \param testName Name of the test that is going to be loaded
2011-05-30 11:53:59 +03:00
*
* \return Function Pointer (TestCase) to loaded test case, NULL if function failed
2011-05-30 11:53:59 +03:00
*/
2011-05-30 18:58:20 +03:00
TestCase
LoadTestCase(void *suite, char *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());
}
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;
}
2011-05-30 11:53:59 +03:00
/*!
* If using out-of-proc execution of tests. This function
* will handle the return value of the child process
* and interprets it to the runner. Also prints warnings
* if child was aborted by a signela.
2011-05-30 11:53:59 +03:00
*
* \param stat_lock information about the exited child process
2011-05-30 11:53:59 +03:00
*
* \return 0 if test case succeeded, 1 otherwise
2011-05-30 11:53:59 +03:00
*/
2011-05-30 18:58:20 +03:00
int
HandleTestReturnValue(int stat_lock)
{
//! \todo rename to: HandleChildProcessReturnValue?
int returnValue = -1;
if(WIFEXITED(stat_lock)) {
returnValue = WEXITSTATUS(stat_lock);
} else if(WIFSIGNALED(stat_lock)) {
int signal = WTERMSIG(stat_lock);
fprintf(stderr, "FAILURE: test was aborted due to signal no %d\n", signal);
returnValue = 1;
}
return returnValue;
}
/*!
* Executes a test case. Loads the test, executes it and
* returns the tests return value to the caller.
*
* \param suite The suite from which the test will be loaded
* \param testReference TestCaseReference of the test under execution
* \return The return value of the test. Zero means success, non-zero failure.
*/
int
ExecuteTest(TestCaseItem *testItem) {
int retVal = 1;
if(execute_inproc) {
testItem->testCaseInit();
testItem->testCase(0x0);
retVal = testItem->testCaseQuit();
} else {
int childpid = fork();
if(childpid == 0) {
testItem->testCaseInit();
testItem->testCase(0x0);
exit(testItem->testCaseQuit());
} else {
int stat_lock = -1;
int child = wait(&stat_lock);
retVal = HandleTestReturnValue(stat_lock);
}
}
return retVal;
}
/*!
* Prints usage information
*/
2011-06-06 18:37:53 +03:00
void
printUsage() {
2011-06-05 17:34:04 +03:00
printf("Usage: ./runner [--in-proc] [--suite SUITE] [--test TEST] [--help]\n");
printf("Options:\n");
2011-06-05 17:34:04 +03:00
printf(" --in-proc Executes tests in-process\n");
printf(" -t --test TEST Executes only tests with given name\n");
printf(" -s --suite SUITE Executes only the given test suite\n");
printf(" -h --help Print this help\n");
}
/*!
* Parse command line arguments
*
* \param argc Count of command line arguments
* \param argv Array of commond lines arguments
*/
void
ParseOptions(int argc, char *argv[])
{
int i;
for (i = 1; i < argc; ++i) {
const char *arg = argv[i];
if(SDL_strcmp(arg, "--in-proc") == 0) {
execute_inproc = 1;
}
else if(SDL_strcmp(arg, "--help") == 0 || SDL_strcmp(arg, "-h") == 0) {
printUsage();
exit(0);
}
else if(SDL_strcmp(arg, "--test") == 0 || SDL_strcmp(arg, "-t") == 0) {
only_selected_test = 1;
2011-06-05 17:34:04 +03:00
char *testName = NULL;
if( (i + 1) < argc) {
testName = argv[++i];
} else {
printf("runner: test name is missing\n");
printUsage();
exit(1);
}
2011-06-05 17:34:04 +03:00
memset(selected_test_name, 0, NAME_BUFFER_SIZE);
strcpy(selected_test_name, testName);
}
else if(SDL_strcmp(arg, "--suite") == 0 || SDL_strcmp(arg, "-s") == 0) {
only_selected_suite = 1;
2011-06-05 17:34:04 +03:00
char *suiteName = NULL;
if( (i + 1) < argc) {
suiteName = argv[++i];
} else {
printf("runner: suite name is missing\n");
printUsage();
exit(1);
}
memset(selected_suite_name, 0, NAME_BUFFER_SIZE);
strcpy(selected_suite_name, suiteName);
}
else {
printf("runner: unknown command '%s'\n", arg);
printUsage();
exit(0);
}
}
}
/*!
* \todo add comment
*/
TestCaseItem *
LoadTestCases(TestSuiteReference *suites) {
TestCaseItem *testCases = NULL;
TestSuiteReference *suiteReference = NULL;
for(suiteReference = suites; suiteReference; suiteReference = suiteReference->next) {
TestCaseReference **tests = QueryTestCases(suiteReference->library);
TestCaseReference *testReference = NULL;
int counter = 0;
for(testReference = tests[counter]; testReference; testReference = tests[++counter]) {
void *suite = suiteReference->library;
// Load test case functions
TestCaseInit testCaseInit = LoadTestCaseInit(suiteReference->library);
TestCaseQuit testCaseQuit = LoadTestCaseQuit(suiteReference->library);
TestCase testCase = (TestCase) LoadTestCase(suiteReference->library, testReference->name);
// Do the filtering
if(FilterTestCase(testReference)) {
//!< \todo deallocate these
TestCaseItem *item = SDL_malloc(sizeof(TestCaseItem));
memset(item, 0, sizeof(TestCaseItem));
item->testCaseInit = testCaseInit;
item->testCase = testCase;
item->testCaseQuit = testCaseQuit;
// prepend the list
item->next = testCases;
testCases = item;
printf("Added test: %s\n", testReference->name);
}
}
}
return testCases;
}
/*!
* \todo add comment
*/
void
UnloadTestCases(TestCaseItem *item) {
TestCaseItem *ref = item;
while(ref) {
TestCaseItem *temp = ref->next;
SDL_free(ref);
ref = temp;
}
item = NULL;
}
/*!
* \todo add comment
*/
int
FilterTestCase(TestCaseReference *testReference) {
//int retVal = 1;
if(testReference->enabled == TEST_DISABLED) {
//retVal = 0;
return 0;
}
if(1 && strstr(testReference->name, "rect") != NULL) {
//retVal = 1;
return 1;
} else {
return 0;
}
return 1;
}
/*!
* \todo add comment
*/
TestSuiteReference *
LoadTestSuites(TestSuiteReference *suites) {
TestSuiteReference *reference = NULL;
for(reference = suites; reference; reference = reference->next) {
reference->library = LoadTestSuite(reference->name);
}
return suites;
}
/*!
* \todo add comment
*/
void UnloadTestSuites(TestSuiteReference *suites) {
TestSuiteReference *ref = suites;
while(ref) {
SDL_free(ref->name);
SDL_UnloadObject(ref->library);
TestSuiteReference *temp = ref->next;
SDL_free(ref);
ref = temp;
}
suites = NULL;
}
/*!
* Entry point for test runner
*
* \param argc Count of command line arguments
* \param argv Array of commond lines arguments
*/
int
main(int argc, char *argv[])
{
ParseOptions(argc, argv);
2011-05-30 18:58:20 +03:00
// print: Testing against SDL version fuu (rev: bar) if verbose == true
int failureCount = 0, passCount = 0;
2011-06-06 18:37:53 +03:00
char *testSuiteName = NULL;
int suiteCounter = 0;
2011-06-08 19:41:12 +03:00
#if defined(linux) || defined( __linux)
char *extension = "so";
#else
char *extension = "dylib";
#endif
const Uint32 startTicks = SDL_GetTicks();
2011-06-08 19:41:12 +03:00
TestSuiteReference *suites = ScanForTestSuites(DEFAULT_TEST_DIRECTORY, extension);
suites = LoadTestSuites(suites);
2011-06-08 19:41:12 +03:00
// load tests and filter them
TestCaseItem *testCases = LoadTestCases(suites);
// end result: list of tests to run
TestCaseItem *testItem = NULL;
for(testItem = testCases; testItem; testItem = testItem->next) {
int retVal = ExecuteTest(testItem);
if(retVal) {
failureCount++;
if(retVal == 2) {
//printf("%s (in %s): FAILED -> No asserts\n", reference->name, testSuiteName);
printf("%s (in %s): FAILED -> No asserts\n", "<test name>", "<suite name>");
2011-06-08 19:41:12 +03:00
} else {
printf("%s (in %s): FAILED\n", "<test name>", "<suite name>");
}
} else {
passCount++;
printf("%s (in %s): ok\n", "<test name>", "<suite name>");
}
2011-06-08 19:41:12 +03:00
printf("\n");
}
2011-05-23 17:49:06 +03:00
UnloadTestCases(testCases);
UnloadTestSuites(suites);
2011-05-23 17:49:06 +03:00
const Uint32 endTicks = SDL_GetTicks();
printf("Ran %d tests in %0.5f seconds.\n", (passCount + failureCount), (endTicks-startTicks)/1000.0f);
2011-05-23 17:49:06 +03:00
printf("%d tests passed\n", passCount);
printf("%d tests failed\n", failureCount);
return 0;
}