aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/aedifex/metadata/snapshot.lux
blob: a2f0b65db51c85743becabcc18b56743dd38197c (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
(.module:
  [lux #*
   ["_" test (#+ Test)]
   [abstract
    [monad (#+ do)]
    {[0 #spec]
     [/
      ["$." equivalence]]}]
   [control
    ["." try ("#\." functor)]
    [parser
     ["<.>" xml]]]
   [math
    [number
     ["n" nat]]]
   ["." time
    ["." date]
    ["." year]
    ["." month]
    ["." instant (#+ Instant)]
    ["." duration]]
   [math
    ["." random (#+ Random)]]
   [macro
    ["." code]]]
  ["$." /// #_
   ["#." artifact
    ["#/." type]]]
  {#program
   ["." /]})

(def: random_instant
  (Random Instant)
  (do {! random.monad}
    [year (\ ! map (|>> (n.% 10,000) .int) random.nat)
     month (\ ! map (n.% 13) random.nat)
     day_of_month (\ ! map (n.% 29) random.nat)
     hour (\ ! map (n.% 24) random.nat)
     minute (\ ! map (n.% 60) random.nat)
     second (\ ! map (n.% 60) random.nat)]
    (wrap (try.assume
           (do try.monad
             [year (year.year year)
              month (month.by_number month)
              date (date.date year month day_of_month)
              time (time.time
                    {#time.hour hour
                     #time.minute minute
                     #time.second second
                     #time.milli_second 0})]
             (wrap (instant.from_date_time date time)))))))

(def: random_versioning
  (Random /.Versioning)
  ($_ random.and
      ..random_instant
      random.nat
      (random.list 5 $///artifact/type.random)
      ))

(def: #export random
  (Random /.Metadata)
  ($_ random.and
      $///artifact.random
      ..random_versioning))

(def: #export test
  Test
  (<| (_.covering /._)
      (_.for [/.Metadata])
      ($_ _.and
          (_.for [/.equivalence]
                 ($equivalence.spec /.equivalence ..random))
          (do random.monad
            [expected ..random]
            (_.cover [/.format /.parser]
                     (|> expected
                         /.format
                         (<xml>.run /.parser)
                         (try\map (\ /.equivalence = expected))
                         (try.default false))))
          )))