2 * EGLib Unit Test Driver
5 * Aaron Bockover (abockover@novell.com)
7 * (C) 2006 Novell, Inc.
9 * Permission is hereby granted, free of charge, to any person obtaining
10 * a copy of this software and associated documentation files (the
11 * "Software"), to deal in the Software without restriction, including
12 * without limitation the rights to use, copy, modify, merge, publish,
13 * distribute, sublicense, and/or sell copies of the Software, and to
14 * permit persons to whom the Software is furnished to do so, subject to
15 * the following conditions:
17 * The above copyright notice and this permission notice shall be
18 * included in all copies or substantial portions of the Software.
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32 #ifndef DRIVER_EXTERNAL_TESTS
41 #if defined(HAVE_UNISTD_H)
46 #define DRIVER_NAME "EGlib"
49 typedef struct _StringArray
{
55 string_array_append(StringArray
*array
, gchar
*string
)
58 array
= g_new0(StringArray
, 1);
60 array
->strings
= g_malloc(sizeof(gchar
*) * 2);
63 array
->strings
= g_realloc(array
->strings
, sizeof(gchar
*)
64 * (array
->length
+ 1));
67 array
->strings
[array
->length
- 1] = string
;
68 array
->strings
[array
->length
] = NULL
;
73 gint global_passed
= 0, global_tests
= 0;
76 string_array_free(StringArray
*array
)
78 g_free(array
->strings
);
82 static void print_help(char *s
)
86 printf("Usage: %s [OPTION]... [TESTGROUP]...\n\n", s
);
87 printf("OPTIONS are:\n");
88 printf(" -h, --help show this help\n");
89 printf(" -t, --time time the tests\n");
90 printf(" -i, --iterations number of times to run tests\n");
91 printf(" -q, --quiet do not print test results; "
92 "final time always prints\n");
93 printf(" -n, --no-labels print final time without labels, "
94 "nice for scripts\n");
95 printf(" -d, --debug do not run tests, "
96 "debug the driver itself for valgrind\n\n");
97 printf("TESTGROUPS available:\n");
99 for(i
= 0; test_groups
[i
].name
!= NULL
; i
++) {
100 if(test_groups
[i
].handler
!= fake_tests_init
) {
101 printf(" %s\n", test_groups
[i
].name
);
108 #ifdef DRIVER_EXTERNAL_MAIN
109 gint
run_tests_main(gint argc
, gchar
**argv
)
111 gint
main(gint argc
, gchar
**argv
)
114 gint i
, j
, c
, iterations
= 1;
115 StringArray
*tests_to_run
= NULL
;
117 gboolean report_time
= FALSE
;
118 gboolean quiet
= FALSE
;
119 gboolean global_failure
= FALSE
;
120 gboolean no_final_time_labels
= FALSE
;
121 gboolean debug
= FALSE
;
124 static struct option long_options
[] = {
125 {"help", no_argument
, 0, 'h'},
126 {"time", no_argument
, 0, 't'},
127 {"quiet", no_argument
, 0, 'q'},
128 {"iterations", required_argument
, 0, 'i'},
129 {"debug", no_argument
, 0, 'd'},
130 {"no-labels", no_argument
, 0, 'n'},
134 while((c
= getopt_long(argc
, argv
, "dhtqni:", long_options
, NULL
)) != -1) { switch(c
) {
142 iterations
= atoi(optarg
);
148 no_final_time_labels
= TRUE
;
156 for(i
= optind
; i
< argc
; i
++) {
157 if(argv
[i
][0] == '-') {
161 tests_to_run
= string_array_append(tests_to_run
, argv
[i
]);
165 time_start
= get_timestamp();
167 for(j
= 0; test_groups
[j
].name
!= NULL
; j
++) {
172 if(tests_to_run
!= NULL
) {
176 for(k
= 0; k
< tests_to_run
->length
; k
++) {
177 gchar
*user
= tests_to_run
->strings
[k
];
178 const gchar
*table
= test_groups
[j
].name
;
179 size_t user_len
= strlen(user
);
180 size_t table_len
= strlen(table
);
182 if(strncmp(user
, table
, table_len
) == 0) {
183 if(user_len
> table_len
&& user
[table_len
] != ':') {
188 group
= tests_to_run
->strings
[k
];
196 gchar
**split
= NULL
;
198 if(debug
&& test_groups
[j
].handler
!= fake_tests_init
) {
199 printf("Skipping %s, in driver debug mode\n",
200 test_groups
[j
].name
);
202 } else if(!debug
&& test_groups
[j
].handler
== fake_tests_init
) {
207 split
= eg_strsplit(group
, ":", -1);
210 for(m
= 0; split
[m
] != NULL
; m
++) {
212 tests
= strdup(split
[m
]);
220 passed
= run_group(&(test_groups
[j
]),
221 iterations
, quiet
, report_time
, tests
);
227 if(!passed
&& !global_failure
) {
228 global_failure
= TRUE
;
234 gdouble pass_percentage
= ((gdouble
)global_passed
/ (gdouble
)global_tests
) * 100.0;
235 printf("=============================\n");
236 printf("Overall result: %s : %d / %d (%g%%)\n", global_failure
? "FAILED" : "OK", global_passed
, global_tests
, pass_percentage
);
240 gdouble duration
= get_timestamp() - time_start
;
241 if(no_final_time_labels
) {
242 printf("%g\n", duration
);
244 printf("%s Total Time: %g\n", DRIVER_NAME
, duration
);
248 if(tests_to_run
!= NULL
) {
249 string_array_free(tests_to_run
);
252 return global_tests
- global_passed
;