cb387fd198aa95dbab85e88fb5f30ca1ee5a935c
[mono.git] / eglib / test / test.c
1 /*
2  * EGLib Unit Group/Test Runners
3  *
4  * Author:
5  *   Aaron Bockover (abockover@novell.com)
6  *
7  * (C) 2006 Novell, Inc.
8  *
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:
16  *
17  * The above copyright notice and this permission notice shall be
18  * included in all copies or substantial portions of the Software.
19  *
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.
27  */
28
29 #define _GNU_SOURCE
30 #include <stdlib.h>
31 #include <stdio.h>
32 #include <stdarg.h>
33 #include <glib.h>
34
35 #include "test.h"
36
37 static gchar *last_result = NULL;
38
39 void 
40 run_test(Test *test)
41 {
42         gchar *result; 
43         printf("  %s: ", test->name);
44         fflush(stdout);
45         if((result = test->handler()) == NULL) {
46                 printf("OK\n");
47         } else {
48                 printf("FAILED (%s)\n", result);
49                 if(last_result == result) {
50                         last_result = NULL;
51                         g_free(result);
52                 }
53         }
54 }
55
56 void
57 run_group(Group *group)
58 {
59         Test *tests = group->handler();
60         gint i;
61         
62         printf("[%s]\n", group->name);
63
64         for(i = 0; tests[i].name != NULL; i++) {
65                 run_test(&(tests[i]));
66         }
67 }
68
69 gchar *
70 result(const gchar *format, ...)
71 {
72         gchar *ret;
73         va_list args;
74         gint n;
75
76         va_start(args, format);
77         n = vasprintf(&ret, format, args);
78         va_end(args);
79
80         if(n == -1) {
81                 last_result = NULL;
82                 return NULL;
83         }
84
85         last_result = ret;
86         return ret;
87 }
88