
This convention makes it easier to deal with a set of ".rkt" files that implement tests, while a `test' module implements a `main'-like split for some of the files.
47 lines
1.3 KiB
Racket
47 lines
1.3 KiB
Racket
#lang racket/base
|
|
(require racket/cmdline
|
|
racket/match
|
|
racket/path
|
|
raco/command-name)
|
|
|
|
(define submodule 'test)
|
|
(define run-anyways? #t)
|
|
|
|
(define (do-test e [check-suffix? #f])
|
|
(match e
|
|
[(? string? s)
|
|
(do-test (string->path s))]
|
|
[(? path? p)
|
|
(cond
|
|
[(directory-exists? p)
|
|
(for-each
|
|
(λ (dp)
|
|
(do-test (build-path p dp) #t))
|
|
(directory-list p))]
|
|
[(and (file-exists? p)
|
|
(or (not check-suffix?)
|
|
(regexp-match #rx#"\\.rkt$" (path->bytes p))))
|
|
(define mod `(submod ,p ,submodule))
|
|
(cond
|
|
[(module-declared? mod #t)
|
|
(dynamic-require mod #f)]
|
|
[(and run-anyways? (module-declared? p #t))
|
|
(dynamic-require p #f)])]
|
|
[(not (file-exists? p))
|
|
(error 'test "Given path ~e does not exist" p)])]))
|
|
|
|
(command-line
|
|
#:program (short-program+command-name)
|
|
#:once-each
|
|
[("--submodule" "-s") name
|
|
"Runs submodule <name> (defaults to `test')"
|
|
(set! submodule (string->symbol name))]
|
|
[("--run-if-absent" "-r")
|
|
"Require module if submodule is absent (on by default)"
|
|
(set! run-anyways? #t)]
|
|
[("--no-run-if-absent" "-x")
|
|
"Require nothing if submodule is absent"
|
|
(set! run-anyways? #f)]
|
|
#:args file-or-directory
|
|
(for-each do-test file-or-directory))
|