blob: 3c030bdcc5643699b42bd1986a50d466a0bf542b (
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
(.module:
[library
[lux #*
["_" test (#+ Test)]
[abstract
[monad (#+ do)]
[\\specification
["$." functor (#+ Injection Comparison)]
["$." apply]
["$." monad]
["$." equivalence]]]
[control
pipe
["." io]]
[data
["." text ("#\." equivalence)]]
[math
["." random (#+ Random)]
[number
["n" nat]]]]]
[\\library
["." / (#+ Try)]])
(def: injection
(Injection Try)
(|>> #/.Success))
(def: comparison
(Comparison Try)
(function (_ ==)
(\ (/.equivalence ==) =)))
(def: .public (attempt element)
(All [a] (-> (Random a) (Random (Try a))))
($_ random.or
(random.unicode 1)
element))
(def: .public test
Test
(<| (_.covering /._)
(_.for [/.Try])
(do random.monad
[expected random.nat
alternative (|> random.nat (random.only (|>> (n.= expected) not)))
error (random.unicode 1)
.let [(^open "io\.") io.monad]])
($_ _.and
(_.for [/.equivalence]
($equivalence.spec (/.equivalence n.equivalence) (..attempt random.nat)))
(_.for [/.functor]
($functor.spec ..injection ..comparison /.functor))
(_.for [/.apply]
($apply.spec ..injection ..comparison /.apply))
(_.for [/.monad]
($monad.spec ..injection ..comparison /.monad))
(_.cover [/.assumed]
(n.= expected
(/.assumed (#/.Success expected))))
(_.cover [/.of_maybe]
(case [(/.of_maybe (#.Some expected))
(/.of_maybe #.None)]
[(#/.Success actual) (#/.Failure _)]
(n.= expected actual)
_
false))
(_.cover [/.maybe]
(case [(/.maybe (#/.Success expected))
(/.maybe (: (/.Try Nat) (#/.Failure error)))]
[(#.Some actual) #.None]
(n.= expected actual)
_
false))
(_.cover [/.else]
(and (n.= expected
(/.else alternative (#/.Success expected)))
(n.= alternative
(/.else alternative (: (Try Nat) (#/.Failure error))))))
(_.cover [/.with /.lifted]
(let [lifted (/.lifted io.monad)]
(|> (do (/.with io.monad)
[a (lifted (io\in expected))
b (in alternative)]
(in (n.+ a b)))
io.run!
(case> (#/.Success result)
(n.= (n.+ expected alternative)
result)
_
false))))
)))
|