aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/aedifex/artifact.lux
blob: 621af00affecc4a36a7a4edf479526b71ca15c3f (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
(.require
 [library
  [lux (.except)
   [abstract
    [monad (.only do)]
    [hash (.only Hash)]
    [\\specification
     ["$[0]" equivalence]
     ["$[0]" order]
     ["$[0]" hash]]]
   [data
    ["[0]" text (.use "[1]#[0]" equivalence)]]
   [math
    ["[0]" random (.only Random)]]
   [world
    ["[0]" file]
    [net
     ["[0]" uri]]]
   [test
    ["_" property (.only Test)]]]]
 ["[0]" /
  ["[1][0]" extension]
  ["[1][0]" snapshot]
  ["[1][0]" time]
  ["[1][0]" type]
  ["[1][0]" versioning]]
 [\\program
  ["[0]" /]])

(def .public random
  (Random /.Artifact)
  (let [size 4]
    (all random.and
         (random.lower_case size)
         (random.lower_case size)
         (random.lower_case size))))

(def .public test
  Test
  (<| (_.covering /._)
      (do random.monad
        [sample ..random])
      (_.for [/.Group /.Name /.Version
              /.Artifact]
             (all _.and
                  (_.for [/.equivalence]
                         ($equivalence.spec /.equivalence ..random))
                  (_.for [/.order]
                         ($order.spec /.order ..random))
                  (_.for [/.hash]
                         ($hash.spec /.hash ..random))

                  (_.coverage [/.format /.identity]
                    (and (text.ends_with? (/.identity sample) (/.format sample))
                         (not (text#= (/.identity sample) (/.format sample)))))
                  
                  /extension.test
                  /snapshot.test
                  /time.test
                  /type.test
                  /versioning.test
                  ))))