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