2017-08-21 15:45:23 +05:30
|
|
|
#! /usr/bin/scheme-script
|
|
|
|
|
2017-08-21 15:23:23 +05:30
|
|
|
(import (rnrs)
|
|
|
|
(fmt fmt)
|
2017-08-22 14:18:20 +05:30
|
|
|
(list-utils)
|
2017-08-15 20:37:45 +05:30
|
|
|
(functional-tests)
|
2017-08-17 20:54:10 +05:30
|
|
|
(cache-functional-tests)
|
2017-08-22 14:18:20 +05:30
|
|
|
(parser-combinators)
|
2017-08-21 15:23:23 +05:30
|
|
|
(only (srfi s1 lists) break)
|
2017-08-23 14:34:00 +05:30
|
|
|
(regex)
|
2017-08-21 15:23:23 +05:30
|
|
|
(srfi s8 receive)
|
2017-08-24 18:33:07 +05:30
|
|
|
(temp-file)
|
2017-08-15 20:37:45 +05:30
|
|
|
(thin-functional-tests))
|
|
|
|
|
2017-08-21 15:23:23 +05:30
|
|
|
;;------------------------------------------------
|
|
|
|
|
2017-08-23 14:48:09 +05:30
|
|
|
;; Returns #t if the xs list matches prefix
|
2017-08-21 15:23:23 +05:30
|
|
|
(define (begins-with prefix xs)
|
|
|
|
(cond
|
|
|
|
((null? prefix) #t)
|
|
|
|
((null? xs) #f)
|
|
|
|
((eq? (car prefix) (car xs))
|
|
|
|
(begins-with (cdr prefix) (cdr xs)))
|
|
|
|
(else #f)))
|
|
|
|
|
|
|
|
(define (split-list xs sep)
|
|
|
|
(define (safe-cdr xs)
|
|
|
|
(if (null? xs) '() (cdr xs)))
|
|
|
|
|
|
|
|
(if (null? xs)
|
|
|
|
'()
|
|
|
|
(receive (p r) (break (lambda (c)
|
|
|
|
(eq? c sep))
|
|
|
|
xs)
|
|
|
|
(cons p (split-list (safe-cdr r) sep)))))
|
|
|
|
|
|
|
|
(define (string->syms str sep)
|
|
|
|
(map (lambda (cs)
|
|
|
|
(string->symbol
|
|
|
|
(list->string cs)))
|
|
|
|
(split-list (string->list str) sep)))
|
|
|
|
|
2017-08-23 14:34:00 +05:30
|
|
|
(define (mk-string-matcher pattern)
|
2017-08-21 15:23:23 +05:30
|
|
|
(let ((prefix (string->syms pattern #\/)))
|
|
|
|
(lambda (keys)
|
|
|
|
(begins-with prefix keys))))
|
|
|
|
|
2017-08-23 14:34:00 +05:30
|
|
|
(define (mk-regex-matcher pattern)
|
|
|
|
(let ((rx (regex pattern)))
|
|
|
|
(lambda (keys)
|
|
|
|
(rx (apply string-append
|
|
|
|
(intersperse "/"
|
|
|
|
(map symbol->string keys)))))))
|
|
|
|
|
|
|
|
;; If the filter begins with 're:' then we make a regex matcher, otherwise
|
|
|
|
;; we use a simple string matcher.
|
|
|
|
(define (mk-single-matcher pattern)
|
|
|
|
(if (string=? (substring pattern 0 3) "re:")
|
|
|
|
(mk-regex-matcher (substring pattern 3 (string-length pattern)))
|
|
|
|
(mk-string-matcher pattern)))
|
|
|
|
|
2017-08-21 16:03:44 +05:30
|
|
|
(define (mk-filter patterns)
|
|
|
|
(if (null? patterns)
|
|
|
|
; accept everything if no patterns
|
|
|
|
(lambda (_) #t)
|
|
|
|
|
|
|
|
; Otherwise accept tests that pass a pattern
|
2017-08-23 14:34:00 +05:30
|
|
|
(let ((filters (map mk-single-matcher patterns)))
|
2017-08-21 16:03:44 +05:30
|
|
|
(fold-left (lambda (fn-a fn-b)
|
|
|
|
(lambda (keys)
|
|
|
|
(or (fn-a keys)
|
|
|
|
(fn-b keys))))
|
|
|
|
(car filters)
|
|
|
|
(cdr filters)))))
|
|
|
|
|
2017-08-22 14:18:20 +05:30
|
|
|
(define (exec-help)
|
|
|
|
(fmt (current-error-port)
|
|
|
|
(dsp "here's some helpful help\n")))
|
|
|
|
|
|
|
|
(define (exec-run args)
|
|
|
|
(let ((pred (mk-filter args)))
|
|
|
|
(if (run-scenarios (filter pred (list-scenarios)))
|
|
|
|
(exit)
|
|
|
|
(exit #f))))
|
|
|
|
|
|
|
|
;;------------------------------------------------
|
|
|
|
;; Command line parser
|
|
|
|
|
|
|
|
(define whitespace
|
|
|
|
(many+ (charset " \t\n")))
|
|
|
|
|
|
|
|
(define (whitespace-delim ma)
|
|
|
|
(>> (opt whitespace)
|
|
|
|
(<* ma (opt whitespace))))
|
|
|
|
|
2017-08-24 18:33:07 +05:30
|
|
|
(define (switch str)
|
|
|
|
(whitespace-delim (>> (lit "--") (lit str))))
|
|
|
|
|
2017-08-22 14:18:20 +05:30
|
|
|
(define not-switch
|
2017-08-24 18:33:07 +05:30
|
|
|
(whitespace-delim
|
|
|
|
(parse-m (<- c (neg-charset "- \t"))
|
|
|
|
(<- cs (many* (neg-charset " \t")))
|
|
|
|
(pure (list->string (cons c cs))))))
|
|
|
|
|
|
|
|
(define (maybe ma)
|
|
|
|
(alt (>> ma (pure #t))
|
|
|
|
(pure #f)))
|
|
|
|
|
|
|
|
(define help-command-line
|
|
|
|
(>> (switch "help") (pure exec-help)))
|
|
|
|
|
|
|
|
(define run-command-line
|
|
|
|
(parse-m
|
|
|
|
(switch "run")
|
|
|
|
(<- dunlink (maybe (switch "disable-unlink")))
|
|
|
|
(<- args (many* not-switch))
|
|
|
|
(pure (lambda ()
|
|
|
|
(if dunlink
|
|
|
|
(disable-unlink (exec-run args))
|
|
|
|
(exec-run args))))))
|
2017-08-22 14:18:20 +05:30
|
|
|
|
|
|
|
(define command-line-parser
|
2017-08-24 18:33:07 +05:30
|
|
|
(one-of help-command-line run-command-line))
|
2017-08-22 14:18:20 +05:30
|
|
|
|
|
|
|
(define (bad-command-line)
|
|
|
|
(fmt (current-error-port) (dsp "bad command line\n")))
|
|
|
|
|
|
|
|
;; (<string>) -> thunk
|
|
|
|
(define (parse-command-line)
|
|
|
|
(let ((args (cdr (command-line))))
|
|
|
|
(receive (v st)
|
|
|
|
(parse command-line-parser
|
|
|
|
(apply string-append
|
2017-08-24 18:33:07 +05:30
|
|
|
(intersperse " " (cdr (command-line)))))
|
2017-08-22 14:18:20 +05:30
|
|
|
(if (success? st)
|
|
|
|
v
|
|
|
|
bad-command-line))))
|
|
|
|
|
2017-08-21 15:23:23 +05:30
|
|
|
;;------------------------------------------------
|
|
|
|
|
2017-08-15 20:37:45 +05:30
|
|
|
(register-thin-tests)
|
2017-08-17 20:54:10 +05:30
|
|
|
(register-cache-tests)
|
2017-08-24 18:33:07 +05:30
|
|
|
(with-dir "test-output"
|
|
|
|
((parse-command-line)))
|
2017-08-15 20:37:45 +05:30
|
|
|
|