]> git.xonotic.org Git - xonotic/gmqcc.git/blob - test.c
A Makefile for BSD make.
[xonotic/gmqcc.git] / test.c
1 /*
2  * Copyright (C) 2012, 2013
3  *     Dale Weiler
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a copy of
6  * this software and associated documentation files (the "Software"), to deal in
7  * the Software without restriction, including without limitation the rights to
8  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
9  * of the Software, and to permit persons to whom the Software is furnished to do
10  * so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in all
13  * copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21  * SOFTWARE.
22  */
23 #include <stdlib.h>
24 #include <string.h>
25 #include <sys/types.h>
26 #include <sys/stat.h>
27
28 #include "gmqcc.h"
29
30 opts_cmd_t opts;
31
32 static const char *task_bins[] = {
33     "./gmqcc",
34     "./qcvm"
35 };
36
37 /*
38  * TODO: Windows version
39  * this implements a unique bi-directional popen-like function that
40  * allows reading data from both stdout and stderr. And writing to
41  * stdin :)
42  *
43  * Example of use:
44  * FILE *handles[3] = task_popen("ls", "-l", "r");
45  * if (!handles) { perror("failed to open stdin/stdout/stderr to ls");
46  * // handles[0] = stdin
47  * // handles[1] = stdout
48  * // handles[2] = stderr
49  *
50  * task_pclose(handles); // to close
51  */
52 #ifndef _WIN32
53 #include <sys/types.h>
54 #include <sys/wait.h>
55 #include <dirent.h>
56 #include <unistd.h>
57 typedef struct {
58     FILE *handles[3];
59     int   pipes  [3];
60
61     int stderr_fd;
62     int stdout_fd;
63     int pid;
64 } popen_t;
65
66 static FILE ** task_popen(const char *command, const char *mode) {
67     int     inhandle  [2];
68     int     outhandle [2];
69     int     errhandle [2];
70     int     trypipe;
71
72     popen_t *data = (popen_t*)mem_a(sizeof(popen_t));
73
74     /*
75      * Parse the command now into a list for execv, this is a pain
76      * in the ass.
77      */
78     char  *line = (char*)command;
79     char **argv = NULL;
80     {
81
82         while (*line != '\0') {
83             while (*line == ' ' || *line == '\t' || *line == '\n')
84                 *line++ = '\0';
85             vec_push(argv, line);
86
87             while (*line != '\0' && *line != ' ' &&
88                    *line != '\t' && *line != '\n') line++;
89         }
90         vec_push(argv, '\0');
91     }
92
93
94     if ((trypipe = pipe(inhandle))  < 0) goto task_popen_error_0;
95     if ((trypipe = pipe(outhandle)) < 0) goto task_popen_error_1;
96     if ((trypipe = pipe(errhandle)) < 0) goto task_popen_error_2;
97
98     if ((data->pid = fork()) > 0) {
99         /* parent */
100         close(inhandle  [0]);
101         close(outhandle [1]);
102         close(errhandle [1]);
103
104         data->pipes  [0] = inhandle [1];
105         data->pipes  [1] = outhandle[0];
106         data->pipes  [2] = errhandle[0];
107         data->handles[0] = fdopen(inhandle [1], "w");
108         data->handles[1] = fdopen(outhandle[0], mode);
109         data->handles[2] = fdopen(errhandle[0], mode);
110
111         /* sigh */
112         if (argv)
113             vec_free(argv);
114         return data->handles;
115     } else if (data->pid == 0) {
116         /* child */
117         close(inhandle [1]);
118         close(outhandle[0]);
119         close(errhandle[0]);
120
121         /* see piping documentation for this sillyness :P */
122         close(0); (void)!dup(inhandle [0]);
123         close(1); (void)!dup(outhandle[1]);
124         close(2); (void)!dup(errhandle[1]);
125
126         execvp(*argv, argv);
127         exit(EXIT_FAILURE);
128     } else {
129         /* fork failed */
130         goto task_popen_error_3;
131     }
132
133 task_popen_error_3: close(errhandle[0]), close(errhandle[1]);
134 task_popen_error_2: close(outhandle[0]), close(outhandle[1]);
135 task_popen_error_1: close(inhandle [0]), close(inhandle [1]);
136 task_popen_error_0:
137
138     if (argv)
139         vec_free(argv);
140     return NULL;
141 }
142
143 static int task_pclose(FILE **handles) {
144     popen_t *data   = (popen_t*)handles;
145     int      status = 0;
146
147     close(data->pipes[0]); /* stdin  */
148     close(data->pipes[1]); /* stdout */
149     close(data->pipes[2]); /* stderr */
150
151     waitpid(data->pid, &status, 0);
152
153     mem_d(data);
154
155     return status;
156 }
157 #else
158     typedef struct {
159         FILE *handles[3];
160         char  name_err[L_tmpnam];
161         char  name_out[L_tmpnam];
162     } popen_t;
163
164     static FILE **task_popen(const char *command, const char *mode) {
165         char    *cmd  = NULL;
166         popen_t *open = (popen_t*)mem_a(sizeof(popen_t));
167
168         tmpnam(open->name_err);
169         tmpnam(open->name_out);
170
171         (void)mode; /* excluded */
172
173         util_asprintf(&cmd, "%s -redirout=%s -redirerr=%s", command, open->name_out, open->name_err);
174
175         system(cmd); /* HACK */
176         open->handles[0] = NULL;
177         open->handles[1] = fs_file_open(open->name_out, "r");
178         open->handles[2] = fs_file_open(open->name_err, "r");
179
180         mem_d(cmd);
181
182         return open->handles;
183     }
184
185     static void task_pclose(FILE **files) {
186         popen_t *open = ((popen_t*)files);
187         fs_file_close(files[1]);
188         fs_file_close(files[2]);
189         remove(open->name_err);
190         remove(open->name_out);
191
192         mem_d(open);
193     }
194 #endif /*! _WIN32 */
195
196 #define TASK_COMPILE    0
197 #define TASK_EXECUTE    1
198 /*
199  * Task template system:
200  *  templates are rules for a specific test, used to create a "task" that
201  *  is executed with those set of rules (arguments, and what not). Tests
202  *  that don't have a template with them cannot become tasks, since without
203  *  the information for that test there is no way to properly "test" them.
204  *  Rules for these templates are described in a template file, using a
205  *  task template language.
206  *
207  *  The language is a basic finite statemachine, top-down single-line
208  *  description language.
209  *
210  *  The languge is composed entierly of "tags" which describe a string of
211  *  text for a task.  Think of it much like a configuration file.  Except
212  *  it's been designed to allow flexibility and future support for prodecual
213  *  semantics.
214  *
215  *  The following "tags" are suported by the language
216  *
217  *      D:
218  *          Used to set a description of the current test, this must be
219  *          provided, this tag is NOT optional.
220  *
221  *      T:
222  *          Used to set the procedure for the given task, there are two
223  *          options for this:
224  *              -compile
225  *                  This simply performs compilation only
226  *              -execute
227  *                  This will perform compilation and execution
228  *              -fail
229  *                  This will perform compilation, but requires
230  *                  the compilation to fail in order to succeed.
231  *
232  *          This must be provided, this tag is NOT optional.
233  *
234  *      C:
235  *          Used to set the compilation flags for the given task, this
236  *          must be provided, this tag is NOT optional.
237  *
238  *      F:  Used to set some test suite flags, currently the only option
239  *          is -no-defs (to including of defs.qh)
240  *
241  *      E:
242  *          Used to set the execution flags for the given task. This tag
243  *          must be provided if T == -execute, otherwise it's erroneous
244  *          as compilation only takes place.
245  *
246  *      M:
247  *          Used to describe a string of text that should be matched from
248  *          the output of executing the task.  If this doesn't match the
249  *          task fails.  This tag must be provided if T == -execute, otherwise
250  *          it's erroneous as compilation only takes place.
251  *
252  *      I:
253  *          Used to specify the INPUT source file to operate on, this must be
254  *          provided, this tag is NOT optional
255  *
256  *
257  *  Notes:
258  *      These tags have one-time use, using them more than once will result
259  *      in template compilation errors.
260  *
261  *      Lines beginning with # or // in the template file are comments and
262  *      are ignored by the template parser.
263  *
264  *      Whitespace is optional, with exception to the colon ':' between the
265  *      tag and it's assignment value/
266  *
267  *      The template compiler will detect erronrous tags (optional tags
268  *      that need not be set), as well as missing tags, and error accordingly
269  *      this will result in the task failing.
270  */
271 typedef struct {
272     char  *description;
273     char  *compileflags;
274     char  *executeflags;
275     char  *proceduretype;
276     char  *sourcefile;
277     char  *tempfilename;
278     char **comparematch;
279     char  *rulesfile;
280     char  *testflags;
281 } task_template_t;
282
283 /*
284  * This is very much like a compiler code generator :-).  This generates
285  * a value from some data observed from the compiler.
286  */
287 static bool task_template_generate(task_template_t *tmpl, char tag, const char *file, size_t line, char *value, size_t *pad) {
288     size_t desclen = 0;
289     size_t filelen = 0;
290     char **destval = NULL;
291
292     if (!tmpl)
293         return false;
294
295     switch(tag) {
296         case 'D': destval = &tmpl->description;    break;
297         case 'T': destval = &tmpl->proceduretype;  break;
298         case 'C': destval = &tmpl->compileflags;   break;
299         case 'E': destval = &tmpl->executeflags;   break;
300         case 'I': destval = &tmpl->sourcefile;     break;
301         case 'F': destval = &tmpl->testflags;      break;
302         default:
303             con_printmsg(LVL_ERROR, __FILE__, __LINE__, 0, "internal error",
304                 "invalid tag `%c:` during code generation\n",
305                 tag
306             );
307             return false;
308     }
309
310     /*
311      * Ensure if for the given tag, there already exists a
312      * assigned value.
313      */
314     if (*destval) {
315         con_printmsg(LVL_ERROR, file, line, 0, /*TODO: column for match*/ "compile error",
316             "tag `%c:` already assigned value: %s\n",
317             tag, *destval
318         );
319         return false;
320     }
321
322     /*
323      * Strip any whitespace that might exist in the value for assignments
324      * like "D:      foo"
325      */
326     if (value && *value && (*value == ' ' || *value == '\t'))
327         value++;
328
329     /*
330      * Value will contain a newline character at the end, we need to strip
331      * this otherwise kaboom, seriously, kaboom :P
332      */
333     if (strchr(value, '\n'))
334         *strrchr(value, '\n')='\0';
335     else /* cppcheck: possible nullpointer dereference */
336         exit(EXIT_FAILURE);
337
338     /*
339      * Now allocate and set the actual value for the specific tag. Which
340      * was properly selected and can be accessed with *destval.
341      */
342     *destval = util_strdup(value);
343
344
345     if (*destval == tmpl->description) {
346         /*
347          * Create some padding for the description to align the
348          * printing of the rules file.
349          */
350         if ((desclen = strlen(tmpl->description)) > pad[0])
351             pad[0] = desclen;
352     }
353
354     if ((filelen = strlen(file)) > pad[2])
355         pad[2] = filelen;
356
357     return true;
358 }
359
360 static bool task_template_parse(const char *file, task_template_t *tmpl, FILE *fp, size_t *pad) {
361     char  *data = NULL;
362     char  *back = NULL;
363     size_t size = 0;
364     size_t line = 1;
365
366     if (!tmpl)
367         return false;
368
369     /* top down parsing */
370     while (fs_file_getline(&back, &size, fp) != EOF) {
371         /* skip whitespace */
372         data = back;
373         if (*data && (*data == ' ' || *data == '\t'))
374             data++;
375
376         switch (*data) {
377             /*
378              * Handle comments inside task tmpl files.  We're strict
379              * about the language for fun :-)
380              */
381             case '/':
382                 if (data[1] != '/') {
383                     con_printmsg(LVL_ERROR, file, line, 0, /*TODO: column for match*/ "tmpl parse error",
384                         "invalid character `/`, perhaps you meant `//` ?");
385
386                     mem_d(back);
387                     return false;
388                 }
389             case '#':
390                 break;
391
392             /*
393              * Empty newlines are acceptable as well, so we handle that here
394              * despite being just odd since there should't be that many
395              * empty lines to begin with.
396              */
397             case '\r':
398             case '\n':
399                 break;
400
401
402             /*
403              * Now begin the actual "tag" stuff.  This works as you expect
404              * it to.
405              */
406             case 'D':
407             case 'T':
408             case 'C':
409             case 'E':
410             case 'I':
411             case 'F':
412                 if (data[1] != ':') {
413                     con_printmsg(LVL_ERROR, file, line, 0, /*TODO: column for match*/ "tmpl parse error",
414                         "expected `:` after `%c`",
415                         *data
416                     );
417                     goto failure;
418                 }
419                 if (!task_template_generate(tmpl, *data, file, line, &data[3], pad)) {
420                     con_printmsg(LVL_ERROR, file, line, 0, /*TODO: column for match*/ "tmpl compile error",
421                         "failed to generate for given task\n"
422                     );
423                     goto failure;
424                 }
425                 break;
426
427             /*
428              * Match requires it's own system since we allow multiple M's
429              * for multi-line matching.
430              */
431             case 'M':
432             {
433                 char *value = &data[3];
434                 if (data[1] != ':') {
435                     con_printmsg(LVL_ERROR, file, line, 0, /*TODO: column for match*/ "tmpl parse error",
436                         "expected `:` after `%c`",
437                         *data
438                     );
439                     goto failure;
440                 }
441
442                 if (value && *value && (*value == ' ' || *value == '\t'))
443                     value++;
444
445                 /*
446                  * Value will contain a newline character at the end, we need to strip
447                  * this otherwise kaboom, seriously, kaboom :P
448                  */
449                 if (strrchr(value, '\n'))
450                     *strrchr(value, '\n')='\0';
451                 else /* cppcheck: possible null pointer dereference */
452                     exit(EXIT_FAILURE);
453
454                 vec_push(tmpl->comparematch, util_strdup(value));
455
456                 break;
457             }
458
459             default:
460                 con_printmsg(LVL_ERROR, file, line, 0, /*TODO: column for match*/ "tmpl parse error",
461                     "invalid tag `%c`", *data
462                 );
463                 goto failure;
464             /* no break required */
465         }
466
467         /* update line and free old sata */
468         line++;
469         mem_d(back);
470         back = NULL;
471     }
472     if (back)
473         mem_d(back);
474     return true;
475
476 failure:
477     if (back)
478         mem_d (back);
479     return false;
480 }
481
482 /*
483  * Nullifies the template data: used during initialization of a new
484  * template and free.
485  */
486 static void task_template_nullify(task_template_t *tmpl) {
487     if (!tmpl)
488         return;
489
490     tmpl->description    = NULL;
491     tmpl->proceduretype  = NULL;
492     tmpl->compileflags   = NULL;
493     tmpl->executeflags   = NULL;
494     tmpl->comparematch   = NULL;
495     tmpl->sourcefile     = NULL;
496     tmpl->tempfilename   = NULL;
497     tmpl->rulesfile      = NULL;
498     tmpl->testflags      = NULL;
499 }
500
501 static task_template_t *task_template_compile(const char *file, const char *dir, size_t *pad) {
502     /* a page should be enough */
503     char             fullfile[4096];
504     size_t           filepadd = 0;
505     FILE            *tempfile = NULL;
506     task_template_t *tmpl     = NULL;
507
508     util_snprintf(fullfile,    sizeof(fullfile), "%s/%s", dir, file);
509
510     tempfile = fs_file_open(fullfile, "r");
511     tmpl     = (task_template_t*)mem_a(sizeof(task_template_t));
512     task_template_nullify(tmpl);
513
514     /*
515      * Create some padding for the printing to align the
516      * printing of the rules file to the console.
517      */
518     if ((filepadd = strlen(fullfile)) > pad[1])
519         pad[1] = filepadd;
520
521     tmpl->rulesfile = util_strdup(fullfile);
522
523     /*
524      * Esnure the file even exists for the task, this is pretty useless
525      * to even do.
526      */
527     if (!tempfile) {
528         con_err("template file: %s does not exist or invalid permissions\n",
529             file
530         );
531         goto failure;
532     }
533
534     if (!task_template_parse(file, tmpl, tempfile, pad)) {
535         con_err("template parse error: error during parsing\n");
536         goto failure;
537     }
538
539     /*
540      * Regardless procedure type, the following tags must exist:
541      *  D
542      *  T
543      *  C
544      *  I
545      */
546     if (!tmpl->description) {
547         con_err("template compile error: %s missing `D:` tag\n", file);
548         goto failure;
549     }
550     if (!tmpl->proceduretype) {
551         con_err("template compile error: %s missing `T:` tag\n", file);
552         goto failure;
553     }
554     if (!tmpl->compileflags) {
555         con_err("template compile error: %s missing `C:` tag\n", file);
556         goto failure;
557     }
558     if (!tmpl->sourcefile) {
559         con_err("template compile error: %s missing `I:` tag\n", file);
560         goto failure;
561     }
562
563     /*
564      * Now lets compile the template, compilation is really just
565      * the process of validating the input.
566      */
567     if (!strcmp(tmpl->proceduretype, "-compile")) {
568         if (tmpl->executeflags)
569             con_err("template compile warning: %s erroneous tag `E:` when only compiling\n", file);
570         if (tmpl->comparematch)
571             con_err("template compile warning: %s erroneous tag `M:` when only compiling\n", file);
572         goto success;
573     } else if (!strcmp(tmpl->proceduretype, "-execute")) {
574         if (!tmpl->executeflags) {
575             /* default to $null */
576             tmpl->executeflags = util_strdup("$null");
577         }
578         if (!tmpl->comparematch) {
579             con_err("template compile error: %s missing `M:` tag (use `$null` for exclude)\n", file);
580             goto failure;
581         }
582     } else if (!strcmp(tmpl->proceduretype, "-fail")) {
583         if (tmpl->executeflags)
584             con_err("template compile warning: %s erroneous tag `E:` when only failing\n", file);
585         if (tmpl->comparematch)
586             con_err("template compile warning: %s erroneous tag `M:` when only failing\n", file);
587     } else if (!strcmp(tmpl->proceduretype, "-pp")) {
588         if (tmpl->executeflags)
589             con_err("template compile warning: %s erroneous tag `E:` when only preprocessing\n", file);
590         if (!tmpl->comparematch) {
591             con_err("template compile error: %s missing `M:` tag (use `$null` for exclude)\n", file);
592             goto failure;
593         }
594     } else {
595         con_err("template compile error: %s invalid procedure type: %s\n", file, tmpl->proceduretype);
596         goto failure;
597     }
598
599 success:
600     fs_file_close(tempfile);
601     return tmpl;
602
603 failure:
604     /*
605      * The file might not exist and we jump here when that doesn't happen
606      * so the check to see if it's not null here is required.
607      */
608     if (tempfile)
609         fs_file_close(tempfile);
610     mem_d (tmpl);
611
612     return NULL;
613 }
614
615 static void task_template_destroy(task_template_t **tmpl) {
616     if (!tmpl)
617         return;
618
619     if ((*tmpl)->description)    mem_d((*tmpl)->description);
620     if ((*tmpl)->proceduretype)  mem_d((*tmpl)->proceduretype);
621     if ((*tmpl)->compileflags)   mem_d((*tmpl)->compileflags);
622     if ((*tmpl)->executeflags)   mem_d((*tmpl)->executeflags);
623     if ((*tmpl)->sourcefile)     mem_d((*tmpl)->sourcefile);
624     if ((*tmpl)->rulesfile)      mem_d((*tmpl)->rulesfile);
625     if ((*tmpl)->testflags)      mem_d((*tmpl)->testflags);
626
627     /*
628      * Delete all allocated string for task tmpl then destroy the
629      * main vector.
630      */
631     {
632         size_t i = 0;
633         for (; i < vec_size((*tmpl)->comparematch); i++)
634             mem_d((*tmpl)->comparematch[i]);
635
636         vec_free((*tmpl)->comparematch);
637     }
638
639     /*
640      * Nullify all the template members otherwise NULL comparision
641      * checks will fail if tmpl pointer is reused.
642      */
643     mem_d(*tmpl);
644 }
645
646 /*
647  * Now comes the task manager, this system allows adding tasks in and out
648  * of a task list.  This is the executor of the tasks essentially as well.
649  */
650 typedef struct {
651     task_template_t *tmpl;
652     FILE           **runhandles;
653     FILE            *stderrlog;
654     FILE            *stdoutlog;
655     char            *stdoutlogfile;
656     char            *stderrlogfile;
657     bool             compiled;
658 } task_t;
659
660 static task_t *task_tasks = NULL;
661
662 /*
663  * Read a directory and searches for all template files in it
664  * which is later used to run all tests.
665  */
666 static bool task_propagate(const char *curdir, size_t *pad, const char *defs) {
667     bool             success = true;
668     DIR             *dir;
669     struct dirent   *files;
670     struct stat      directory;
671     char             buffer[4096];
672     size_t           found = 0;
673
674     dir = fs_dir_open(curdir);
675
676     while ((files = fs_dir_read(dir))) {
677         util_snprintf(buffer, sizeof(buffer), "%s/%s", curdir, files->d_name);
678
679         if (stat(buffer, &directory) == -1) {
680             con_err("internal error: stat failed, aborting\n");
681             abort();
682         }
683
684         /* skip directories */
685         if (S_ISDIR(directory.st_mode))
686             continue;
687
688         /*
689          * We made it here, which concludes the file/directory is not
690          * actually a directory, so it must be a file :)
691          */
692         if (strcmp(files->d_name + strlen(files->d_name) - 5, ".tmpl") == 0) {
693             task_template_t *tmpl = task_template_compile(files->d_name, curdir, pad);
694             char             buf[4096]; /* one page should be enough */
695             char            *qcflags = NULL;
696             task_t           task;
697
698             util_debug("TEST", "compiling task template: %s/%s\n", curdir, files->d_name);
699             found ++;
700             if (!tmpl) {
701                 con_err("error compiling task template: %s\n", files->d_name);
702                 success = false;
703                 continue;
704             }
705             /*
706              * Generate a temportary file name for the output binary
707              * so we don't trample over an existing one.
708              */
709             tmpl->tempfilename = NULL;
710             util_asprintf(&tmpl->tempfilename, "%s/TMPDAT.%s", curdir, files->d_name);
711
712             /*
713              * Additional QCFLAGS enviroment variable may be used
714              * to test compile flags for all tests.  This needs to be
715              * BEFORE other flags (so that the .tmpl can override them)
716              */
717             #ifdef _MSC_VER
718             {
719                 char   buffer[4096];
720                 size_t size;
721                 getenv_s(&size, buffer, sizeof(buffer), "QCFLAGS");
722                 qcflags = buffer;
723             }
724             #else
725             qcflags = getenv("QCFLAGS");
726             #endif
727
728             /*
729              * Generate the command required to open a pipe to a process
730              * which will be refered to with a handle in the task for
731              * reading the data from the pipe.
732              */
733             if (strcmp(tmpl->proceduretype, "-pp")) {
734                 if (qcflags) {
735                     if (tmpl->testflags && !strcmp(tmpl->testflags, "-no-defs")) {
736                         util_snprintf(buf, sizeof(buf), "%s %s/%s %s %s -o %s",
737                             task_bins[TASK_COMPILE],
738                             curdir,
739                             tmpl->sourcefile,
740                             qcflags,
741                             tmpl->compileflags,
742                             tmpl->tempfilename
743                         );
744                     } else {
745                         util_snprintf(buf, sizeof(buf), "%s %s/%s %s/%s %s %s -o %s",
746                             task_bins[TASK_COMPILE],
747                             curdir,
748                             defs,
749                             curdir,
750                             tmpl->sourcefile,
751                             qcflags,
752                             tmpl->compileflags,
753                             tmpl->tempfilename
754                         );
755                     }
756                 } else {
757                     if (tmpl->testflags && !strcmp(tmpl->testflags, "-no-defs")) {
758                         util_snprintf(buf, sizeof(buf), "%s %s/%s %s -o %s",
759                             task_bins[TASK_COMPILE],
760                             curdir,
761                             tmpl->sourcefile,
762                             tmpl->compileflags,
763                             tmpl->tempfilename
764                         );
765                     } else {
766                         util_snprintf(buf, sizeof(buf), "%s %s/%s %s/%s %s -o %s",
767                             task_bins[TASK_COMPILE],
768                             curdir,
769                             defs,
770                             curdir,
771                             tmpl->sourcefile,
772                             tmpl->compileflags,
773                             tmpl->tempfilename
774                         );
775                     }
776                 }
777             } else {
778                 /* Preprocessing (qcflags mean shit all here we don't allow them) */
779                 if (tmpl->testflags && !strcmp(tmpl->testflags, "-no-defs")) {
780                     util_snprintf(buf, sizeof(buf), "%s -E %s/%s -o %s",
781                         task_bins[TASK_COMPILE],
782                         curdir,
783                         tmpl->sourcefile,
784                         tmpl->tempfilename
785                     );
786                 } else {
787                     util_snprintf(buf, sizeof(buf), "%s -E %s/%s %s/%s -o %s",
788                         task_bins[TASK_COMPILE],
789                         curdir,
790                         defs,
791                         curdir,
792                         tmpl->sourcefile,
793                         tmpl->tempfilename
794                     );
795                 }
796             }
797
798             /*
799              * The task template was compiled, now lets create a task from
800              * the template data which has now been propagated.
801              */
802             task.tmpl = tmpl;
803             if (!(task.runhandles = task_popen(buf, "r"))) {
804                 con_err("error opening pipe to process for test: %s\n", tmpl->description);
805                 success = false;
806                 continue;
807             }
808
809             util_debug("TEST", "executing test: `%s` [%s]\n", tmpl->description, buf);
810
811             /*
812              * Open up some file desciptors for logging the stdout/stderr
813              * to our own.
814              */
815             util_snprintf(buf,  sizeof(buf), "%s.stdout", tmpl->tempfilename);
816             task.stdoutlogfile = util_strdup(buf);
817             if (!(task.stdoutlog     = fs_file_open(buf, "w"))) {
818                 con_err("error opening %s for stdout\n", buf);
819                 continue;
820             }
821
822             util_snprintf(buf,  sizeof(buf), "%s.stderr", tmpl->tempfilename);
823             task.stderrlogfile = util_strdup(buf);
824             if (!(task.stderrlog = fs_file_open(buf, "w"))) {
825                 con_err("error opening %s for stderr\n", buf);
826                 continue;
827             }
828
829             vec_push(task_tasks, task);
830         }
831     }
832
833     util_debug("TEST", "compiled %d task template files out of %d\n",
834         vec_size(task_tasks),
835         found
836     );
837
838     fs_dir_close(dir);
839     return success;
840 }
841
842 /*
843  * Task precleanup removes any existing temporary files or log files
844  * left behind from a previous invoke of the test-suite.
845  */
846 static void task_precleanup(const char *curdir) {
847     DIR             *dir;
848     struct dirent   *files;
849     char             buffer[4096];
850
851     dir = fs_dir_open(curdir);
852
853     while ((files = fs_dir_read(dir))) {
854         if (strstr(files->d_name, "TMP")     ||
855             strstr(files->d_name, ".stdout") ||
856             strstr(files->d_name, ".stderr"))
857         {
858             util_snprintf(buffer, sizeof(buffer), "%s/%s", curdir, files->d_name);
859             if (remove(buffer))
860                 con_err("error removing temporary file: %s\n", buffer);
861             else
862                 util_debug("TEST", "removed temporary file: %s\n", buffer);
863         }
864     }
865
866     fs_dir_close(dir);
867 }
868
869 static void task_destroy(void) {
870     /*
871      * Free all the data in the task list and finally the list itself
872      * then proceed to cleanup anything else outside the program like
873      * temporary files.
874      */
875     size_t i;
876     for (i = 0; i < vec_size(task_tasks); i++) {
877         /*
878          * Close any open handles to files or processes here.  It's mighty
879          * annoying to have to do all this cleanup work.
880          */
881         if (task_tasks[i].runhandles) task_pclose(task_tasks[i].runhandles);
882         if (task_tasks[i].stdoutlog)  fs_file_close (task_tasks[i].stdoutlog);
883         if (task_tasks[i].stderrlog)  fs_file_close (task_tasks[i].stderrlog);
884
885         /*
886          * Only remove the log files if the test actually compiled otherwise
887          * forget about it (or if it didn't compile, and the procedure type
888          * was set to -fail (meaning it shouldn't compile) .. stil remove)
889          */
890         if (task_tasks[i].compiled || !strcmp(task_tasks[i].tmpl->proceduretype, "-fail")) {
891             if (remove(task_tasks[i].stdoutlogfile))
892                 con_err("error removing stdout log file: %s\n", task_tasks[i].stdoutlogfile);
893             else
894                 util_debug("TEST", "removed stdout log file: %s\n", task_tasks[i].stdoutlogfile);
895             if (remove(task_tasks[i].stderrlogfile))
896                 con_err("error removing stderr log file: %s\n", task_tasks[i].stderrlogfile);
897             else
898                 util_debug("TEST", "removed stderr log file: %s\n", task_tasks[i].stderrlogfile);
899
900             remove(task_tasks[i].tmpl->tempfilename);
901         }
902
903         /* free util_strdup data for log files */
904         mem_d(task_tasks[i].stdoutlogfile);
905         mem_d(task_tasks[i].stderrlogfile);
906
907         task_template_destroy(&task_tasks[i].tmpl);
908     }
909     vec_free(task_tasks);
910 }
911
912 /*
913  * This executes the QCVM task for a specificly compiled progs.dat
914  * using the template passed into it for call-flags and user defined
915  * messages IF the procedure type is -execute, otherwise it matches
916  * the preprocessor output.
917  */
918 static bool task_trymatch(task_template_t *tmpl, char ***line) {
919     bool     success = true;
920     bool     preprocessing = false;
921     FILE    *execute;
922     char     buffer[4096];
923     memset  (buffer,0,sizeof(buffer));
924
925     if (strcmp(tmpl->proceduretype, "-pp")) {
926         /*
927          * Drop the execution flags for the QCVM if none where
928          * actually specified.
929          */
930         if (!strcmp(tmpl->executeflags, "$null")) {
931             util_snprintf(buffer,  sizeof(buffer), "%s %s",
932                 task_bins[TASK_EXECUTE],
933                 tmpl->tempfilename
934             );
935         } else {
936             util_snprintf(buffer,  sizeof(buffer), "%s %s %s",
937                 task_bins[TASK_EXECUTE],
938                 tmpl->executeflags,
939                 tmpl->tempfilename
940             );
941         }
942
943         util_debug("TEST", "executing qcvm: `%s` [%s]\n",
944             tmpl->description,
945             buffer
946         );
947
948         execute = popen(buffer, "r");
949         if (!execute)
950             return false;
951     } else {
952         /*
953          * we're preprocessing, which means we need to read int
954          * the produced file and do some really weird shit.
955          */
956         if (!(execute = fs_file_open(tmpl->tempfilename, "r")))
957             return false;
958
959         preprocessing = true;
960     }
961
962     /*
963      * Now lets read the lines and compare them to the matches we expect
964      * and handle accordingly.
965      */
966     {
967         char  *data    = NULL;
968         size_t size    = 0;
969         size_t compare = 0;
970         while (fs_file_getline(&data, &size, execute) != EOF) {
971             if (!strcmp(data, "No main function found\n")) {
972                 con_err("test failure: `%s` (No main function found) [%s]\n",
973                     tmpl->description,
974                     tmpl->rulesfile
975                 );
976                 if (preprocessing)
977                     fs_file_close(execute);
978                 else
979                     pclose(execute);
980                 return false;
981             }
982
983             /*
984              * Trim newlines from data since they will just break our
985              * ability to properly validate matches.
986              */
987             if  (strrchr(data, '\n'))
988                 *strrchr(data, '\n') = '\0';
989
990             /*
991              * If data is just null now, that means the line was an empty
992              * one and for that, we just ignore it.
993              */
994             if (!*data)
995                 continue;
996
997             if (vec_size(tmpl->comparematch) > compare) {
998                 if (strcmp(data, tmpl->comparematch[compare++]))
999                     success = false;
1000             } else {
1001                     success = false;
1002             }
1003
1004             /*
1005              * Copy to output vector for diagnostics if execution match
1006              * fails.
1007              */
1008             vec_push(*line, data);
1009
1010             /* reset */
1011             data = NULL;
1012             size = 0;
1013         }
1014         mem_d(data);
1015         data = NULL;
1016     }
1017
1018     if (!preprocessing)
1019         pclose(execute);
1020     else
1021         fs_file_close(execute);
1022
1023     return success;
1024 }
1025
1026 static const char *task_type(task_template_t *tmpl) {
1027     if (!strcmp(tmpl->proceduretype, "-pp"))
1028         return "type: preprocessor";
1029     if (!strcmp(tmpl->proceduretype, "-execute"))
1030         return "type: execution";
1031     if (!strcmp(tmpl->proceduretype, "-compile"))
1032         return "type: compile";
1033     return "type: fail";
1034 }
1035
1036 /*
1037  * This schedualizes all tasks and actually runs them individually
1038  * this is generally easy for just -compile variants.  For compile and
1039  * execution this takes more work since a task needs to be generated
1040  * from thin air and executed INLINE.
1041  */
1042 #include <math.h>
1043 static void task_schedualize(size_t *pad) {
1044     char   space[2][64];
1045     bool   execute  = false;
1046     char  *data     = NULL;
1047     char **match    = NULL;
1048     size_t size     = 0;
1049     size_t i        = 0;
1050     size_t j        = 0;
1051
1052     util_snprintf(space[0], sizeof(space[0]), "%d", (int)vec_size(task_tasks));
1053
1054     for (; i < vec_size(task_tasks); i++) {
1055         memset(space[1], 0, sizeof(space[1]));
1056         util_snprintf(space[1], sizeof(space[1]), "%d", (int)(i + 1));
1057
1058         con_out("test #%u %*s", i + 1, strlen(space[0]) - strlen(space[1]), "");
1059
1060         util_debug("TEST", "executing task: %d: %s\n", i, task_tasks[i].tmpl->description);
1061         /*
1062          * Generate a task from thin air if it requires execution in
1063          * the QCVM.
1064          */
1065         execute = !! (!strcmp(task_tasks[i].tmpl->proceduretype, "-execute")) ||
1066                      (!strcmp(task_tasks[i].tmpl->proceduretype, "-pp"));
1067
1068         /*
1069          * We assume it compiled before we actually compiled :).  On error
1070          * we change the value
1071          */
1072         task_tasks[i].compiled = true;
1073
1074         /*
1075          * Read data from stdout first and pipe that stuff into a log file
1076          * then we do the same for stderr.
1077          */
1078         while (fs_file_getline(&data, &size, task_tasks[i].runhandles[1]) != EOF) {
1079             fs_file_puts(task_tasks[i].stdoutlog, data);
1080
1081             if (strstr(data, "failed to open file")) {
1082                 task_tasks[i].compiled = false;
1083                 execute                = false;
1084             }
1085         }
1086         while (fs_file_getline(&data, &size, task_tasks[i].runhandles[2]) != EOF) {
1087             /*
1088              * If a string contains an error we just dissalow execution
1089              * of it in the vm.
1090              *
1091              * TODO: make this more percise, e.g if we print a warning
1092              * that refers to a variable named error, or something like
1093              * that .. then this will blowup :P
1094              */
1095             if (strstr(data, "error")) {
1096                 execute                = false;
1097                 task_tasks[i].compiled = false;
1098             }
1099
1100             fs_file_puts (task_tasks[i].stderrlog, data);
1101         }
1102
1103         if (!task_tasks[i].compiled && strcmp(task_tasks[i].tmpl->proceduretype, "-fail")) {
1104             con_out("failure:   `%s` %*s %*s\n",
1105                 task_tasks[i].tmpl->description,
1106                 (pad[0] + pad[1] - strlen(task_tasks[i].tmpl->description)) + (strlen(task_tasks[i].tmpl->rulesfile) - pad[1]),
1107                 task_tasks[i].tmpl->rulesfile,
1108                 (pad[1] + pad[2] - strlen(task_tasks[i].tmpl->rulesfile)) + (strlen("(failed to compile)") - pad[2]),
1109                 "(failed to compile)"
1110             );
1111             continue;
1112         }
1113
1114         if (!execute) {
1115             con_out("succeeded: `%s` %*s %*s\n",
1116                 task_tasks[i].tmpl->description,
1117                 (pad[0] + pad[1] - strlen(task_tasks[i].tmpl->description)) + (strlen(task_tasks[i].tmpl->rulesfile) - pad[1]),
1118                 task_tasks[i].tmpl->rulesfile,
1119                 (pad[1] + pad[2] - strlen(task_tasks[i].tmpl->rulesfile)) + (strlen(task_type(task_tasks[i].tmpl)) - pad[2]),
1120                 task_type(task_tasks[i].tmpl)
1121
1122             );
1123             continue;
1124         }
1125
1126         /*
1127          * If we made it here that concludes the task is to be executed
1128          * in the virtual machine (or the preprocessor output needs to
1129          * be matched).
1130          */
1131         if (!task_trymatch(task_tasks[i].tmpl, &match)) {
1132             size_t d = 0;
1133
1134             con_out("failure:   `%s` %*s %*s\n",
1135                 task_tasks[i].tmpl->description,
1136                 (pad[0] + pad[1] - strlen(task_tasks[i].tmpl->description)) + (strlen(task_tasks[i].tmpl->rulesfile) - pad[1]),
1137                 task_tasks[i].tmpl->rulesfile,
1138                 (pad[1] + pad[2] - strlen(task_tasks[i].tmpl->rulesfile)) + (strlen(
1139                     (strcmp(task_tasks[i].tmpl->proceduretype, "-pp"))
1140                         ? "(invalid results from execution)"
1141                         : "(invalid results from preprocessing)"
1142                 ) - pad[2]),
1143                 (strcmp(task_tasks[i].tmpl->proceduretype, "-pp"))
1144                     ? "(invalid results from execution)"
1145                     : "(invalid results from preprocessing)"
1146             );
1147
1148             /*
1149              * Print nicely formatted expected match lists to console error
1150              * handler for the all the given matches in the template file and
1151              * what was actually returned from executing.
1152              */
1153             con_out("    Expected From %u Matches: (got %u Matches)\n",
1154                 vec_size(task_tasks[i].tmpl->comparematch),
1155                 vec_size(match)
1156             );
1157             for (; d < vec_size(task_tasks[i].tmpl->comparematch); d++) {
1158                 char  *select = task_tasks[i].tmpl->comparematch[d];
1159                 size_t length = 40 - strlen(select);
1160
1161                 con_out("        Expected: \"%s\"", select);
1162                 while (length --)
1163                     con_out(" ");
1164                 con_out("| Got: \"%s\"\n", (d >= vec_size(match)) ? "<<nothing else to compare>>" : match[d]);
1165             }
1166
1167             /*
1168              * Print the non-expected out (since we are simply not expecting it)
1169              * This will help track down bugs in template files that fail to match
1170              * something.
1171              */
1172             if (vec_size(match) > vec_size(task_tasks[i].tmpl->comparematch)) {
1173                 for (d = 0; d < vec_size(match) - vec_size(task_tasks[i].tmpl->comparematch); d++) {
1174                     con_out("        Expected: Nothing                                   | Got: \"%s\"\n",
1175                         match[d + vec_size(task_tasks[i].tmpl->comparematch)]
1176                     );
1177                 }
1178             }
1179
1180
1181             for (j = 0; j < vec_size(match); j++)
1182                 mem_d(match[j]);
1183             vec_free(match);
1184             continue;
1185         }
1186         for (j = 0; j < vec_size(match); j++)
1187             mem_d(match[j]);
1188         vec_free(match);
1189
1190         con_out("succeeded: `%s` %*s %*s\n",
1191             task_tasks[i].tmpl->description,
1192             (pad[0] + pad[1] - strlen(task_tasks[i].tmpl->description)) + (strlen(task_tasks[i].tmpl->rulesfile) - pad[1]),
1193             task_tasks[i].tmpl->rulesfile,
1194             (pad[1] + pad[2] - strlen(task_tasks[i].tmpl->rulesfile)) + (strlen(task_type(task_tasks[i].tmpl))- pad[2]),
1195             task_type(task_tasks[i].tmpl)
1196
1197         );
1198     }
1199     mem_d(data);
1200 }
1201
1202 /*
1203  * This is the heart of the whole test-suite process.  This cleans up
1204  * any existing temporary files left behind as well as log files left
1205  * behind.  Then it propagates a list of tests from `curdir` by scaning
1206  * it for template files and compiling them into tasks, in which it
1207  * schedualizes them (executes them) and actually reports errors and
1208  * what not.  It then proceeds to destroy the tasks and return memory
1209  * it's the engine :)
1210  *
1211  * It returns true of tests could be propagated, otherwise it returns
1212  * false.
1213  *
1214  * It expects con_init() was called before hand.
1215  */
1216 static GMQCC_WARN bool test_perform(const char *curdir, const char *defs) {
1217     static const char *default_defs = "defs.qh";
1218
1219     size_t pad[] = {
1220         /* test ### [succeed/fail]: `description`      [tests/template.tmpl]     [type] */
1221                     0,                                 0,                        0
1222     };
1223
1224     /*
1225      * If the default definition file isn't set to anything.  We will
1226      * use the default_defs here, which is "defs.qc"
1227      */
1228     if (!defs) {
1229         defs = default_defs;
1230     }
1231
1232
1233     task_precleanup(curdir);
1234     if (!task_propagate(curdir, pad, defs)) {
1235         con_err("error: failed to propagate tasks\n");
1236         task_destroy();
1237         return false;
1238     }
1239     /*
1240      * If we made it here all tasks where propagated from their resultant
1241      * template file.  So we can start the FILO scheduler, this has been
1242      * designed in the most thread-safe way possible for future threading
1243      * it's designed to prevent lock contention, and possible syncronization
1244      * issues.
1245      */
1246     task_schedualize(pad);
1247     task_destroy();
1248
1249     return true;
1250 }
1251
1252 /*
1253  * Fancy GCC-like LONG parsing allows things like --opt=param with
1254  * assignment operator.  This is used for redirecting stdout/stderr
1255  * console to specific files of your choice.
1256  */
1257 static bool parsecmd(const char *optname, int *argc_, char ***argv_, char **out, int ds, bool split) {
1258     int  argc   = *argc_;
1259     char **argv = *argv_;
1260
1261     size_t len = strlen(optname);
1262
1263     if (strncmp(argv[0]+ds, optname, len))
1264         return false;
1265
1266     /* it's --optname, check how the parameter is supplied */
1267     if (argv[0][ds+len] == '=') {
1268         *out = argv[0]+ds+len+1;
1269         return true;
1270     }
1271
1272     if (!split || argc < ds) /* no parameter was provided, or only single-arg form accepted */
1273         return false;
1274
1275     /* using --opt param */
1276     *out = argv[1];
1277     --*argc_;
1278     ++*argv_;
1279     return true;
1280 }
1281
1282 int main(int argc, char **argv) {
1283     bool          succeed  = false;
1284     char         *redirout = (char*)stdout;
1285     char         *redirerr = (char*)stderr;
1286     char         *defs     = NULL;
1287
1288     con_init();
1289     OPTS_OPTION_U16(OPTION_MEMDUMPCOLS) = 16;
1290
1291     /*
1292      * Command line option parsing commences now We only need to support
1293      * a few things in the test suite.
1294      */
1295     while (argc > 1) {
1296         ++argv;
1297         --argc;
1298
1299         if (argv[0][0] == '-') {
1300             if (parsecmd("redirout", &argc, &argv, &redirout, 1, false))
1301                 continue;
1302             if (parsecmd("redirerr", &argc, &argv, &redirerr, 1, false))
1303                 continue;
1304             if (parsecmd("defs",     &argc, &argv, &defs,     1, false))
1305                 continue;
1306
1307             con_change(redirout, redirerr);
1308
1309             if (!strcmp(argv[0]+1, "debug")) {
1310                 OPTS_OPTION_BOOL(OPTION_DEBUG) = true;
1311                 continue;
1312             }
1313             if (!strcmp(argv[0]+1, "memchk")) {
1314                 OPTS_OPTION_BOOL(OPTION_MEMCHK) = true;
1315                 continue;
1316             }
1317             if (!strcmp(argv[0]+1, "nocolor")) {
1318                 con_color(0);
1319                 continue;
1320             }
1321
1322             con_err("invalid argument %s\n", argv[0]+1);
1323             return -1;
1324         }
1325     }
1326     con_change(redirout, redirerr);
1327     succeed = test_perform("tests", defs);
1328     stat_info();
1329
1330
1331     return (succeed) ? EXIT_SUCCESS : EXIT_FAILURE;
1332 }