Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
1506 lines (1219 loc) · 44.7 KB

File metadata and controls

1506 lines (1219 loc) · 44.7 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
/*
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.
*/
#include "SDL/SDL.h"
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <dirent.h>
#include <sys/types.h>
#include <sys/stat.h>
#include "../../include/SDL_test.h"
#include "../../config.h"
#include "../libSDLtest/fuzzer/fuzzer.h"
#include "../libSDLtest/plain_logger.h"
#include "../libSDLtest/xml_logger.h"
#include "../libSDLtest/logger_helpers.h"
#include "logger.h"
#include "support.h"
//!< Function pointer to a test case function
typedef void (*TestCaseFp)(void *arg);
//!< Function pointer to a test case init function
typedef void (*InitTestInvironmentFp)(Uint64, SDL_bool);
//!< Function pointer to a test case quit function
typedef int (*QuitTestInvironmentFp)(void);
//!< Function pointer to a test case set up function
typedef void (*TestCaseSetUpFp)(void *arg);
//!< Function pointer to a test case tear down function
typedef void (*TestCaseTearDownFp)(void *arg);
//!< Function pointer to a function which returns the failed assert count
typedef int (*CountFailedAssertsFp)(void);
//!< Flag for executing tests in-process
static int execute_inproc = 0;
//!< Flag for only printing out the test names
static int only_print_tests = 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;
//!< Flag for executing only tests that contain certain string in their name
static int only_tests_with_string = 0;
//!< Flag for enabling XML logging
static int xml_enabled = 0;
//! Flag for enabling user-supplied style sheet for XML test report
static int custom_xsl_enabled = 0;
//! Flag for disabling xsl-style from xml report
static int xsl_enabled = 0;
//! Flag for enabling universal timeout for tests
static int universal_timeout_enabled = 0;
//! Flag for enabling verbose logging
static int enable_verbose_logger = 0;
//! Flag for using user supplied run seed
static int userRunSeed = 0;
//! Whether or not logger should log to stdout instead of file
static int log_stdout_enabled = 1;
//! Whether or not dummy suite should be included to the test run
static int include_dummy_suite = 0;
//!< 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];
//!< substring of test case name
char testcase_name_substring[NAME_BUFFER_SIZE];
//! Name for user-supplied XSL style sheet name
char xsl_stylesheet_name[NAME_BUFFER_SIZE];
//! User-suppled timeout value for tests
int universal_timeout = -1;
//! Default directory of the test suites
#define DEFAULT_TEST_DIRECTORY "tests/"
//! Default directory for placing log files
#define DEFAULT_LOG_DIRECTORY "logs"
//! Default directory of the test suites
#define DEFAULT_LOG_FILENAME "testrun"
//! Defines directory separator
#define DIRECTORY_SEPARATOR '/'
#define DUMMY_TEST_NAME "libtestdummy"
//! Name of the default stylesheet
const char *defaultXSLStylesheet = "style.xsl";
//! Fuzzer seed for the harness
char *runSeed = NULL;
//! Execution key that user supplied via command options
Uint64 userExecKey = 0;
//! How man time a test will be invocated
int testInvocationCount = 1;
//! Stores the basename for log files
char log_basename[NAME_BUFFER_SIZE];
//! Stores directory name for placing the logs
char log_directory[NAME_BUFFER_SIZE];
// \todo add comments
int totalTestFailureCount = 0, totalTestPassCount = 0, totalTestSkipCount = 0;
int testFailureCount = 0, testPassCount = 0, testSkipCount = 0;
/*!
* Holds information about test suite such as it's name
* and pointer to dynamic library. Implemented as linked list.
*/
typedef struct TestSuiteReference {
May 18, 2013
May 18, 2013
157
158
159
char *name; //!< test suite name
char *directoryPath; //!< test suites path (eg. tests/libtestsuite)
void *library; //!< pointer to shared/dynamic library implementing the suite
May 18, 2013
May 18, 2013
161
struct TestSuiteReference *next; //!< Pointer to next item in the list
162
163
164
165
166
167
168
169
170
} TestSuiteReference;
/*!
* Holds information about the tests that will be executed.
*
* Implemented as linked list.
*/
typedef struct TestCaseItem {
May 18, 2013
May 18, 2013
171
172
char *testName;
char *suiteName;
May 18, 2013
May 18, 2013
174
175
176
char *description;
long requirements;
long timeout;
May 18, 2013
May 18, 2013
178
179
180
181
182
InitTestInvironmentFp initTestEnvironment;
TestCaseSetUpFp testSetUp;
TestCaseFp testCase;
TestCaseTearDownFp testTearDown;
QuitTestInvironmentFp quitTestEnvironment;
May 18, 2013
May 18, 2013
184
CountFailedAssertsFp countFailedAsserts;
May 18, 2013
May 18, 2013
186
struct TestCaseItem *next;
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
} TestCase;
/*! Some function prototypes. Add the rest of functions and move to runner.h */
TestCaseFp LoadTestCaseFunction(void *suite, char *testName);
InitTestInvironmentFp LoadInitTestInvironmentFunction(void *suite);
QuitTestInvironmentFp LoadQuitTestInvironmentFunction(void *suite);
TestCaseReference **QueryTestCaseReferences(void *library);
TestCaseSetUpFp LoadTestSetUpFunction(void *suite);
TestCaseTearDownFp LoadTestTearDownFunction(void *suite);
CountFailedAssertsFp LoadCountFailedAssertsFunction(void *suite);
void KillHungTestInChildProcess(int signum);
void UnloadTestSuites(TestSuiteReference *suites);
int FilterTestCase(TestCaseReference *testReference);
int HandleChildProcessReturnValue(int stat_lock);
/*! Pointers to selected logger implementation */
RunStartedFp RunStarted = NULL;
RunEndedFp RunEnded = NULL;
SuiteStartedFp SuiteStarted = NULL;
SuiteEndedFp SuiteEnded = NULL;
TestStartedFp TestStarted = NULL;
TestEndedFp TestEnded = NULL;
AssertFp Assert = NULL;
AssertWithValuesFp AssertWithValues = NULL;
AssertSummaryFp AssertSummary = NULL;
LogFp Log = NULL;
/*!
* Scans the tests/ directory and returns the names
* of the dynamic libraries implementing the test suites.
*
* Note: currently function assumes that test suites names
* are in following format: libtestsuite.dylib or libtestsuite.so.
*
* 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
* \param extension What file extension is used with dynamic objects
*
* \return Pointer to TestSuiteReference which holds all the info about suites
May 18, 2013
May 18, 2013
231
* or NULL on failure
232
233
234
235
*/
TestSuiteReference *
ScanForTestSuites(char *directoryName, char *extension)
{
May 18, 2013
May 18, 2013
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
typedef struct dirent Entry;
TestSuiteReference *suites = NULL;
TestSuiteReference *reference = NULL;
Entry *entry = NULL;
DIR *directory = NULL;
if(directoryName == NULL || extension == NULL ||
SDL_strlen(directoryName) == 0 || SDL_strlen(extension) == 0) {
return NULL;
}
directory = opendir(directoryName);
if(!directory) {
fprintf(stderr, "Failed to open test suite directory: %s\n", directoryName);
perror("Error message");
exit(2);
}
while( (entry = readdir(directory)) ) {
// discards . and .. and hidden files starting with dot and directories etc.
if(strlen(entry->d_name) > 2 && entry->d_name[0] != '.' && entry->d_type == DT_REG) {
const char *delimiters = ".";
char *name = strtok(entry->d_name, delimiters);
char *ext = strtok(NULL, delimiters);
if(name == NULL || ext == NULL) {
goto error;
}
int ok = 1; // on default, we want to include all tests
// filter out all other suites but the selected test suite
if(only_selected_suite) {
ok = SDL_strncmp(selected_suite_name, name, NAME_BUFFER_SIZE) == 0;
}
if(SDL_strncmp(name, DUMMY_TEST_NAME, NAME_BUFFER_SIZE) == 0) {
if(include_dummy_suite) {
ok = 1;
} else {
ok = 0;
}
}
if(ok && SDL_strncmp(ext, extension, SDL_strlen(extension)) == 0) {
// create test suite reference
reference = (TestSuiteReference *) SDL_malloc(sizeof(TestSuiteReference));
if(reference == NULL) {
goto error;
}
memset(reference, 0, sizeof(TestSuiteReference));
const Uint32 dirSize = SDL_strlen(directoryName);
const Uint32 extSize = SDL_strlen(ext);
const Uint32 nameSize = SDL_strlen(name) + 1;
// copy the name
reference->name = SDL_malloc(nameSize * sizeof(char));
if(reference->name == NULL) {
goto error;
}
SDL_snprintf(reference->name, nameSize, "%s", name);
// copy the directory path
const Uint32 dpSize = dirSize + nameSize + 1 + extSize + 1;
reference->directoryPath = SDL_malloc(dpSize * sizeof(char));
if(reference->directoryPath == NULL) {
goto error;
}
SDL_snprintf(reference->directoryPath, dpSize, "%s%s.%s",
directoryName, name, ext);
reference->next = suites;
suites = reference;
}
}
}
goto finished;
error:
if(reference) {
SDL_free(reference->name);
SDL_free(reference->directoryPath);
SDL_free(reference);
}
// Unload all the suites that are loaded thus far
UnloadTestSuites(suites);
suites = NULL;
finished:
if(directory) {
closedir(directory);
}
return suites;
337
338
339
340
341
342
343
344
345
346
347
348
349
}
/*!
* Loads test suite which is implemented as dynamic library.
*
* \param suite Reference to test suite that'll be loaded
*
* \return Pointer to loaded test suite, or NULL if library could not be loaded
*/
void *
LoadTestSuite(const TestSuiteReference *suite)
{
May 18, 2013
May 18, 2013
350
351
352
353
354
void *library = SDL_LoadObject(suite->directoryPath);
if(library == NULL) {
fprintf(stderr, "Loading %s failed\n", suite->name);
fprintf(stderr, "%s\n", SDL_GetError());
}
May 18, 2013
May 18, 2013
356
return library;
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
}
/*!
* Goes through all the given TestSuiteReferences
* and loads the dynamic libraries. Updates the suites
* parameter on-the-fly and returns it.
*
* \param suites Suites that will be loaded
*
* \return Updated TestSuiteReferences with pointer to loaded libraries
*/
TestSuiteReference *
LoadTestSuites(TestSuiteReference *suites)
{
May 18, 2013
May 18, 2013
372
373
374
375
TestSuiteReference *reference = NULL;
for(reference = suites; reference; reference = reference->next) {
reference->library = LoadTestSuite(reference);
}
May 18, 2013
May 18, 2013
377
return suites;
378
379
380
381
382
383
384
385
386
387
388
389
}
/*!
* Unloads the given TestSuiteReferences. Frees all
* the allocated resources including the dynamic libraries.
*
* \param suites TestSuiteReferences for deallocation process
*/
void
UnloadTestSuites(TestSuiteReference *suites)
{
May 18, 2013
May 18, 2013
390
391
392
393
TestSuiteReference *ref = suites;
while(ref) {
if(ref->name)
SDL_free(ref->name);
May 18, 2013
May 18, 2013
395
396
if(ref->directoryPath)
SDL_free(ref->directoryPath);
May 18, 2013
May 18, 2013
398
399
if(ref->library)
SDL_UnloadObject(ref->library);
May 18, 2013
May 18, 2013
401
402
403
404
TestSuiteReference *temp = ref->next;
SDL_free(ref);
ref = temp;
}
May 18, 2013
May 18, 2013
406
suites = NULL;
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
}
/*!
* Goes through the previously loaded test suites and
* loads test cases from them. Test cases are filtered
* during the process. Function will only return the
* test cases which aren't filtered out.
*
* \param suites previously loaded test suites
*
* \return Test cases that survived filtering process.
*/
TestCase *
LoadTestCases(TestSuiteReference *suites)
{
May 18, 2013
May 18, 2013
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
TestCase *testCases = NULL;
TestSuiteReference *suiteReference = NULL;
for(suiteReference = suites; suiteReference; suiteReference = suiteReference->next) {
TestCaseReference **tests = QueryTestCaseReferences(suiteReference->library);
TestCaseReference *testReference = NULL;
int counter = 0;
for(testReference = tests[counter]; testReference; testReference = tests[++counter]) {
//void *suite = suiteReference->library;
// Load test case functions
InitTestInvironmentFp initTestEnvironment = LoadInitTestInvironmentFunction(suiteReference->library);
QuitTestInvironmentFp quitTestEnvironment = LoadQuitTestInvironmentFunction(suiteReference->library);
TestCaseSetUpFp testSetUp = LoadTestSetUpFunction(suiteReference->library);
TestCaseTearDownFp testTearDown = LoadTestTearDownFunction(suiteReference->library);
TestCaseFp testCase = LoadTestCaseFunction(suiteReference->library, testReference->name);
CountFailedAssertsFp countFailedAsserts = LoadCountFailedAssertsFunction(suiteReference->library);
// Do the filtering
if(FilterTestCase(testReference)) {
TestCase *item = SDL_malloc(sizeof(TestCase));
memset(item, 0, sizeof(TestCase));
item->initTestEnvironment = initTestEnvironment;
item->quitTestEnvironment = quitTestEnvironment;
item->testSetUp = testSetUp;
item->testTearDown = testTearDown;
item->testCase = testCase;
item->countFailedAsserts = countFailedAsserts;
// copy suite name
int length = SDL_strlen(suiteReference->name) + 1;
item->suiteName = SDL_malloc(length);
if(item->suiteName == NULL) {
SDL_free(item);
return NULL;
}
strncpy(item->suiteName, suiteReference->name, length);
// copy test name
length = SDL_strlen(testReference->name) + 1;
item->testName = SDL_malloc(length);
if(item->testName == NULL) {
SDL_free(item->suiteName);
SDL_free(item);
return NULL;
}
strncpy(item->testName, testReference->name, length);
// copy test description
length = SDL_strlen(testReference->description) + 1;
item->description = SDL_malloc(length);
if(item->description == NULL) {
SDL_free(item->description);
SDL_free(item->suiteName);
SDL_free(item);
return NULL;
}
strncpy(item->description, testReference->description, length);
item->requirements = testReference->requirements;
item->timeout = testReference->timeout;
// prepend the list
item->next = testCases;
testCases = item;
//printf("Added test: %s\n", testReference->name);
}
}
}
return testCases;
503
504
505
506
507
508
509
510
511
512
513
514
}
/*!
* Unloads the given TestCases. Frees all the resources
* allocated for test cases.
*
* \param testCases Test cases to be deallocated
*/
void
UnloadTestCases(TestCase *testCases)
{
May 18, 2013
May 18, 2013
515
516
517
518
TestCase *ref = testCases;
while(ref) {
if(ref->testName)
SDL_free(ref->testName);
May 18, 2013
May 18, 2013
520
521
if(ref->suiteName)
SDL_free(ref->suiteName);
May 18, 2013
May 18, 2013
523
524
if(ref->description)
SDL_free(ref->description);
May 18, 2013
May 18, 2013
526
527
528
529
TestCase *temp = ref->next;
SDL_free(ref);
ref = temp;
}
May 18, 2013
May 18, 2013
531
testCases = NULL;
532
533
534
535
536
537
538
539
540
541
542
543
}
/*!
* Filters a test case based on its properties in TestCaseReference and user
* preference.
*
* \return Non-zero means test will be added to execution list, zero means opposite
*/
int
FilterTestCase(TestCaseReference *testReference)
{
May 18, 2013
May 18, 2013
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
int retVal = 1;
if(testReference->enabled == TEST_DISABLED) {
retVal = 0;
}
if(only_selected_test) {
if(SDL_strncmp(testReference->name, selected_test_name, NAME_BUFFER_SIZE) == 0) {
retVal = 1;
} else {
retVal = 0;
}
}
if(only_tests_with_string) {
if(strstr(testReference->name, testcase_name_substring) != NULL) {
retVal = 1;
} else {
retVal = 0;
}
}
return retVal;
567
568
569
570
571
572
573
574
575
576
577
578
}
/*!
* 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
*/
TestCaseReference **
QueryTestCaseReferences(void *library)
{
May 18, 2013
May 18, 2013
579
TestCaseReference **(*suite)(void);
May 18, 2013
May 18, 2013
581
582
583
584
585
suite = (TestCaseReference **(*)(void)) SDL_LoadFunction(library, "QueryTestSuite");
if(suite == NULL) {
fprintf(stderr, "Loading QueryTestCaseReferences() failed.\n");
fprintf(stderr, "%s\n", SDL_GetError());
}
May 18, 2013
May 18, 2013
587
588
589
590
591
TestCaseReference **tests = suite();
if(tests == NULL) {
fprintf(stderr, "Failed to load test references.\n");
fprintf(stderr, "%s\n", SDL_GetError());
}
May 18, 2013
May 18, 2013
593
return tests;
594
595
596
597
598
599
600
601
602
603
604
605
606
607
}
/*!
* Loads test case from a test suite
*
* \param suite a test suite
* \param testName Name of the test that is going to be loaded
*
* \return Function Pointer (TestCase) to loaded test case, NULL if function failed
*/
TestCaseFp
LoadTestCaseFunction(void *suite, char *testName)
{
May 18, 2013
May 18, 2013
608
609
610
611
612
TestCaseFp test = (TestCaseFp) SDL_LoadFunction(suite, testName);
if(test == NULL) {
fprintf(stderr, "Loading test %s failed, test == NULL\n", testName);
fprintf(stderr, "%s\n", SDL_GetError());
}
May 18, 2013
May 18, 2013
614
return test;
615
616
617
618
619
620
621
622
623
624
625
626
627
}
/*!
* Loads function that sets up a fixture for a test case. Note: if there's
* no SetUp function present in the suite the function will return NULL.
*
* \param suite Used test suite
*
* \return Function pointer to test case's set up function
*/
TestCaseSetUpFp
LoadTestSetUpFunction(void *suite) {
May 18, 2013
May 18, 2013
628
return (TestCaseSetUpFp) SDL_LoadFunction(suite, "SetUp");
629
630
631
632
633
634
635
636
637
638
639
640
641
}
/*!
* Loads function that tears down a fixture for a test case. Note: if there's
* no TearDown function present in the suite the function will return NULL.
*
* \param suite Used test suite
*
* \return Function pointer to test case's tear down function
*/
TestCaseTearDownFp
LoadTestTearDownFunction(void *suite) {
May 18, 2013
May 18, 2013
642
return (TestCaseTearDownFp) SDL_LoadFunction(suite, "TearDown");
643
644
645
646
647
648
649
650
651
652
653
654
655
}
/*!
* Loads function that initialises the test environment for
* a test case in the given suite.
*
* \param suite Used test suite
*
* \return Function pointer (InitTestInvironmentFp) which points to loaded init function. NULL if function fails.
*/
InitTestInvironmentFp
LoadInitTestInvironmentFunction(void *suite) {
May 18, 2013
May 18, 2013
656
657
658
659
660
InitTestInvironmentFp testEnvInit = (InitTestInvironmentFp) SDL_LoadFunction(suite, "_InitTestEnvironment");
if(testEnvInit == NULL) {
fprintf(stderr, "Loading _InitTestInvironment function failed, testEnvInit == NULL\n");
fprintf(stderr, "%s\n", SDL_GetError());
}
May 18, 2013
May 18, 2013
662
return testEnvInit;
663
664
665
666
667
668
669
670
671
672
673
674
675
}
/*!
* Loads function that deinitialises the test environment (and returns
* the test case's result) created for the test case in the given suite.
*
* \param suite Used test suite
*
* \return Function pointer (QuitTestInvironmentFp) which points to loaded init function. NULL if function fails.
*/
QuitTestInvironmentFp
LoadQuitTestInvironmentFunction(void *suite) {
May 18, 2013
May 18, 2013
676
677
678
679
680
QuitTestInvironmentFp testEnvQuit = (QuitTestInvironmentFp) SDL_LoadFunction(suite, "_QuitTestEnvironment");
if(testEnvQuit == NULL) {
fprintf(stderr, "Loading _QuitTestEnvironment function failed, testEnvQuit == NULL\n");
fprintf(stderr, "%s\n", SDL_GetError());
}
May 18, 2013
May 18, 2013
682
return testEnvQuit;
683
684
685
686
687
688
689
690
691
692
693
694
695
}
/*!
* Loads function that returns failed assert count in the current
* test environment
*
* \param suite Used test suite
*
* \return Function pointer to _CountFailedAsserts function
*/
CountFailedAssertsFp
LoadCountFailedAssertsFunction(void *suite) {
May 18, 2013
May 18, 2013
696
697
698
699
700
CountFailedAssertsFp countFailedAssert = (CountFailedAssertsFp) SDL_LoadFunction(suite, "_CountFailedAsserts");
if(countFailedAssert == NULL) {
fprintf(stderr, "Loading _CountFailedAsserts function failed, countFailedAssert == NULL\n");
fprintf(stderr, "%s\n", SDL_GetError());
}
May 18, 2013
May 18, 2013
702
return countFailedAssert;
703
704
705
706
707
708
709
710
711
712
713
714
715
}
#define USE_SDL_TIMER_FOR_TIMEOUT
/*!
* Set timeout for test.
*
* \param timeout Timeout interval in seconds!
* \param callback Function that will be called after timeout has elapsed
*/
void
SetTestTimeout(int timeout, void (*callback)(int))
{
May 18, 2013
May 18, 2013
716
717
718
if(callback == NULL) {
fprintf(stderr, "Error: timeout callback can't be NULL");
}
May 18, 2013
May 18, 2013
720
721
722
if(timeout < 0) {
fprintf(stderr, "Error: timeout value must be bigger than zero.");
}
May 18, 2013
May 18, 2013
724
int tm = (timeout > universal_timeout ? timeout : universal_timeout);
725
726
#ifdef USE_SDL_TIMER_FOR_TIMEOUT
May 18, 2013
May 18, 2013
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
/* Init SDL timer if not initialized before */
if(SDL_WasInit(SDL_INIT_TIMER) == 0) {
if(SDL_InitSubSystem(SDL_INIT_TIMER)) {
fprintf(stderr, "Error: Failed to init timer subsystem");
fprintf(stderr, "%s\n", SDL_GetError());
}
}
/* Note:
* SDL_Init(SDL_INIT_TIMER) should be successfully called before using this
*/
int timeoutInMilliseconds = tm * 1000;
SDL_TimerID timerID = SDL_AddTimer(timeoutInMilliseconds, (SDL_TimerCallback) callback, 0x0);
if(timerID == 0) {
fprintf(stderr, "Error: Creation of SDL timer failed.\n");
fprintf(stderr, "Error: %s\n", SDL_GetError());
}
May 18, 2013
May 18, 2013
746
747
signal(SIGALRM, callback);
alarm((unsigned int) tm);
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
#endif
}
/*!
* Kills test that hungs. Test hungs when its execution
* takes longer than timeout specified for it.
*
* When test will be killed SIG_ALRM will be triggered and
* it'll call this function which kills the test process.
*
* Note: if runner is executed with --in-proc then hung tests
* can't be killed
*
* \param signum
*/
void
KillHungTestInChildProcess(int signum)
{
May 18, 2013
May 18, 2013
767
(void)signum; // keeps the compiler silent about unused variable
May 18, 2013
May 18, 2013
769
exit(TEST_RESULT_KILLED);
770
771
772
773
774
775
776
777
778
779
780
}
/*!
* Checks if given test case can be executed on the current platform.
*
* \param testCase Test to be checked
* \returns 1 if test is runnable, otherwise 0. On error returns -1
*/
int
CheckTestRequirements(TestCase *testCase)
{
May 18, 2013
May 18, 2013
781
int retVal = 1;
May 18, 2013
May 18, 2013
783
784
785
786
if(testCase == NULL) {
fprintf(stderr, "TestCase parameter can't be NULL");
return -1;
}
May 18, 2013
May 18, 2013
788
789
790
if(testCase->requirements & TEST_REQUIRES_AUDIO) {
retVal = PlatformSupportsAudio();
}
May 18, 2013
May 18, 2013
792
793
794
if(testCase->requirements & TEST_REQUIRES_STDIO) {
retVal = PlatformSupportsStdio();
}
May 18, 2013
May 18, 2013
797
return retVal;
798
799
800
801
802
803
804
805
806
807
808
809
810
}
/*
* Execute a test. Loads the test, executes it and
* returns the tests return value to the caller.
*
* \param testItem Test to be executed
* \param test result
*/
int
RunTest(TestCase *testCase, Uint64 execKey)
{
May 18, 2013
May 18, 2013
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
if(!testCase) {
return -1;
}
int runnable = CheckTestRequirements(testCase);
if(runnable != 1) {
return TEST_RESULT_SKIPPED;
}
if(testCase->timeout > 0 || universal_timeout > 0) {
if(execute_inproc) {
Log(time(0), "Test asked for timeout which is not supported.");
}
else {
SetTestTimeout(testCase->timeout, KillHungTestInChildProcess);
}
}
testCase->initTestEnvironment(execKey, execute_inproc);
if(testCase->testSetUp) {
testCase->testSetUp(0x0);
}
int cntFailedAsserts = testCase->countFailedAsserts();
if(cntFailedAsserts != 0) {
return TEST_RESULT_SETUP_FAILURE;
}
testCase->testCase(0x0);
if(testCase->testTearDown) {
testCase->testTearDown(0x0);
}
return testCase->quitTestEnvironment();
847
848
849
850
851
852
853
854
855
856
857
858
859
860
}
/*!
* Sets up a test case. Decideds wheter the test will
* be executed in-proc or out-of-proc.
*
* \param testItem The test case that will be executed
* \param execKey Execution key for the test case
*
* \return The return value of the test. Zero means success, non-zero failure.
*/
int
ExecuteTest(TestCase *testItem, Uint64 execKey) {
May 18, 2013
May 18, 2013
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
int retVal = -1;
if(execute_inproc) {
retVal = RunTest(testItem, execKey);
} else {
int childpid = fork();
if(childpid == 0) {
exit(RunTest(testItem, execKey));
} else {
int stat_lock = -1;
wait(&stat_lock);
retVal = HandleChildProcessReturnValue(stat_lock);
}
}
if(retVal == TEST_RESULT_SKIPPED) {
testSkipCount++;
totalTestSkipCount++;
}
else if(retVal) {
totalTestFailureCount++;
testFailureCount++;
}
else {
totalTestPassCount++;
testPassCount++;
}
// return the value for logger
return retVal;
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
}
/*!
* 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.
*
* \param stat_lock information about the exited child process
*
* \return 0 if test case succeeded, 1 otherwise
*/
int
HandleChildProcessReturnValue(int stat_lock)
{
May 18, 2013
May 18, 2013
908
909
910
911
912
913
914
915
916
917
918
919
int returnValue = -1;
if(WIFEXITED(stat_lock)) {
returnValue = WEXITSTATUS(stat_lock);
} else if(WIFSIGNALED(stat_lock)) {
int signal = WTERMSIG(stat_lock);
// \todo add this to logger (add signal number)
Log(time(0), "FAILURE: test was aborted due to %d\n", signal);
returnValue = 1;
}
return returnValue;
920
921
922
923
924
925
926
927
928
929
930
931
932
933
}
/*!
* Generates a random run seed for the harness. Seed
* can contain characters 0-9A-Z
*
* \param length The length of the generated seed
*
* \returns The generated seed
*/
char *
GenerateRunSeed(const int length)
{
May 18, 2013
May 18, 2013
934
935
936
937
if(length <= 0) {
fprintf(stderr, "Error: length of the harness seed can't be less than zero\n");
return NULL;
}
May 18, 2013
May 18, 2013
939
940
941
942
943
char *seed = SDL_malloc((length + 1) * sizeof(char));
if(seed == NULL) {
fprintf(stderr, "Error: malloc for run seed failed\n");
return NULL;
}
May 18, 2013
May 18, 2013
945
RND_CTX randomContext;
May 18, 2013
May 18, 2013
947
utl_randomInitTime(&randomContext);
May 18, 2013
May 18, 2013
949
950
951
952
int counter = 0;
for( ; counter < length - 1; ++counter) {
int number = abs(utl_random(&randomContext));
char ch = (char) (number % (91 - 48)) + 48;
May 18, 2013
May 18, 2013
954
955
956
if(ch >= 58 && ch <= 64) {
ch = 65;
}
May 18, 2013
May 18, 2013
958
959
seed[counter] = ch;
}
May 18, 2013
May 18, 2013
961
seed[counter] = '\0';
May 18, 2013
May 18, 2013
963
return seed;
964
965
966
967
968
969
970
971
972
}
/*!
* Sets up the logger.
*
* \return Logger data structure (that needs be deallocated)
*/
LoggerData *
SetUpLogger(const int log_stdout_enabled, const int xml_enabled, const int xsl_enabled,
May 18, 2013
May 18, 2013
973
const int custom_xsl_enabled, const char *defaultXslSheet, const time_t timestamp)
May 18, 2013
May 18, 2013
975
976
977
978
979
980
LoggerData *loggerData = SDL_malloc(sizeof(LoggerData));
if(loggerData == NULL) {
fprintf(stderr, "Error: Logger data structure not allocated.");
return NULL;
}
memset(loggerData, 0, sizeof(LoggerData));
May 18, 2013
May 18, 2013
982
loggerData->level = (enable_verbose_logger ? LOGGER_VERBOSE : LOGGER_TERSE);
May 18, 2013
May 18, 2013
984
985
986
987
988
if(log_stdout_enabled == 1) {
loggerData->stdoutEnabled = 1;
loggerData->filename = NULL;
} else {
loggerData->stdoutEnabled = 0;
May 18, 2013
May 18, 2013
990
const char *extension = (xml_enabled ? "xml" : "log");
May 18, 2013
May 18, 2013
992
993
994
// create directory (if it doesn't exist yet)
unsigned int mode = S_IRWXU | S_IRGRP | S_ISUID;
mkdir(log_directory, mode);
May 18, 2013
May 18, 2013
996
char *timeString = TimestampToStringWithFormat(timestamp, "%Y%m%d_%H:%M:%S");
May 18, 2013
May 18, 2013
999
1000
/* Combine and create directory for log file */
const Uint32 directoryLength = SDL_strlen(log_directory);