aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/meta/compiler/meta/cache/module.lux
blob: bdf4b01fe6701426c1dc08c705095fa9d957193d (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
96
97
98
99
... 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]
    ["[0]" exception]
    [concurrency
     ["[0]" async (.only Async) (.use "[1]#[0]" monad)]]]
   [math
    ["[0]" random]]
   [world
    ["[0]" file]]
   [test
    ["[0]" unit]
    ["_" property (.only Test)]]]]
 [\\library
  ["[0]" /]]
 ["$[0]" ///
  ["[1][0]" context]])

(`` (def (bad it)
      (-> (file.System Async) (file.System Async))
      (implementation
       (,, (with_template [<name>]
             [(def <name>
                (of it <name>))]

             [separator]
             [file?]
             [directory?]
             [modify]
             [write]
             [append]
             [move]
             [directory_files]
             [sub_directories]
             [file_size]
             [last_modified]
             [can_execute?]
             [read]
             [delete]
             ))

       (def (make_directory path)
         (async#in {try.#Failure ""}))
       )))

(def .public test
  Test
  (<| (_.covering /._)
      (do [! random.monad]
        [context $///context.random
         @module random.nat]
        (all _.and
             (in (do [! async.monad]
                   [.let [/ "/"
                          fs (file.mock /)]
                    pre/0 (of fs directory? (/.path fs context @module))
                    pre/1 (/.enabled? fs context @module)
                    outcome (/.enable! ! fs context @module)
                    post/0 (of fs directory? (/.path fs context @module))
                    post/1 (/.enabled? fs context @module)]
                   (unit.coverage [/.path /.enabled? /.enable!]
                     (and (not pre/0)
                          (not pre/1)
                          
                          (when outcome
                            {try.#Success _} true
                            {try.#Failure _} false)
                          
                          post/0
                          post/1))))
             (in (do [! async.monad]
                   [.let [/ "/"
                          fs (file.mock /)]
                    pre/0 (of fs directory? (/.path fs context @module))
                    pre/1 (/.enabled? fs context @module)
                    outcome (/.enable! ! (..bad fs) context @module)
                    post/0 (of fs directory? (/.path fs context @module))
                    post/1 (/.enabled? fs context @module)]
                   (unit.coverage [/.cannot_enable]
                     (and (not pre/0)
                          (not pre/1)
                          
                          (when outcome
                            {try.#Success _}
                            false
                            
                            {try.#Failure error}
                            (exception.match? /.cannot_enable error))
                          
                          (not post/0)
                          (not post/1)))))
             ))))