-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
test.cue
200 lines (176 loc) · 2.81 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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
package hof
import "strings"
// a hidden task
_Hidden: {
foo: "bar"
moo?: _
#def: "done"
#opt?: string
}
#somedef: {
foo: "bar"
moo?: _
#def: "done"
#opt?: string
}
BashTest: {
@task(os.Exec)
_script: string
cmd: ["bash", "-c", _script]
_foo: "bar"
moo?: _
#def: string
}
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)
// primarily used by devs to select isolated tests to run
one: {
@flow(test/one)
test: string | *"TestModAuthdApikeysTests" @tag(test)
dir: string | *"lib/mod" @tag(dir)
prt: {text: "testing: \(test)\n"} @task(os.Stdout)
run: {
@task(os.Exec)
cmd: ["bash", "-c", _script]
"dir": dir
_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
hof gen
# should have no diff
git diff
git status
git diff --exit-code
"""
}
}
render: {
@flow(test/render)
run: GoTest & {
dir: "test/render"
_script: """
echo "no-op"
echo "now run in the dagger workflow"
"""
}
}
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"
}
}
cue: {
all: {
@flow(test/cue)
run: GoTest & {
dir: "lib/cuecmd"
}
}
hack: {
@flow(test/cue/hack)
run: {
@task(os.Exec)
cmd: ["bash", "-c", _script]
dir: "lib/cuecmd"
_script: """
rm -rf .workdir
go test -cover -run Eval ./
"""
}
}
for k in ["def", "eval", "export", "vet"] {
(k): {
let K = strings.ToTitle(k)
#hof: Flow: {Root: true, Name: "test/cue/\(k)"}
run: {
@task(os.Exec)
cmd: ["bash", "-c", _script]
dir: "lib/cuecmd"
_script: """
rm -rf .workdir
go test -cover -run \(K) ./
"""
}
}
}
}
}