forked from firecow/gitlab-ci-local
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintegration.test.ts
More file actions
398 lines (349 loc) · 12.8 KB
/
Copy pathintegration.test.ts
File metadata and controls
398 lines (349 loc) · 12.8 KB
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
import {WriteStreamsMock} from "../../../src/write-streams.js";
import {handler} from "../../../src/handler.js";
import assert, {AssertionError} from "assert";
import {initSpawnSpy} from "../../mocks/utils.mock.js";
import {WhenStatics} from "../../mocks/when-statics.js";
import chalk from "chalk-template";
beforeAll(() => {
initSpawnSpy(WhenStatics.all);
});
test.concurrent("include-inputs basic example", async () => {
const writeStreams = new WriteStreamsMock();
await handler({
cwd: "tests/test-cases/include-inputs/input-templates/basic-example",
preview: true,
}, writeStreams);
const expected = `---
stages:
- .pre
- test
- .post
scan-website:
script:
- echo hello website
- echo hello website
- echo hello website
scan-db:
script:
- echo hello db
- echo hello db
- echo hello db`;
expect(writeStreams.stdoutLines[0]).toEqual(expected);
});
test.concurrent("include-inputs required inputs", async () => {
try {
const writeStreams = new WriteStreamsMock();
await handler({
cwd: "tests/test-cases/include-inputs/input-templates/required-inputs",
preview: true,
}, writeStreams);
} catch (e: any) {
assert(e instanceof AssertionError, "e is not instanceof AssertionError");
expect(e.message).toContain("This GitLab CI configuration is invalid:");
expect(e.message).toContain(
chalk`\`{blueBright required_inputs}\` input: required value has not been provided`,
);
return;
}
throw new Error("Error is expected but not thrown/caught");
});
test.concurrent("include-inputs unknown interpolation key (TypeError)", async () => {
try {
const writeStreams = new WriteStreamsMock();
await handler({
cwd: "tests/test-cases/include-inputs/input-templates/unknown-interpolation-key-1",
preview: true,
}, writeStreams);
} catch (e: any) {
assert(e instanceof AssertionError, "e is not instanceof AssertionError");
expect(e.message).toContain("This GitLab CI configuration is invalid:");
expect(e.message).toContain(
chalk`unknown interpolation key: \`foo\`.`,
);
return;
}
throw new Error("Error is expected but not thrown/caught");
});
test.concurrent("include-inputs unknown interpolation key (AssertionError)", async () => {
try {
const writeStreams = new WriteStreamsMock();
await handler({
cwd: "tests/test-cases/include-inputs/input-templates/unknown-interpolation-key-2",
preview: true,
}, writeStreams);
} catch (e: any) {
assert(e instanceof AssertionError, "e is not instanceof AssertionError");
expect(e.message).toContain("This GitLab CI configuration is invalid:");
expect(e.message).toContain(
chalk`unknown interpolation key: \`foo\`.`,
);
return;
}
throw new Error("Error is expected but not thrown/caught");
});
test.concurrent("include-inputs defaults", async () => {
const writeStreams = new WriteStreamsMock();
await handler({
cwd: "tests/test-cases/include-inputs/input-templates/default",
preview: true,
}, writeStreams);
const expected = `---
stages:
- .pre
- test
- .post
scan-website:
script:
- echo string
- echo 1
- echo true
- echo overwrite default value
- alice
- bob`;
expect(writeStreams.stdoutLines[0]).toEqual(expected);
});
test.concurrent("include-inputs interpolation key containing hyphen", async () => {
const writeStreams = new WriteStreamsMock();
await handler({
cwd: "tests/test-cases/include-inputs/input-templates/interpolation-key-hyphen",
preview: true,
}, writeStreams);
const expected = `---
stages:
- .pre
- test
- .post
scan-website:
script:
- echo baz`;
expect(writeStreams.stdoutLines[0]).toEqual(expected);
});
test.concurrent("include-inputs interpolation repeated", async () => {
const writeStreams = new WriteStreamsMock();
await handler({
cwd: "tests/test-cases/include-inputs/input-templates/interpolation-repeat",
preview: true,
}, writeStreams);
const expected = `---
stages:
- .pre
- test
- .post
job foo foo:
script:
- echo foofoo`;
expect(writeStreams.stdoutLines[0]).toEqual(expected);
});
test.concurrent("include-inputs inputs validation for array", async () => {
try {
const writeStreams = new WriteStreamsMock();
await handler({
cwd: "tests/test-cases/include-inputs/input-templates/type-validation/array",
preview: true,
}, writeStreams);
expect(true).toBe(false);
} catch (e) {
assert(e instanceof AssertionError, "e is not instanceof AssertionError");
expect(e.message).toContain("This GitLab CI configuration is invalid:");
expect(e.message).toContain(chalk`\`{blueBright array_input}\` input: provided value is not a {blueBright array}.`);
}
});
test.concurrent("include-inputs inputs validation for string", async () => {
try {
const writeStreams = new WriteStreamsMock();
await handler({
cwd: "tests/test-cases/include-inputs/input-templates/type-validation/string",
preview: true,
}, writeStreams);
expect(true).toBe(false);
} catch (e) {
assert(e instanceof AssertionError, "e is not instanceof AssertionError");
expect(e.message).toContain("This GitLab CI configuration is invalid:");
expect(e.message).toContain(chalk`\`{blueBright string_input}\` input: provided value is not a {blueBright string}.`);
}
});
test.concurrent("include-inputs inputs validation for number", async () => {
try {
const writeStreams = new WriteStreamsMock();
await handler({
cwd: "tests/test-cases/include-inputs/input-templates/type-validation/number",
preview: true,
}, writeStreams);
} catch (e: any) {
assert(e instanceof AssertionError, "e is not instanceof AssertionError");
expect(e.message).toContain("This GitLab CI configuration is invalid:");
expect(e.message).toContain(chalk`\`{blueBright number_input}\` input: provided value is not a {blueBright number}.`);
return;
}
throw new Error("Error is expected but not thrown/caught");
});
test.concurrent("include-inputs for type array", async () => {
const writeStreams = new WriteStreamsMock();
await handler({
cwd: "tests/test-cases/include-inputs/input-templates/types/array",
preview: true,
}, writeStreams);
const expected = `---
stages:
- .pre
- test
- .post
test_job:
rules:
- if: $CI_PIPELINE_SOURCE == "merge_request_event"
when: manual
- if: $CI_PIPELINE_SOURCE == "schedule"
script:
- ls`;
expect(writeStreams.stdoutLines[0]).toEqual(expected);
});
test.concurrent("include-inputs for type boolean (truthy)", async () => {
const writeStreams = new WriteStreamsMock();
await handler({
cwd: "tests/test-cases/include-inputs/input-templates/types/boolean",
file: ".gitlab-ci-1.yml",
preview: true,
jsonSchemaValidation: true, // this test depends on the json schema validation, do not set to false
}, writeStreams);
const expected = `---
stages:
- .pre
- test
- .post
scan-website:
script:
- echo true`;
expect(writeStreams.stdoutLines[0]).toEqual(expected);
});
test.concurrent("include-inputs for type boolean (falsy)", async () => {
const writeStreams = new WriteStreamsMock();
await handler({
cwd: "tests/test-cases/include-inputs/input-templates/types/boolean",
file: ".gitlab-ci-2.yml",
preview: true,
jsonSchemaValidation: true, // this test depends on the json schema validation, do not set to false
}, writeStreams);
const expected = `---
stages:
- .pre
- test
- .post
scan-website:
script:
- echo false`;
expect(writeStreams.stdoutLines[0]).toEqual(expected);
});
test.concurrent("include-inputs inputs validation for boolean", async () => {
try {
const writeStreams = new WriteStreamsMock();
await handler({
cwd: "tests/test-cases/include-inputs/input-templates/type-validation/boolean",
preview: true,
}, writeStreams);
} catch (e: any) {
assert(e instanceof AssertionError, "e is not instanceof AssertionError");
expect(e.message).toContain("This GitLab CI configuration is invalid:");
expect(e.message).toContain(chalk`\`{blueBright boolean_input}\` input: provided value is not a {blueBright boolean}.`);
return;
}
throw new Error("Error is expected but not thrown/caught");
});
test.concurrent("include-inputs inputs validation for unsupported type", async () => {
try {
const writeStreams = new WriteStreamsMock();
await handler({
cwd: "tests/test-cases/include-inputs/input-templates/type-validation/unsupported",
preview: true,
}, writeStreams);
} catch (e: any) {
assert(e instanceof AssertionError, "e is not instanceof AssertionError");
expect(e.message).toContain("This GitLab CI configuration is invalid:");
expect(e.message).toContain(
chalk`header:spec:inputs:{blueBright unsupported_type_input} input type unknown value: {blueBright foo}.`,
);
return;
}
throw new Error("Error is expected but not thrown/caught");
});
test.concurrent("include-inputs options validation", async () => {
try {
const writeStreams = new WriteStreamsMock();
await handler({
cwd: "tests/test-cases/include-inputs/input-templates/options-validation",
preview: true,
}, writeStreams);
} catch (e: any) {
assert(e instanceof AssertionError, "e is not instanceof AssertionError");
expect(e.message).toContain("This GitLab CI configuration is invalid:");
expect(e.message).toContain(
chalk`\`{blueBright options_input}\` input: \`{blueBright fizz}\` cannot be used because it is not in the list of allowed options.`,
);
return;
}
throw new Error("Error is expected but not thrown/caught");
});
test.concurrent("include-inputs too many functions in interpolation block", async () => {
const writeStreams = new WriteStreamsMock();
try {
await handler({
cwd: "tests/test-cases/include-inputs/input-templates/too-many-functions-in-interpolation-block",
preview: true,
}, writeStreams);
} catch (e: any) {
assert(e instanceof AssertionError, "e is not instanceof AssertionError");
expect(e.message).toContain("This GitLab CI configuration is invalid:");
expect(e.message).toContain("too many functions in interpolation block.");
expect(writeStreams.stderrLines.join("\n")).toContain("interpolation functions is currently not supported");
return;
}
throw new Error("Error is expected but not thrown/caught");
});
test.concurrent("include-inputs interpolation value containing escapes", async () => {
const writeStreams = new WriteStreamsMock();
await handler({
cwd: "tests/test-cases/include-inputs/input-templates/interpolation-value-escapes",
preview: true,
}, writeStreams);
const expected = `---
stages:
- .pre
- test
- .post
scan-website:
script:
- echo ^v?(?P<major>[0-9]+)\\.(?P<minor>[0-9]+)\\.(?P<patch>[0-9]+)(?P<suffix>(?P<prerelease>-[0-9A-Za-z-\\.]+)?(?P<build>\\+[0-9A-Za-z-\\.]+)?)$`;
expect(writeStreams.stdoutLines[0]).toEqual(expected);
});
test.concurrent("include-inputs regex validation (invalid)", async () => {
try {
const writeStreams = new WriteStreamsMock();
await handler({
cwd: "tests/test-cases/include-inputs/input-templates/regex-validation",
preview: true,
}, writeStreams);
} catch (e: any) {
assert(e instanceof AssertionError, "e is not instanceof AssertionError");
expect(e.message).toContain("This GitLab CI configuration is invalid:");
expect(e.message).toContain(
chalk`\`{blueBright version}\` input: \`{blueBright invalid-version}\` does not match required regex: {blueBright ^v\\d+\\.\\d+\\.\\d+$}.`,
);
return;
}
throw new Error("Error is expected but not thrown/caught");
});
test.concurrent("include-inputs regex validation (valid)", async () => {
const writeStreams = new WriteStreamsMock();
await handler({
cwd: "tests/test-cases/include-inputs/input-templates/regex-validation-pass",
preview: true,
}, writeStreams);
const expected = `---
stages:
- .pre
- test
- .post
deploy:
script:
- echo v1.2.3`;
expect(writeStreams.stdoutLines[0]).toEqual(expected);
});