]> git.ozlabs.org Git - ccan/blob - tools/ccanlint/tests/depends_exist.c
ccanlint: get rid of separate class of compulsory tests.
[ccan] / tools / ccanlint / tests / depends_exist.c
1 #include <tools/ccanlint/ccanlint.h>
2 #include <tools/tools.h>
3 #include <ccan/talloc/talloc.h>
4 #include <ccan/str/str.h>
5 #include <sys/types.h>
6 #include <sys/stat.h>
7 #include <fcntl.h>
8 #include <unistd.h>
9 #include <limits.h>
10 #include <errno.h>
11 #include <stdlib.h>
12 #include <stdio.h>
13 #include <err.h>
14 #include <string.h>
15 #include <ctype.h>
16
17 static bool add_dep(struct manifest *m, const char *dep, struct score *score)
18 {
19         struct stat st;
20         struct manifest *subm;
21         char *dir = talloc_asprintf(m, "%s/%s", ccan_dir, dep);
22
23         /* FIXME: get_manifest has a tendency to exit. */
24         if (stat(dir, &st) != 0) {
25                 score->error
26                         = talloc_asprintf(m,
27                                           "Could not stat dependency %s: %s",
28                                           dir, strerror(errno));
29                 return false;
30         }
31         subm = get_manifest(m, dir);
32         list_add_tail(&m->deps, &subm->list);
33         return true;
34 }
35
36 /* FIXME: check this is still true once we reduce features. */
37 static void check_depends_exist(struct manifest *m,
38                                 bool keep,
39                                 unsigned int *timeleft, struct score *score)
40 {
41         unsigned int i;
42         char **deps;
43         char *updir = talloc_strdup(m, m->dir);
44         bool needs_tap;
45
46         if (strrchr(updir, '/'))
47                 *strrchr(updir, '/') = '\0';
48
49         /* We may need libtap for testing, unless we're "tap" */
50         if (streq(m->basename, "tap")) {
51                 needs_tap = false;
52         } else if (list_empty(&m->run_tests) && list_empty(&m->api_tests)) {
53                 needs_tap = false;
54         } else {
55                 needs_tap = true;
56         }
57
58         if (safe_mode)
59                 deps = get_safe_ccan_deps(m, m->dir, true);
60         else
61                 deps = get_deps(m, m->dir, true,
62                                 &m->info_file->compiled[COMPILE_NORMAL]);
63
64         for (i = 0; deps[i]; i++) {
65                 if (!strstarts(deps[i], "ccan/"))
66                         continue;
67
68                 if (!add_dep(m, deps[i], score))
69                         return;
70
71                 if (streq(deps[i], "ccan/tap")) {
72                         needs_tap = false;
73                 }
74         }
75
76         if (needs_tap && !add_dep(m, "ccan/tap", score)) {
77                 return;
78         }
79
80         score->pass = true;
81         score->score = score->total;
82 }
83
84 struct ccanlint depends_exist = {
85         .key = "depends_exist",
86         .name = "Module's CCAN dependencies can be found",
87         .compulsory = true,
88         .check = check_depends_exist,
89         .needs = "info_exists"
90 };
91
92 REGISTER_TEST(depends_exist);