aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program/aedifex/command/test.lux
blob: f4da76ac4019402fb904f2fba065830719624673 (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
(.module:
  [lux (#- Name)
   [abstract
    [monad (#+ do)]]
   [control
    [concurrency
     ["." promise (#+ Promise) ("#\." monad)]]
    [security
     ["!" capability]]]
   [data
    [text
     ["%" format (#+ format)]]
    [number
     ["i" int]]]
   [world
    [environment (#+ Environment)]
    ["." file]
    ["." shell (#+ Shell)]]]
  ["." // #_
   ["#." build]
   ["/#" // #_
    ["#." action]
    ["#." command (#+ Command)]
    ["#." runtime]
    [dependency
     [resolution (#+ Resolution)]]]])

(def: #export (do! environment fs shell resolution profile)
  (-> Environment (file.System Promise) (Shell Promise) Resolution (Command Any))
  (do ///action.monad
    [[compiler program] (//build.do! environment fs shell resolution profile)
     working-directory (promise\wrap (//build.working-directory environment))
     #let [_ (log! "[TEST STARTED]")]
     process (!.use (:: shell execute)
                    [environment
                     working-directory
                     (case compiler
                       (#//build.JVM artifact) (///runtime.java program)
                       (#//build.JS artifact) (///runtime.node program))
                     (list)])
     exit (!.use (:: process await) [])
     #let [_ (log! (if (i.= shell.normal exit)
                     "[TEST ENDED]"
                     "[TEST FAILED]"))]]
    (wrap [])))