aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/meta/compiler/meta/cache/artifact.lux
blob: 9c3d956632e95f49843676121d153c9fa8a9f751 (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
... This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
... If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.

(.require
 [library
  [lux (.except)
   [abstract
    [monad (.only do)]]
   [control
    ["[0]" try]
    [concurrency
     ["[0]" async (.only Async) (.use "[1]#[0]" monad)]]]
   [data
    ["[0]" binary (.use "[1]#[0]" equivalence)
     ["$[1]" \\test]]]
   [math
    ["[0]" random (.only Random)]
    [number
     ["n" nat]]]
   [world
    ["[0]" file]]
   [test
    ["[0]" unit]
    ["_" property (.only Test)]]]]
 [\\library
  ["[0]" / (.only)
   ["/[1]" //
    ["[1][0]" module]]]]
 ["$[0]" ///
  ["[1][0]" context]])

(def .public test
  Test
  (<| (_.covering /._)
      (do [! random.monad]
        [context $///context.random
         .let [/ "/"
               fs (file.mock /)]
         @module random.nat
         @artifact random.nat
         expected ($binary.random 1)]
        (all _.and
             (in (do [! async.monad]
                   [pre (of fs file? (/.path fs context @module @artifact))
                    _ (//module.enable! ! fs context @module)
                    write! (/.cache! fs context @module @artifact expected)
                    post (of fs file? (/.path fs context @module @artifact))
                    read! (/.cache fs context @module @artifact)]
                   (unit.coverage [/.path /.cache! /.cache]
                     (and (not pre)
                          (when write!
                            {try.#Success _} true
                            {try.#Failure _} false)
                          post
                          (when read!
                            {try.#Success actual} (binary#= expected actual)
                            {try.#Failure _} false)))))
             ))))