blob: cebb90dd81566075902c3f8c8d2f0a0504b04cce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
(.using
[library
[lux "*"
["_" test {"+" Test}]
[abstract
[monad {"+" do}]]
[control
["[0]" io]]
[time
["[0]" instant {"+" Instant}]
["[0]" duration]]
[math
["[0]" random]
[number
["n" nat]
["i" int]]]]]
[\\library
["[0]" /
[//
["[0]" atom {"+" Atom}]
["[0]" async]]]])
(def: .public test
Test
(<| (_.covering /._)
(do [! random.monad]
[dummy random.nat
expected random.nat
delay (# ! each (|>> (n.% 5) (n.+ 5))
random.nat)]
(all _.and
(_.coverage [/.parallelism]
(n.> 0 /.parallelism))
(in (do async.monad
[reference_time (async.future instant.now)
.let [box (atom.atom [reference_time dummy])]
_ (async.future
(/.schedule! delay (do io.monad
[execution_time instant.now]
(atom.write! [execution_time expected] box))))
_ (async.delay (n.* 2 delay))
[execution_time actual] (async.future (atom.read! box))]
(_.coverage' [/.schedule!]
(let [expected_delay!
(i.>= (.int delay)
(duration.millis (instant.span reference_time execution_time)))
correct_value!
(n.= expected actual)]
(and expected_delay!
correct_value!)))))
))))
|