aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/specification/aedifex/repository.lux
blob: f5f278e7c759edfa3ab687575dd3e403b7c543f7 (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
(.require
 [library
  [lux (.except)
   [abstract
    [monad (.only do)]]
   [control
    ["[0]" try (.only Try)]
    [concurrency
     ["[0]" async (.only Async)]]]
   [data
    ["[0]" binary (.only)
     ["_[1]" \\test]]]
   [math
    ["[0]" random]]
   [test
    ["[0]" unit]
    ["_" property (.only Test)]]]]
 [\\program
  ["[0]" / (.only)
   ["[1][0]" remote]
   ["/[1]" //
    ["[1][0]" artifact (.only Artifact)
     ["[1]/[0]" extension]]]]]
 [\\test
  ["_[0]" //
   ["[1][0]" artifact]]])

(def .public (spec valid_artifact invalid_artifact subject)
  (-> Artifact Artifact (/.Repository Async) Test)
  (do random.monad
    [expected (_binary.random 100)]
    (in (all unit.and
             (do async.monad
               [.let [good_uri (/remote.uri (the //artifact.#version valid_artifact) valid_artifact //artifact/extension.lux_library)]
                good_upload! (at subject upload good_uri expected)
                good_download! (at subject download good_uri)

                .let [bad_uri (/remote.uri (the //artifact.#version invalid_artifact) invalid_artifact //artifact/extension.lux_library)]
                bad_upload! (at subject upload bad_uri expected)
                bad_download! (at subject download bad_uri)]
               (unit.coverage [/.Repository]
                 (let [successfull_flow!
                       (case [good_upload! good_download!]
                         [{try.#Success _} {try.#Success actual}]
                         (at binary.equivalence = expected actual)

                         _
                         false)

                       failed_flow!
                       (case [bad_upload! bad_download!]
                         [{try.#Failure _} {try.#Failure _}]
                         true

                         _
                         false)]
                   (and successfull_flow!
                        failed_flow!))))
             ))))