Improved tests

This commit is contained in:
Bruce Hill 2019-03-09 15:53:55 -08:00
parent 0ba6b3e5f6
commit 35835997bb

View File

@ -9,32 +9,60 @@ use "core/control_flow"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
test: test:
$co = $fn =
->: ->:
yield 4 yield 4
yield 5 yield 5
repeat 3 times: repeat 3 times:
yield 6 yield 6
$nums = [] $nums = []
for $ in coroutine $co: for $ in (coroutine from $fn):
$nums, add $ $nums, add $
unless ($nums == [4, 5, 6, 6, 6]): assume ($nums == [4, 5, 6, 6, 6])
fail "Coroutine iteration failed"
$d = {.x = 0} $d = {.x = 0}
$co2 = $co =
coroutine: coroutine:
$d.x += 1 $d.x += 1
yield 1 yield 1
$d.x += 1 $d.x += 1
yield yield
$d.x += 1 $d.x += 1
repeat while ((coroutine status of $co2) != "dead"): resume $co2 repeat while ((coroutine status of $co) != "dead"): resume $co
assume $d.x == 3 assume $d.x == 3
$(co) = (coroutine: yield 5)
[$ok, $val] = (co)
assume ($ok == (yes))
assume ($val == 5)
$t = []
$i = 1
for $ in
coroutine:
yield 4
yield 5
yield
yield 6
..:
$t.$i = $
$i += 1
assume ($t == [4,5,nil,6])
$t = []
for ($k = $) in
coroutine:
yield 4
yield 5
yield
yield 6
..:
$t, add {.key = $k, .value = $}
assume $t == [
{.key = 1, .value = 4}, {.key = 2, .value = 5}, {.key = 3}, {.key = 4, .value = 6}
]
(coroutine $body) parses as (coroutine from (-> $body)) (coroutine $body) parses as (coroutine from (-> $body))
(for $ in coroutine $co $body) compiles to (" external:
for \($ as lua expr) in coroutine_wrap(\($co as lua expr)) do ($ is a dead coroutine) means
\($body as lua) ((lua type of $) == "thread") and ((coroutine status of $) == "dead")
end
")