-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
Copy pathfile.spec.ts
287 lines (253 loc) · 9.41 KB
/
file.spec.ts
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
import fs from 'node:fs';
import fsExtra from 'fs-extra';
import type { DirectoryResult } from 'tmp-promise';
import { dir } from 'tmp-promise';
import upath from 'upath';
import { logger } from '../../../../logger';
import customConfig from './__fixtures__/config';
import * as file from './file';
describe('workers/global/config/parse/file', () => {
const processExitSpy = vi.spyOn(process, 'exit');
const fsPathExistsSpy = vi.spyOn(fsExtra, 'pathExists');
const fsRemoveSpy = vi.spyOn(fsExtra, 'remove');
let tmp: DirectoryResult;
beforeAll(async () => {
tmp = await dir({ unsafeCleanup: true });
});
afterAll(async () => {
await tmp.cleanup();
});
describe('.getConfig()', () => {
it.each([
['custom js config file', 'config.js'],
['custom js config file', 'config.cjs'],
['custom js config file', 'config.mjs'],
['custom js config file exporting a Promise', 'config-promise.js'],
['custom js config file exporting a function', 'config-function.js'],
// The next two are different syntactic ways of expressing the same thing
[
'custom js config file exporting a function returning a Promise',
'config-function-promise.js',
],
[
'custom js config file exporting an async function',
'config-async-function.js',
],
['.renovaterc', '.renovaterc'],
['JSON5 config file', 'config.json5'],
['YAML config file', 'config.yaml'],
])('parses %s > %s', async (_fileType, filePath) => {
const configFile = upath.resolve(__dirname, './__fixtures__/', filePath);
expect(
await file.getConfig({ RENOVATE_CONFIG_FILE: configFile }),
).toEqual(customConfig);
});
it('migrates', async () => {
const configFile = upath.resolve(__dirname, './__fixtures__/config2.js');
// for coverage
const relativePath = upath.relative(process.cwd(), configFile);
const res = await file.getConfig({ RENOVATE_CONFIG_FILE: relativePath });
expect(res).toMatchSnapshot();
expect(res.rangeStrategy).toBe('bump');
});
it('warns if config is invalid', async () => {
const configFile = upath.resolve(tmp.path, 'config.js');
const fileContent = `module.exports = {
"enabled": "invalid-value",
"prTitle":"something",
};`;
fs.writeFileSync(configFile, fileContent, { encoding: 'utf8' });
await file.getConfig({ RENOVATE_CONFIG_FILE: configFile });
expect(logger.warn).toHaveBeenCalledTimes(2);
fs.unlinkSync(configFile);
});
it('parse and returns empty config if there is no RENOVATE_CONFIG_FILE in env', async () => {
expect(await file.getConfig({})).toBeDefined();
});
it.each([
[
'config.invalid.js',
`module.exports = {
"platform": "github",
"token":"abcdef",
"onboarding": false,
"gitAuthor": "Renovate Bot <[email protected]>"
"onboardingConfig": {
"extends": ["config:recommended"],
},
"repositories": [ "test/test" ],
};`,
],
['config.invalid.json5', `"invalid":`],
['config.invalid.yaml', `clearly: "invalid" "yaml"`],
])(
'fatal error and exit if error in parsing %s',
async (fileName, fileContent) => {
processExitSpy.mockImplementationOnce(() => undefined as never);
const configFile = upath.resolve(tmp.path, fileName);
fs.writeFileSync(configFile, fileContent, { encoding: 'utf8' });
await file.getConfig({ RENOVATE_CONFIG_FILE: configFile });
expect(processExitSpy).toHaveBeenCalledWith(1);
fs.unlinkSync(configFile);
},
);
it('fatal error and exit if custom config file does not exist', async () => {
processExitSpy
.mockImplementationOnce(() => undefined as never)
.mockImplementationOnce(() => undefined as never);
const configFile = upath.resolve(tmp.path, './file4.js');
await file.getConfig({ RENOVATE_CONFIG_FILE: configFile });
expect(processExitSpy).toHaveBeenCalledWith(1);
});
it('fatal error and exit if config.js contains unresolved env var', async () => {
processExitSpy.mockImplementationOnce(() => undefined as never);
const configFile = upath.resolve(
__dirname,
'./__fixtures__/config-ref-error.js-invalid',
);
const tmpDir = tmp.path;
await fsExtra.ensureDir(tmpDir);
const tmpConfigFile = upath.resolve(tmpDir, 'config-ref-error.js');
await fsExtra.copy(configFile, tmpConfigFile);
await file.getConfig({ RENOVATE_CONFIG_FILE: tmpConfigFile });
expect(logger.fatal).toHaveBeenCalledWith(
`Error parsing config file due to unresolved variable(s): CI_API_V4_URL is not defined`,
);
expect(processExitSpy).toHaveBeenCalledWith(1);
});
it.each([
['invalid config file type', './file.txt'],
['missing config file type', './file'],
])('fatal error and exit if %s', async (fileType, filePath) => {
processExitSpy.mockImplementationOnce(() => undefined as never);
const configFile = upath.resolve(tmp.path, filePath);
fs.writeFileSync(configFile, `{"token": "abc"}`, { encoding: 'utf8' });
await file.getConfig({ RENOVATE_CONFIG_FILE: configFile });
expect(processExitSpy).toHaveBeenCalledWith(1);
expect(logger.fatal).toHaveBeenCalledWith('Unsupported file type');
fs.unlinkSync(configFile);
});
it('exports env variables to environment from processEnv object', async () => {
const configFile = upath.resolve(tmp.path, 'config2.js');
const fileContent1 = `module.exports = {
"processEnv": {
"SOME_KEY": "SOME_VALUE"
},
"labels": ["renovate"]
}`;
fs.writeFileSync(configFile, fileContent1, {
encoding: 'utf8',
});
const fileConfig = await file.getConfig({
RENOVATE_CONFIG_FILE: configFile,
});
expect(fileConfig).toMatchObject({
labels: ['renovate'],
});
expect(fileConfig.processEnv).toBeUndefined();
expect(process.env.SOME_KEY).toBe('SOME_VALUE');
fs.unlinkSync(configFile);
delete process.env.SOME_KEY;
});
it('does not export env variables to environment from processEnv object if key/value is invalid', async () => {
const configFile = upath.resolve(tmp.path, 'config3.js');
const fileContent1 = `module.exports = {
"processEnv": {
"SOME_KEY": "SOME_VALUE",
"SOME_OTHER_KEY": true,
"valid_Key": "true",
},
"labels": ["renovate"]
}`;
fs.writeFileSync(configFile, fileContent1, {
encoding: 'utf8',
});
const fileConfig = await file.getConfig({
RENOVATE_CONFIG_FILE: configFile,
});
expect(fileConfig).toMatchObject({
labels: ['renovate'],
});
expect(fileConfig.processEnv).toBeUndefined();
expect(process.env.SOME_KEY).toBe('SOME_VALUE');
expect(process.env.valid_Key).toBe('true');
expect(process.env.SOME_OTHER_KEY).toBeUndefined();
fs.unlinkSync(configFile);
delete process.env.SOME_KEY;
delete process.env.valid_Key;
});
});
describe('deleteConfigFile()', () => {
it.each([[undefined], [' ']])(
'skip when RENOVATE_CONFIG_FILE is not set ("%s")',
async (configFile) => {
await file.deleteNonDefaultConfig(
{ RENOVATE_CONFIG_FILE: configFile },
true,
);
expect(fsRemoveSpy).toHaveBeenCalledTimes(0);
},
);
it('skip when config file does not exist', async () => {
fsPathExistsSpy.mockResolvedValueOnce(false as never);
await file.deleteNonDefaultConfig(
{
RENOVATE_CONFIG_FILE: 'path',
},
true,
);
expect(fsRemoveSpy).toHaveBeenCalledTimes(0);
});
it.each([['false'], [' ']])(
'skip if deleteConfigFile is not set ("%s")',
async (deleteConfig) => {
fsPathExistsSpy.mockResolvedValueOnce(true as never);
await file.deleteNonDefaultConfig(
{
RENOVATE_CONFIG_FILE: '/path/to/config.js',
},
deleteConfig === 'true',
);
expect(fsRemoveSpy).toHaveBeenCalledTimes(0);
},
);
it('removes the specified config file', async () => {
fsRemoveSpy.mockImplementationOnce(() => {
// no-op
});
fsPathExistsSpy.mockResolvedValueOnce(true as never);
const configFile = '/path/to/config.js';
await file.deleteNonDefaultConfig(
{
RENOVATE_CONFIG_FILE: configFile,
},
true,
);
expect(fsRemoveSpy).toHaveBeenCalledTimes(1);
expect(fsRemoveSpy).toHaveBeenCalledWith(configFile);
expect(logger.trace).toHaveBeenCalledWith(
expect.anything(),
'config file successfully deleted',
);
});
it('fails silently when attempting to delete the config file', async () => {
fsRemoveSpy.mockImplementationOnce(() => {
throw new Error();
});
fsPathExistsSpy.mockResolvedValueOnce(true as never);
const configFile = '/path/to/config.js';
await file.deleteNonDefaultConfig(
{
RENOVATE_CONFIG_FILE: configFile,
},
true,
);
expect(fsRemoveSpy).toHaveBeenCalledTimes(1);
expect(fsRemoveSpy).toHaveBeenCalledWith(configFile);
expect(logger.warn).toHaveBeenCalledWith(
expect.anything(),
'error deleting config file',
);
});
});
});