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