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