mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-15 18:12:47 +03:00
81 lines
1.8 KiB
Plaintext
81 lines
1.8 KiB
Plaintext
/+ *test
|
|
::
|
|
/= gall-raw /: /===/sys/vane/gall /!noun/
|
|
::
|
|
=/ test-pit=vase !>(..zuse)
|
|
=/ gall-gate (gall-raw test-pit)
|
|
::
|
|
|%
|
|
:: +test-init: test %init
|
|
::
|
|
++ test-init
|
|
^- tang
|
|
::
|
|
=/ time ~1111.1.1
|
|
::
|
|
=/ call-args
|
|
=/ =duct ~[/init]
|
|
=/ =type -:!>(*task:able:gall)
|
|
=/ =task:able:gall [%init ~nec]
|
|
[duct type task]
|
|
::
|
|
=/ expected-moves ~
|
|
::
|
|
=^ results gall-gate
|
|
(gall-call gall-gate time *sley call-args expected-moves)
|
|
::
|
|
results
|
|
:: +test-conf: test %conf
|
|
::
|
|
++ test-conf
|
|
^- tang
|
|
::
|
|
=/ =duct ~[/init]
|
|
=/ time (add ~1111.1.1 ~s1)
|
|
=/ =term %my-agent
|
|
=/ ship ~nec
|
|
::
|
|
=/ call-args
|
|
=/ =type -:!>(*task:able:gall)
|
|
=/ =task:able:gall
|
|
=/ =dock [ship term]
|
|
[%conf dock dock]
|
|
[duct type task]
|
|
::
|
|
=/ =move:gall-gate
|
|
=/ =path /sys/cor/[term]/(scot %p ship)/[term]/(scot %da time)
|
|
=/ =note-arvo
|
|
=/ =schematic:ford [%core [ship term] /hoon/[term]/app]
|
|
=/ =task:able:ford [%build %.y schematic]
|
|
[%f task]
|
|
[duct %pass path note-arvo]
|
|
::
|
|
=/ expected-moves=(list move:gall-gate) ~[move]
|
|
::
|
|
=^ results gall-gate
|
|
(gall-call gall-gate time *sley call-args expected-moves)
|
|
::
|
|
results
|
|
:: +gall-call: have %gall run a +task and assert it produces expected-moves
|
|
::
|
|
++ gall-call
|
|
|= $: gall-gate=_gall-gate
|
|
now=@da
|
|
scry=sley
|
|
call-args=[=duct =type wrapped-task=(hobo task:able:gall)]
|
|
expected-moves=(list move:gall-gate)
|
|
==
|
|
^- [tang _gall-gate]
|
|
::
|
|
=/ gall-core (gall-gate our=~nec now=now eny=`@`0xdead.beef scry=scry)
|
|
::
|
|
=^ moves gall-gate (call:gall-core call-args)
|
|
::
|
|
=/ output=tang
|
|
%+ expect-eq
|
|
!> expected-moves
|
|
!> moves
|
|
::
|
|
[output gall-gate]
|
|
--
|