forked from hofstadter-io/hof
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.cue
136 lines (120 loc) · 1.84 KB
/
test.cue
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
package hof
BashTest: {
@task(os.Exec)
script: string
cmd: ["bash", "-c", script]
}
GoTest: {
@task(os.Exec)
cmd: ["bash", "-c", scripts.DEV]
}
scripts: {
DEV: string | *"""
rm -rf .workdir
go test -cover ./
"""
CI: string | *"""
rm -rf .workdir
go test -cover ./ -coverprofile cover.out -json > tests.json
"""
}
watchTest: {
@flow(watch/test)
watch: {
@task(fs.Watch)
first: true
globs: [
"lib/structural/**/*.*",
]
handler: {
event?: _
compile: {
@task(os.Exec)
cmd: ["hof", "flow", "-f", "test/hack"]
}
}
}
}
tests: {
// want to discover nested too
// @flow(test)
hack: {
test: string | *"TestMainFlow" @tag(test)
@flow(test/hack)
prt: {text: "testing: \(test)\n"} @task(os.Stdout)
run: {
@task(os.Exec)
cmd: ["bash", "-c", script]
dir: "flow"
script: """
rm -rf .workdir
go test -run \(test) .
"""
}
}
flow: {
@flow(test/flow)
run: GoTest & {
// dir: "lib/flow" // panics, segfault
dir: "flow"
}
}
dm: {
@flow(test/dm)
run: GoTest & {
dir: "lib/datamodel/test"
}
}
gen: {
@flow(test/gen)
run: BashTest & {
dir: "test/templates"
script: """
set -e
# deps & gen
hof mod vendor
echo "gha got here 1"
hof gen
# should have no diff
echo "gha got here 2"
git diff
git status
git diff --exit-code
"""
}
}
render: {
@flow(test/render)
run: GoTest & {
dir: "test/render"
}
}
create: {
@flow(test/create)
test: BashTest & {
dir: "test/create"
script: """
cd test_01 && make test && cd ..
cd test_02 && make test && cd ..
"""
}
}
st: {
@flow(test/st)
run: GoTest & {
dir: "lib/structural"
}
}
mod: {
@flow(test/mod)
run: GoTest & {
dir: "lib/mod"
}
}
fmt: {
@flow(test/fmt)
run: GoTest & {
dir: "formatters/test"
}
}
}