]> git.ozlabs.org Git - ccan/blob - tools/run_tests.c
aa7f90a9765e4283cbd1439526e653df8090a123
[ccan] / tools / run_tests.c
1 #include <err.h>
2 #include <stdio.h>
3 #include <sys/types.h>
4 #include <dirent.h>
5 #include <assert.h>
6 #include <unistd.h>
7 #include "ccan/tap/tap.h"
8 #include "ccan/talloc/talloc.h"
9 #include "ccan/string/string.h"
10 #include "tools.h"
11
12 /* FIXME: Use build bug later. */
13 #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
14
15 static struct test *tests = NULL;
16 static struct obj *objs = NULL;
17 static int verbose;
18
19 struct test_type
20 {
21         const char *name;
22         void (*testfn)(struct test_type *t, const char *name);
23 };
24
25 struct test
26 {
27         struct test *next;
28         struct test_type *type;
29         char *name;
30 };
31
32 struct obj
33 {
34         struct obj *next;
35         char *name;
36 };
37
38 static char *output_name(const char *name)
39 {
40         char *ret;
41
42         assert(strends(name, ".c"));
43
44         ret = talloc_strdup(name, name);
45         ret[strlen(ret) - 2] = '\0';
46         return ret;
47 }
48
49 static char *obj_list(void)
50 {
51         char *list = talloc_strdup(objs, "");
52         struct obj *i;
53
54         for (i = objs; i; i = i->next)
55                 list = talloc_asprintf_append(list, "%s ", i->name);
56
57         /* FIXME */
58         list = talloc_asprintf_append(list, "ccan/tap/tap.o");
59         return list;
60 }
61
62 static void compile_objs(void)
63 {
64         struct obj *i;
65
66         for (i = objs; i; i = i->next) {
67                 char *cmd = talloc_asprintf(i, "gcc " CFLAGS " -o %s.o -c %s%s",
68                                             output_name(i->name), i->name,
69                                             verbose ? "" : "> /dev/null 2>&1");
70                 ok(system(cmd) == 0, "%s", cmd);
71         }
72 }
73
74 static void cleanup_objs(void)
75 {
76         struct obj *i;
77
78         for (i = objs; i; i = i->next)
79                 unlink(talloc_asprintf(i, "%s.o", output_name(i->name)));
80 }
81
82 static void add_test(const char *testdir, const char *name, struct test_type *t)
83 {
84         struct test *test = talloc(testdir, struct test);
85
86         test->next = tests;
87         test->type = t;
88         test->name = talloc_asprintf(test, "%s/%s", testdir, name);
89         tests = test;
90 }
91
92 static void add_obj(const char *testdir, const char *name)
93 {
94         struct obj *obj = talloc(testdir, struct obj);
95
96         obj->next = objs;
97         obj->name = talloc_asprintf(obj, "%s/%s", testdir, name);
98         objs = obj;
99 }
100
101 static int build(const char *name, int fail)
102 {
103         const char *cmd;
104         int ret;
105
106         cmd = talloc_asprintf(name, "gcc " CFLAGS " %s -o %s %s %s%s",
107                               fail ? "-DFAIL" : "",
108                               output_name(name), name, obj_list(),
109                               verbose ? "" : "> /dev/null 2>&1");
110
111         if (verbose)
112                 fprintf(stderr, "Running %s\n", cmd);
113
114         ret = system(cmd);
115         if (ret == -1)
116                 diag("cmd '%s' failed to execute", cmd);
117
118         return ret;
119 }
120
121 static void compile_ok(struct test_type *t, const char *name)
122 {
123         ok(build(name, 0) == 0, "%s %s", t->name, name);
124 }
125
126 static void compile_fail(struct test_type *t, const char *name)
127 {
128         if (build(name, 0) != 0)
129                 fail("non-FAIL build %s", name);
130         else
131                 ok(build(name, 1) > 0, "%s %s", t->name, name);
132 }
133
134 static void run(const char *name)
135 {
136         if (system(output_name(name)) == -1)
137                 fail("running %s had error %m", name);
138 }
139
140 static void cleanup(const char *name)
141 {
142         unlink(output_name(name));
143 }
144
145 static struct test_type test_types[] = {
146         { "compile_ok", compile_ok },
147         { "compile_fail", compile_fail },
148         { "run", compile_ok },
149 };
150
151 int main(int argc, char *argv[])
152 {
153         DIR *dir;
154         struct dirent *d;
155         char *testdir;
156         struct test *test;
157         unsigned int num_tests = 0, num_objs = 0;
158
159         if (argc > 1 && streq(argv[1], "--verbose")) {
160                 verbose = 1;
161                 argc--;
162                 argv++;
163         }
164
165         if (argc != 2)
166                 errx(1, "Usage: run_tests [--verbose] <dir>");
167
168         testdir = talloc_asprintf(NULL, "%s/test", argv[1]);
169         dir = opendir(testdir);
170         if (!dir)
171                 err(1, "Opening '%s'", testdir);
172
173         while ((d = readdir(dir)) != NULL) {
174                 unsigned int i;
175                 if (d->d_name[0] == '.' || !strends(d->d_name, ".c"))
176                         continue;
177
178                 for (i = 0; i < ARRAY_SIZE(test_types); i++) {
179                         if (strstarts(d->d_name, test_types[i].name)) {
180                                 add_test(testdir, d->d_name, &test_types[i]);
181                                 num_tests++;
182                                 break;
183                         }
184                 }
185                 if (i == ARRAY_SIZE(test_types)) {
186                         add_obj(testdir, d->d_name);
187                         num_objs++;
188                 }
189         }
190
191         plan_tests(num_tests + num_objs);
192         /* First all the extra object compilations. */
193         compile_objs();
194
195         /* Do all the test compilations. */
196         for (test = tests; test; test = test->next)
197                 test->type->testfn(test->type, test->name);
198
199         cleanup_objs();
200
201         /* Now run all the ones which wanted to run. */
202         for (test = tests; test; test = test->next) {
203                 if (streq(test->type->name, "run"))
204                         run(test->name);
205                 cleanup(test->name);
206         }
207
208         exit(exit_status());
209 }