aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/type/dynamic.lux
blob: b4e8536c516a1ed6262d32d5f9355db502c2186a (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
(.using
  [library
   [lux "*"
    ["_" test {"+" Test}]
    [abstract
     [monad {"+" do}]]
    [control
     ["[0]" try]
     ["[0]" exception]]
    [data
     ["[0]" text ("[1]#[0]" equivalence)
      ["%" format {"+" format}]]]
    [math
     ["[0]" random {"+" Random}]
     [number
      ["n" nat]]]]]
  [\\library
   ["[0]" /]])

(def: .public test
  Test
  (<| (_.covering /._)
      (_.for [/.Dynamic])
      (do random.monad
        [expected random.nat]
        ($_ _.and
            (_.cover [/.:dynamic /.:static]
                     (case (/.:static Nat (/.:dynamic expected))
                       {try.#Success actual}
                       (n.= expected actual)
                       
                       {try.#Failure _}
                       false))
            (_.cover [/.wrong_type]
                     (case (/.:static Text (/.:dynamic expected))
                       {try.#Success actual}
                       false
                       
                       {try.#Failure error}
                       (exception.match? /.wrong_type error)))
            (_.cover [/.format]
                     (case (/.format (/.:dynamic expected))
                       {try.#Success actual}
                       (text#= (%.nat expected) actual)
                       
                       {try.#Failure _}
                       false))
            ))))