blob: 65f2bdc4e76b5384d8eebf910d751c6203283b56 (
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
|
(.module:
[library
[lux (#- Name)
[abstract
[monad (#+ do)]]
[control
[concurrency
["." promise (#+ Promise) ("#\." monad)]]]
[math
[number
["i" int]]]
[world
["." program (#+ Program)]
["." file]
["." shell (#+ Exit Shell)]
["." console (#+ Console)]]]]
["." // #_
["#." build]
["/#" // #_
["#" profile]
["#." action]
["#." command (#+ Command)]
["#." runtime]
[dependency
[resolution (#+ Resolution)]]]])
(def: #export start "[TEST STARTED]")
(def: #export success "[TEST ENDED]")
(def: #export failure "[TEST FAILED]")
(def: #export (do! console program fs shell resolution profile)
(-> (Console Promise) (Program Promise) (file.System Promise) (Shell Promise) Resolution (Command [Exit Any]))
(do promise.monad
[environment (program.environment promise.monad program)
#let [working_directory (\ program directory)]]
(do {! ///action.monad}
[[build_exit compiler program] (//build.do! console program fs shell resolution
(set@ #///.program (get@ #///.test profile) profile))]
(if (i.= shell.normal build_exit)
(do !
[_ (console.write_line ..start console)
#let [[test_command test_parameters] (case compiler
(^template [<tag> <runtime>]
[(<tag> artifact)
(///runtime.for (get@ <runtime> profile) program)])
([#//build.JVM #///.java]
[#//build.JS #///.js]
[#//build.Python #///.python]
[#//build.Lua #///.lua]
[#//build.Ruby #///.ruby]))]
process (\ shell execute [environment
working_directory
test_command
test_parameters])
_ (//build.log_output! console process)
_ (//build.log_error! console process)
exit (\ process await [])
_ (console.write_line (if (i.= shell.normal exit)
..success
..failure)
console)]
(wrap [exit []]))
(wrap [build_exit []])))))
|