blob: df8db3e88a0f4d9abcaa06bcc235321891e2dcf9 (
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
|
(.module:
[lux #*
["_" test (#+ Test)]
[abstract
[equivalence (#+ Equivalence)]
[hash (#+ Hash)]
["." monad (#+ do)]]
[control
["." io]
["." try]
["." exception (#+ exception:)]]
[data
["." product]
["." binary (#+ Binary)]
["." text
["%" format (#+ format)]]
[collection
["." dictionary (#+ Dictionary)]]]
[math
["." random (#+ Random)]]
[world
[net
["." uri (#+ URI)]]]]
["." / #_
["#." identity]
["#." origin]
[//
["@." artifact]]]
{#spec
["$." /]}
{#program
["." /
["/#" // #_
["#." artifact (#+ Version Artifact)
["#/." extension (#+ Extension)]]]]})
(def: artifact
(-> Version Artifact)
(|>> ["com.github.luxlang" "test-artifact"]))
(exception: (not_found {uri URI})
(exception.report
["URI" (%.text uri)]))
(type: Store
(Dictionary URI Binary))
(def: #export empty
Store
(dictionary.new text.hash))
(structure: #export simulation
(/.Simulation Store)
(def: (on_download uri state)
(case (dictionary.get uri state)
(#.Some content)
(exception.return [state content])
#.None
(exception.throw ..not_found [uri])))
(def: (on_upload uri content state)
(exception.return (dictionary.put uri content state))))
(def: #export test
Test
(<| (_.covering /._)
($_ _.and
(_.for [/.mock /.Simulation]
($/.spec (..artifact "1.2.3-YES")
(..artifact "4.5.6-NO")
(/.mock ..simulation ..empty)))
/identity.test
/origin.test
)))
|