aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/aedifex/repository/local.lux
blob: 8eadfd24c1bad5d956070e479c949b8173d718bd (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
(.require
 [library
  [lux (.except)
   ["_" test (.only Test)]
   [abstract
    [monad (.only do)]]
   [control
    ["[0]" try (.use "[1]#[0]" functor)]
    [parser
     ["[0]" environment]]
    [concurrency
     ["[0]" async]]]
   [data
    ["[0]" binary (.use "[1]#[0]" equivalence)]
    [text
     [encoding
      ["[0]" utf8]]]]
   [math
    ["[0]" random]]
   [world
    ["[0]" file]
    ["[0]" program]]]]
 [\\program
  ["[0]" /]])

(def .public test
  Test
  (<| (_.covering /._)
      (do [! random.monad]
        [/ (random.upper_case 1)
         home (random.lower_case 10)
         working_directory (random.lower_case 10)
         .let [fs (file.mock /)
               program (program.async (program.mock environment.empty home working_directory))
               repo (/.repository program fs)]

         uri (random.lower_case 10)
         expected (at ! each (at utf8.codec encoded)
                      (random.lower_case 10))]
        (all _.and
             (in (do async.monad
                   [before_upload (at repo download uri)
                    _ (at repo upload uri expected)
                    actual (at repo download uri)]
                   (_.coverage' [/.repository]
                     (and (case before_upload
                            {try.#Success _} false
                            {try.#Failure _} true)
                          (|> actual
                              (try#each (binary#= expected))
                              (try.else false))))))
             ))))