nomsu/tools/test.nom

39 lines
1.4 KiB
Plaintext
Raw Normal View History

2018-11-19 17:37:37 -08:00
#!/usr/bin/env nomsu -V4.11.12.8
2018-07-23 15:54:27 -07:00
#
Tool to run all tests in a file (i.e. the code block inside a call to 'test %'). Usage:
2018-10-31 15:05:17 -07:00
nomsu tools/test.nom file1 file2 directory1 ...
use "lib/os.nom"
use "lib/consolecolor.nom"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# Make sure all the files get run
for %filename in (command line args).extra_args: use %filename
%tests = {: for %s = %t in (tests): add (=lua "Source:from_string(\%s)") = %t}
for %filename in (command line args).extra_args:
%file = (read file %filename)
%version = (%file::matching "#![^\n]* nomsu %-V[ ]*([^\n]*)")
2018-11-19 17:21:08 -08:00
%file_tests = []
for %src = %test in %tests:
if (%src.filename == %filename):
if %version:
%test = "\
..#!/usr/bin/env nomsu -V\(%version)
\%test"
2018-11-19 17:21:08 -08:00
%file_tests::add {test: %test, source: %src}
unless (%file_tests is empty):
sort %file_tests by % -> %.source
lua> "io.write('[ .. ] ', \%filename); io.flush()"
if (command line args)."-v": say ""
2018-11-19 17:21:08 -08:00
for % in %file_tests:
if (command line args)."-v":
2018-11-19 17:21:08 -08:00
say " \(yellow (%.test::with "\n" -> "\n "))"
run %.test
if (command line args)."-v":
2018-11-19 17:21:08 -08:00
say (green "PASS")
..else:
say "\r[\(green "PASS")"