urbit/.travis/test.ls

38 lines
1020 B
Plaintext
Raw Normal View History

2018-03-09 23:47:45 +03:00
{Urbit,ERROR} = require './runner.ls'
urbit = new Urbit <[-B urbit.pill -A .. -cFI zod zod]>
Promise.resolve urbit
.then (urb)->
urb.note "Booting urbit"
2018-03-09 22:55:07 +03:00
Promise.race [
2018-03-09 23:47:45 +03:00
urb.expect ERROR .then ->
2018-03-09 22:55:07 +03:00
urb.warn "Error detected"
throw Error "Stack trace while booting"
, do
<- urb.expect /dojo> / .then
<- urb.expect-echo "%dojo-booted" .then
2018-03-10 01:24:00 +03:00
urb.unpipe!
2018-03-09 22:55:07 +03:00
]
.then (urb)->
urb.note "Testing compilation"
# TODO tally ford stack traces
# urb.warn etc
<- urb.line "|start %test" .then
<- urb.line ":test [%cores /]" .then
<- urb.expect-echo "%compilation-tested" .then
#if tally => throw # a fit
2018-03-10 01:24:00 +03:00
urb.unpipe!
.then (urb)->
urb.note "Running /===/tests"
# TODO tally FAILED and CRASHED
<- urb.line "+test, =defer |, =seed `@uvI`(shaz %reproducible)" .then
<- urb.expect-echo "%ran-tests" .then
#if tally => throw # a fit
2018-03-10 01:24:00 +03:00
urb.unpipe!
.then ->
urbit.exit 0
.catch (err)->
<- urbit.wait-silent!then # assumptions?
2018-03-09 22:55:07 +03:00
urbit.warn "Test aborted:" err
urbit.exit 1