blob: de9a05fde87ba22536959825b605c76135d18bc4 (
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
|
(.module:
[library
[lux #*
["_" test (#+ Test)]
[abstract
[monad (#+ do)]]
[control
["." try (#+ Try)]
[concurrency
["." promise (#+ Promise)]]]
[data
["." binary
["_#" \\test]]]
[math
["." random]]]]
[\\program
["." /
["#." remote]
["/#" // #_
["#." artifact (#+ Artifact)
["#/." extension]]]]]
[\\test
["_." // #_
["#." artifact]]])
(def: #export (spec valid_artifact invalid_artifact subject)
(-> Artifact Artifact (/.Repository Promise) Test)
(do random.monad
[expected (_binary.random 100)]
(wrap ($_ _.and'
(do promise.monad
[#let [good_uri (/remote.uri (get@ #//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 (get@ #//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!))))
))))
|