blob: 3c9dd8f2c82d95baae6925a5997648b9c6f945e2 (
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
|
(.using
[library
[lux "*"
["_" test {"+" Test}]
[abstract
[monad {"+" do}]]
[control
["[0]" try {"+" Try}]
[concurrency
["[0]" async {"+" Async}]]]
[data
["[0]" binary
["_[1]" \\test]]]
[math
["[0]" random]]]]
[\\program
["[0]" /
["[1][0]" remote]
["/[1]" // "_"
["[1][0]" artifact {"+" 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 ($_ _.and'
(do async.monad
[.let [good_uri (/remote.uri (value@ //artifact.#version valid_artifact) valid_artifact //artifact/extension.lux_library)]
good_upload! (# subject upload good_uri expected)
good_download! (# subject download good_uri)
.let [bad_uri (/remote.uri (value@ //artifact.#version invalid_artifact) invalid_artifact //artifact/extension.lux_library)]
bad_upload! (# subject upload bad_uri expected)
bad_download! (# subject download bad_uri)]
(_.cover' [/.Repository]
(let [successfull_flow!
(case [good_upload! good_download!]
[{try.#Success _} {try.#Success actual}]
(# binary.equivalence = expected actual)
_
false)
failed_flow!
(case [bad_upload! bad_download!]
[{try.#Failure _} {try.#Failure _}]
true
_
false)]
(and successfull_flow!
failed_flow!))))
))))
|