| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253 |
- #include <tools/ccanlint/ccanlint.h>
- #include <tools/tools.h>
- #include <ccan/foreach/foreach.h>
- #include <ccan/str/str.h>
- #include <ccan/tal/str/str.h>
- #include <ccan/cast/cast.h>
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <fcntl.h>
- #include <stdint.h>
- #include <string.h>
- #include <unistd.h>
- #include <ctype.h>
- #include <assert.h>
- static const char *can_run(struct manifest *m)
- {
- struct list_head *list;
- if (safe_mode)
- return "Safe mode enabled";
- foreach_ptr(list, &m->examples, &m->mangled_examples)
- if (!list_empty(list))
- return NULL;
- return "No examples";
- }
- /* Very dumb scanner, allocates %s-strings. */
- static bool scan_forv(const void *ctx,
- const char *input, const char *fmt, va_list *args)
- {
- va_list ap;
- bool ret;
- if (input[0] == '\0' || fmt[0] == '\0')
- return input[0] == fmt[0];
- va_copy(ap, *args);
- if (cisspace(fmt[0])) {
- /* One format space can swallow many input spaces */
- ret = false;
- while (cisspace(input[0])) {
- if (scan_forv(ctx, ++input, fmt+1, &ap)) {
- ret = true;
- break;
- }
- }
- } else if (fmt[0] != '%') {
- if (toupper(input[0]) != toupper(fmt[0]))
- ret = false;
- else
- ret = scan_forv(ctx, input+1, fmt+1, &ap);
- } else {
- char **p = va_arg(ap, char **);
- unsigned int len;
- ret = false;
- assert(fmt[1] == 's');
- for (len = 1; input[len-1]; len++) {
- ret = scan_forv(ctx, input + len, fmt+2, &ap);
- if (ret) {
- *p = tal_strndup(ctx, input, len);
- ret = true;
- break;
- }
- }
- }
- va_end(ap);
- return ret;
- }
- static bool scan_for(const void *ctx, const char *input, const char *fmt, ...)
- {
- bool ret;
- va_list ap;
- va_start(ap, fmt);
- ret = scan_forv(ctx, input, fmt, &ap);
- va_end(ap);
- return ret;
- }
- static char *find_expect(struct ccan_file *file,
- char **lines, char **input,
- bool *contains, bool *whitespace, bool *error,
- unsigned *line)
- {
- char *expect;
- *error = false;
- for (; lines[*line]; (*line)++) {
- char *p = lines[*line] + strspn(lines[*line], " \t");
- if (!strstarts(p, "//"))
- continue;
- p += strspn(p, "/ ");
- /* With or without input? */
- if (strncasecmp(p, "given", strlen("given")) == 0) {
- /* Must be of form <given "X"> */
- if (!scan_for(file, p, "given \"%s\" %s", input, &p)) {
- *error = true;
- return p;
- }
- } else {
- *input = NULL;
- }
- if (scan_for(file, p, "outputs \"%s\"", &expect)) {
- *whitespace = true;
- *contains = false;
- return expect;
- }
- if (scan_for(file, p, "output contains \"%s\"", &expect)) {
- *whitespace = true;
- *contains = true;
- return expect;
- }
- /* Whitespace-ignoring versions. */
- if (scan_for(file, p, "outputs %s", &expect)) {
- *whitespace = false;
- *contains = false;
- return expect;
- }
- if (scan_for(file, p, "output contains %s", &expect)) {
- *whitespace = false;
- *contains = true;
- return expect;
- }
- /* Other malformed line? */
- if (*input || !strncasecmp(p, "output", strlen("output"))) {
- *error = true;
- return p;
- }
- }
- return NULL;
- }
- static char *unexpected(struct ccan_file *i, const char *input,
- const char *expect, bool contains, bool whitespace)
- {
- char *output, *cmd;
- const char *p;
- bool ok;
- unsigned int default_time = default_timeout_ms;
- if (input)
- cmd = tal_fmt(i, "echo '%s' | %s %s",
- input, i->compiled[COMPILE_NORMAL], input);
- else
- cmd = tal_fmt(i, "%s", i->compiled[COMPILE_NORMAL]);
- output = run_with_timeout(i, cmd, &ok, &default_time);
- if (!ok)
- return tal_fmt(i, "Exited with non-zero status\n");
- /* Substitute \n */
- while ((p = strstr(expect, "\\n")) != NULL) {
- expect = tal_fmt(cmd, "%.*s\n%s", (int)(p - expect), expect,
- p+2);
- }
- if (!whitespace) {
- /* Normalize to spaces. */
- expect = tal_strjoin(cmd,
- tal_strsplit(cmd, expect, " \n\t",
- STR_NO_EMPTY),
- " ", STR_NO_TRAIL);
- output = tal_strjoin(cmd,
- tal_strsplit(cmd, output, " \n\t",
- STR_NO_EMPTY),
- " ", STR_NO_TRAIL);
- }
- if (contains) {
- if (strstr(output, expect))
- return NULL;
- } else {
- if (streq(output, expect))
- return NULL;
- }
- return output;
- }
- static void run_examples(struct manifest *m,
- unsigned int *timeleft UNNEEDED, struct score *score)
- {
- struct ccan_file *i;
- struct list_head *list;
- score->total = 0;
- score->pass = true;
- foreach_ptr(list, &m->examples, &m->mangled_examples) {
- list_for_each(list, i, list) {
- char **lines, *expect, *input, *output;
- unsigned int linenum = 0;
- bool contains, whitespace, error;
- lines = get_ccan_file_lines(i);
- for (expect = find_expect(i, lines, &input,
- &contains, &whitespace, &error,
- &linenum);
- expect;
- linenum++,
- expect = find_expect(i, lines, &input,
- &contains, &whitespace,
- &error, &linenum)) {
- if (error) {
- score_file_error(score, i, linenum+1,
- "Unparsable test line '%s'",
- lines[linenum]);
- score->pass = false;
- break;
- }
- if (i->compiled[COMPILE_NORMAL] == NULL)
- continue;
- score->total++;
- output = unexpected(i, input, expect,
- contains, whitespace);
- if (!output) {
- score->score++;
- continue;
- }
- score_file_error(score, i, linenum+1,
- "output '%s' didn't %s '%s'\n",
- output,
- contains ? "contain" : "match",
- expect);
- score->pass = false;
- }
- }
- }
- }
- /* FIXME: Test with reduced features, valgrind! */
- struct ccanlint examples_run = {
- .key = "examples_run",
- .name = "Module examples with expected output give that output",
- .check = run_examples,
- .can_run = can_run,
- .needs = "examples_compile"
- };
- REGISTER_TEST(examples_run);
|