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