Add eval tests.

This commit is contained in:
Brad Nelson
2021-02-01 23:06:23 -08:00
parent 5ccd7c3ca4
commit 5e6cd74b11
3 changed files with 66 additions and 10 deletions

View File

@ -28,3 +28,27 @@
: inc/2-times ( a n -- a+n/2 ) 0 ?do 1+ 2 +loop ;
: test-+loop 123 0 inc/2-times 123 = assert ;
: test-+loop2 123 6 inc/2-times 126 = assert ;
e: test-arithmetic
3 4 + .
out:\ 7
;e
e: test-print-string
: foo ." This is a test!" cr ;
foo
out: This is a test!
;e
e: test-print20
: foo 20 0 do i . loop cr ;
foo
out: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
;e
e: test-multiline
: foo ." Hello" cr ." There" cr ." Test!" cr ; foo
out: Hello
out: There
out: Test!
;e

View File

@ -68,16 +68,16 @@ static void create(const char *name, cell_t length, cell_t flags, void *op) {
*g_sys.heap++ = (cell_t) op; // code
}
static char spacefilter(char ch) {
return ch == '\t' || ch == '\n' || ch == '\r' ? ' ' : ch;
static int match(char sep, char ch) {
return sep == ch || (sep == ' ' && (ch == '\t' || ch == '\n' || ch == '\r'));
}
static cell_t parse(cell_t sep, cell_t *ret) {
while (g_sys.tin < g_sys.ntib &&
spacefilter(g_sys.tib[g_sys.tin]) == sep) { ++g_sys.tin; }
match(sep, g_sys.tib[g_sys.tin])) { ++g_sys.tin; }
*ret = (cell_t) (g_sys.tib + g_sys.tin);
while (g_sys.tin < g_sys.ntib &&
spacefilter(g_sys.tib[g_sys.tin]) != sep) { ++g_sys.tin; }
!match(sep, g_sys.tib[g_sys.tin])) { ++g_sys.tin; }
cell_t len = g_sys.tin - (*ret - (cell_t) g_sys.tib);
if (g_sys.tin < g_sys.ntib) { ++g_sys.tin; }
return len;

View File

@ -1,19 +1,51 @@
( Utilities, probably should go elsewhere )
: mem= ( a a n -- f)
for aft 2dup c@ swap c@ <> if 2drop rdrop 0 exit then 1+ swap 1+ then next 2drop -1 ;
: str= ( a n a n -- f) >r swap r@ <> if rdrop 2drop 0 exit then r> mem= ;
: startswith? ( a n a n -- f ) >r swap r@ < if rdrop 2drop 0 exit then r> mem= ;
: assert ( f -- ) 0= throw ;
( Support for eval tests )
1000 constant expect-limit
create expect-buffer expect-limit allot
create result-buffer expect-limit allot
variable expect-used variable result-used
: till;e ( -- n )
begin >in @ bl parse dup 0= >r s" ;e" str= r> or if exit then drop again ;
: e: ( "name" -- ) create >in @
till;e over - swap tib + swap dup , $place
does> dup cell+ swap @ evaluate ;
: expect-emit ( ch -- ) expect-used @ expect-limit < assert
expect-buffer expect-used @ + c!
1 expect-used +! ;
: result-emit ( ch -- ) result-used @ expect-limit < assert
result-buffer result-used @ + c!
1 result-used +! ;
: expect-type ( a n -- ) for aft dup c@ expect-emit 1+ then next drop ;
: result-type ( a n -- ) for aft dup c@ result-emit 1+ then next drop ;
: expected ( -- a n ) expect-buffer expect-used @ ;
: resulted ( -- a n ) result-buffer result-used @ ;
: out: ( "line" -- ) nl parse expect-type nl expect-emit ;
: out:\ ( "line" -- ) nl parse expect-type ;
variable confirm-old-type
: confirm{ ['] type >body @ confirm-old-type ! ['] result-type is type ;
: }confirm confirm-old-type @ is type ;
: expect-reset 0 expect-used ! 0 result-used ! ;
: expect-finish expected resulted str= if exit then }confirm
." Expected:" cr expected type cr ." Resulted:" cr resulted type cr 1 throw ;
( Testing Framework )
( run-tests runs all words starting with "test-", use assert to assert things. )
variable tests-found variable tests-run variable tests-passed
: assert ( f -- ) 0= throw ;
: startswith? ( a n a n -- f )
>r swap r@ < if rdrop 2drop 0 exit then
r> for aft 2dup c@ swap c@ <> if 2drop rdrop 0 exit then 1+ swap 1+ then next 2drop -1 ;
: test? ( xt -- f ) >name s" test-" startswith? ;
: for-tests ( xt -- )
last @ begin dup while dup test? if 2dup >r >r swap execute r> r> then >link repeat 2drop ;
: reset-test-counters 0 tests-found ! 0 tests-run ! 0 tests-passed ! ;
: count-test ( xt -- ) drop 1 tests-found +! ;
: check-fresh depth if ." DEPTH LEAK! " depth . 1 throw then ;
: wrap-test ( xt -- ) >r check-fresh r> execute check-fresh ;
: wrap-test ( xt -- ) expect-reset >r check-fresh r> execute check-fresh expect-finish ;
: red 1 fg ; : green 2 fg ; : hr 40 for [char] - emit next cr ;
: run-test ( xt -- ) dup >name type ['] wrap-test catch
: run-test ( xt -- ) dup >name type confirm{ ['] wrap-test catch }confirm
if drop ( cause xt restored on throw ) red ." FAILED" normal cr
else green ." OK" normal cr 1 tests-passed +! then 1 tests-run +! ;
: pre-test-run cr hr tests-found @ . ." Tests found." cr hr ;