generated from seanpm2001/Git-Template_V8
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEarthfile
236 lines (197 loc) · 6.64 KB
/
Earthfile
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
VERSION 0.6
ARG DOCKERHUB_USER_SECRET=+secrets/DOCKERHUB_USER
ARG DOCKERHUB_TOKEN_SECRET=+secrets/DOCKERHUB_TOKEN
ARG DOCKERHUB_MIRROR
ARG DOCKERHUB_MIRROR_INSECURE=false
ARG DOCKERHUB_AUTH=true
FROM ../..+earthly-integration-test-base \
--DOCKERHUB_AUTH=$DOCKERHUB_AUTH \
--DOCKERHUB_USER_SECRET=$DOCKERHUB_USER_SECRET \
--DOCKERHUB_TOKEN_SECRET=$DOCKERHUB_TOKEN_SECRET \
--DOCKERHUB_MIRROR=$DOCKERHUB_MIRROR \
--DOCKERHUB_MIRROR_INSECURE=$DOCKERHUB_MIRROR_INSECURE
ENV EARTHLY_SHOW_HIDDEN=0
test-root-commands:
RUN echo "account
bootstrap
config
ls
org
preview
prune
satellite
secret " > expected
RUN COMP_LINE="earthly " COMP_POINT=8 earthly > actual
RUN diff expected actual
test-hidden-root-commands:
ENV EARTHLY_SHOW_HIDDEN=1
RUN echo "account
bootstrap
build
config
debug
docker
docker2earthly
ls
org
preview
prune
satellite
secret " > expected
RUN COMP_LINE="earthly " COMP_POINT=8 earthly > actual
RUN diff expected actual
test-build-flags:
RUN COMP_LINE="earthly --" COMP_POINT=10 earthly | grep -- "--allow-privileged"
test-targets:
COPY fake.earth ./Earthfile
RUN echo "+mytarget
+othertarget
+othertargetwithargs
+targetwithrequiredarg " > expected
RUN COMP_LINE="earthly +" COMP_POINT=9 earthly > actual
RUN diff expected actual
RUN echo "+mytarget " > expected
RUN COMP_LINE="earthly +m" COMP_POINT=10 earthly > actual
RUN diff expected actual
test-targets-without-version:
COPY fake.earth ./Earthfile
RUN mv Earthfile Earthfile.bkup && cat Earthfile.bkup | grep -v VERSION > Earthfile
RUN echo "+mytarget
+othertarget
+othertargetwithargs
+targetwithrequiredarg " > expected
RUN COMP_LINE="earthly +" COMP_POINT=9 earthly > actual
RUN diff expected actual
RUN echo "+mytarget " > expected
RUN COMP_LINE="earthly +m" COMP_POINT=10 earthly > actual 2> errlog
RUN diff expected actual
RUN test -f errlog && ! test -s errlog
test-target-with-build-args:
COPY fake.earth ./Earthfile
RUN echo "--city=
--country=" > expected
RUN COMP_LINE="earthly +othertargetwithargs -" COMP_POINT=30 earthly > actual
RUN diff expected actual
RUN echo "--city=
--country=" > expected
RUN COMP_LINE="earthly +othertargetwithargs --c" COMP_POINT=32 earthly > actual
RUN diff expected actual
RUN echo "--city=" > expected
RUN COMP_LINE="earthly +othertargetwithargs --ci" COMP_POINT=33 earthly > actual
RUN diff expected actual
RUN > expected
RUN COMP_LINE="earthly +othertargetwithargs --city=" COMP_POINT=36 earthly > actual
RUN diff expected actual
RUN > expected
RUN COMP_LINE="earthly +othertargetwithargs --city=foo" COMP_POINT=39 earthly > actual
RUN diff expected actual
test-targets-from-other-dir:
RUN mkdir -p child/dir
COPY fake.earth child/dir/Earthfile
RUN echo "./child/dir+mytarget
./child/dir+othertarget
./child/dir+othertargetwithargs
./child/dir+targetwithrequiredarg " > expected
RUN COMP_LINE="earthly ./child/dir+" COMP_POINT=20 earthly > actual
RUN diff expected actual
RUN echo "./child/dir+mytarget " > expected
RUN COMP_LINE="earthly ./child/dir+m" COMP_POINT=21 earthly > actual
RUN diff expected actual
test-target-with-build-args-from-other-dir:
RUN mkdir -p child/dir
COPY fake.earth child/dir/Earthfile
RUN echo "--city=
--country=" > expected
RUN COMP_LINE="earthly ./child/dir+othertargetwithargs -" COMP_POINT=41 earthly > actual
RUN diff expected actual
RUN echo "--city=
--country=" > expected
RUN COMP_LINE="earthly ./child/dir+othertargetwithargs --c" COMP_POINT=43 earthly > actual
RUN diff expected actual
RUN echo "--city=" > expected
RUN COMP_LINE="earthly ./child/dir+othertargetwithargs --ci" COMP_POINT=44 earthly > actual
RUN diff expected actual
test-target-with-required-arg:
COPY fake.earth Earthfile
RUN echo "--musthave=" > expected
RUN COMP_LINE="earthly +targetwithrequiredarg -" COMP_POINT=32 earthly > actual
RUN diff expected actual
test-base-only-target:
COPY base.earth ./Earthfile
RUN echo "+base " > expected
RUN COMP_LINE="earthly +" COMP_POINT=9 earthly > actual
RUN diff expected actual
test-no-parent-at-root:
WORKDIR /
RUN echo "./" > expected
RUN COMP_LINE="earthly ." COMP_POINT=9 earthly > actual
RUN diff expected actual
test-no-parent-at-root-from-home:
WORKDIR /home
RUN echo "../dev/
../etc/
../lib/
../media/
../proc/
../root/
../run/
../sys/
../usr/
../var/" > expected
RUN COMP_LINE="earthly ../" COMP_POINT=11 earthly > actual
RUN diff expected actual
test-relative-dir-targets:
RUN mkdir -p /test/foo
COPY fake.earth /test/foo/Earthfile
WORKDIR /test/
RUN echo "./foo+" > expected
RUN COMP_LINE="earthly ./" COMP_POINT=10 earthly > actual
RUN diff expected actual
RUN echo "./foo+mytarget
./foo+othertarget
./foo+othertargetwithargs
./foo+targetwithrequiredarg " > expected
RUN COMP_LINE="earthly ./foo+" COMP_POINT=14 earthly > actual
RUN diff expected actual
test-targets-in-dir-and-subdir:
RUN mkdir -p /test/foo/subdir
COPY fake.earth /test/foo/Earthfile
COPY fake.earth /test/foo/subdir/Earthfile
WORKDIR /test/
RUN echo "./foo+
./foo/" > expected
RUN COMP_LINE="earthly ./" COMP_POINT=10 earthly > actual
RUN diff expected actual
RUN COMP_LINE="earthly ./f" COMP_POINT=11 earthly > actual
RUN diff expected actual
RUN COMP_LINE="earthly ./foo" COMP_POINT=13 earthly > actual
RUN diff expected actual
test-targets-in-two-subdirs-that-are-similar:
COPY fake.earth /test/foo/subdir/Earthfile
COPY fake.earth /test/food/subdir/Earthfile
WORKDIR /test/
RUN echo "./foo/
./food/" > expected
RUN COMP_LINE="earthly ./" COMP_POINT=10 earthly > actual
RUN diff expected actual
RUN COMP_LINE="earthly ./f" COMP_POINT=11 earthly > actual
RUN diff expected actual
RUN COMP_LINE="earthly ./foo" COMP_POINT=13 earthly > actual
RUN diff expected actual
test-all:
BUILD +test-root-commands
BUILD +test-hidden-root-commands
BUILD +test-build-flags
BUILD +test-targets
BUILD +test-targets-without-version
BUILD +test-targets-from-other-dir
BUILD +test-target-with-build-args
BUILD +test-target-with-build-args-from-other-dir
BUILD +test-target-with-required-arg
BUILD +test-base-only-target
BUILD +test-relative-dir-targets
BUILD +test-no-parent-at-root
BUILD +test-no-parent-at-root-from-home
BUILD +test-targets-in-dir-and-subdir
BUILD +test-targets-in-two-subdirs-that-are-similar
# Taken from: https://github.com/earthly/earthly/blob/main/tests/autocompletion/Earthfile