-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
Copy pathvalidation.spec.ts.snap
267 lines (246 loc) · 8.13 KB
/
validation.spec.ts.snap
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
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
exports[`config/validation > validateConfig(config) > catches invalid allowedVersions regex 1`] = `
[
{
"message": "Invalid regExp for packageRules[1].allowedVersions: \`/***$}{]][/\`",
"topic": "Configuration Error",
},
{
"message": "Invalid regExp for packageRules[3].allowedVersions: \`!/***$}{]][/\`",
"topic": "Configuration Error",
},
]
`;
exports[`config/validation > validateConfig(config) > catches invalid matchCurrentVersion regex 1`] = `
[
{
"message": "Invalid regExp for packageRules[1].matchCurrentVersion: \`/***$}{]][/\`",
"topic": "Configuration Error",
},
{
"message": "Invalid regExp for packageRules[3].matchCurrentVersion: \`!/***$}{]][/\`",
"topic": "Configuration Error",
},
]
`;
exports[`config/validation > validateConfig(config) > catches invalid templates 1`] = `
[
{
"message": "Invalid template in config path: commitMessage",
"topic": "Configuration Error",
},
]
`;
exports[`config/validation > validateConfig(config) > errors for all types 1`] = `
[
{
"message": "Configuration option \`azureWorkItemId\` should be an integer. Found: false (boolean).",
"topic": "Configuration Error",
},
{
"message": "Configuration option \`enabled\` should be boolean. Found: 1 (number)",
"topic": "Configuration Error",
},
{
"message": "Configuration option \`labels\` should be a list (Array)",
"topic": "Configuration Error",
},
{
"message": "Configuration option \`lockFileMaintenance\` should be a json object",
"topic": "Configuration Error",
},
{
"message": "Configuration option \`packageRules[2].matchPackageNames\` should be a list (Array)",
"topic": "Configuration Error",
},
{
"message": "Configuration option \`semanticCommitType\` should be a string",
"topic": "Configuration Error",
},
{
"message": "Invalid configuration option: packageRules[0].foo",
"topic": "Configuration Error",
},
{
"message": "Invalid schedule: \`Invalid schedule: "every 15 mins every weekday" should not specify minutes\`",
"topic": "Configuration Error",
},
{
"message": "extends: Invalid schedule: Unsupported timezone Europe/Brussel",
"topic": "Configuration Error",
},
{
"message": "packageRules must contain JSON objects",
"topic": "Configuration Error",
},
{
"message": "packageRules[0]: Each packageRule must contain at least one match* or exclude* selector. Rule: {"foo":1}",
"topic": "Configuration Error",
},
{
"message": "timezone: Invalid schedule: Unsupported timezone Asia",
"topic": "Configuration Error",
},
]
`;
exports[`config/validation > validateConfig(config) > errors for unsafe filePatterns 1`] = `
[
{
"message": "Failed to parse regex pattern for dockerfile.filePatterns: /x?+/",
"topic": "Configuration Error",
},
{
"message": "Failed to parse regex pattern for npm.filePatterns: /abc ([a-z]+) ([a-z]+))/",
"topic": "Configuration Error",
},
]
`;
exports[`config/validation > validateConfig(config) > errors if customManager fields are missing 1`] = `
[
{
"message": "Regex Managers must contain currentValueTemplate configuration or regex group named currentValue",
"topic": "Configuration Error",
},
]
`;
exports[`config/validation > validateConfig(config) > errors if filePatterns has wrong parent 1`] = `
[
{
"message": ""filePatterns" may not be defined at the top level of a config and must instead be within a manager block",
"topic": "Config error",
},
]
`;
exports[`config/validation > validateConfig(config) > errors if filePatterns has wrong parent 2`] = `
[
{
"message": ""filePatterns" must be configured in a manager block and not here: npm.minor",
"topic": "Config warning",
},
]
`;
exports[`config/validation > validateConfig(config) > errors if included not supported enabled managers for combined supported and not supported managers 1`] = `
[
{
"message": "The following managers configured in enabledManagers are not supported: "foo"",
"topic": "Configuration Error",
},
]
`;
exports[`config/validation > validateConfig(config) > errors if included not supported enabled managers for multiple not supported managers 1`] = `
[
{
"message": "The following managers configured in enabledManagers are not supported: "foo, bar"",
"topic": "Configuration Error",
},
]
`;
exports[`config/validation > validateConfig(config) > errors if included not supported enabled managers for single not supported manager 1`] = `
[
{
"message": "The following managers configured in enabledManagers are not supported: "foo"",
"topic": "Configuration Error",
},
]
`;
exports[`config/validation > validateConfig(config) > errors if invalid combinations in packageRules 1`] = `
[
{
"message": "packageRules[0]: packageRules cannot combine both matchUpdateTypes and registryUrls. Rule: {"matchUpdateTypes":["major"],"registryUrls":["https://registry.npmjs.org"]}",
"topic": "Configuration Error",
},
]
`;
exports[`config/validation > validateConfig(config) > errors if manager objects are nested 1`] = `
[
{
"message": "The "gradle" object can only be configured at the top level of a config but was found inside "maven"",
"topic": "Configuration Error",
},
]
`;
exports[`config/validation > validateConfig(config) > ignore packageRule nesting validation for presets 1`] = `[]`;
exports[`config/validation > validateConfig(config) > included managers of the wrong type 1`] = `
[
{
"message": "Configuration option \`packageRules[0].matchManagers\` should be a list (Array)",
"topic": "Configuration Error",
},
{
"message": "packageRules: Managers should be type of List. You have included string.",
"topic": "Configuration Error",
},
]
`;
exports[`config/validation > validateConfig(config) > returns deprecation warnings 1`] = `
[
{
"message": "Direct editing of prTitle is now deprecated. Please edit commitMessage subcomponents instead as they will be passed through to prTitle.",
"topic": "Deprecation Warning",
},
]
`;
exports[`config/validation > validateConfig(config) > returns nested errors 1`] = `
[
{
"message": "Invalid configuration option: foo",
"topic": "Configuration Error",
},
{
"message": "Invalid configuration option: lockFileMaintenance.bar",
"topic": "Configuration Error",
},
{
"message": "Invalid regExp for packageRules[0].matchPackageNames: \`!/abc ([a-z]+) ([a-z]+))/\`",
"topic": "Configuration Error",
},
{
"message": "Invalid regExp for packageRules[0].matchPackageNames: \`/abc ([a-z]+) ([a-z]+))/\`",
"topic": "Configuration Error",
},
]
`;
exports[`config/validation > validateConfig(config) > selectors outside packageRules array trigger errors 1`] = `
[
{
"message": "ansible.minor.matchDepNames: matchDepNames should be inside a \`packageRule\` only",
"topic": "Configuration Error",
},
{
"message": "ansible.minor.matchPackageNames: matchPackageNames should be inside a \`packageRule\` only",
"topic": "Configuration Error",
},
{
"message": "matchDepNames: matchDepNames should be inside a \`packageRule\` only",
"topic": "Configuration Error",
},
{
"message": "matchPackageNames: matchPackageNames should be inside a \`packageRule\` only",
"topic": "Configuration Error",
},
]
`;
exports[`config/validation > validateConfig(config) > validates regEx for each filePatterns of format regex 1`] = `
[
{
"message": "Failed to parse regex pattern for customManagers[0].filePatterns: /***$}{]][/",
"topic": "Configuration Error",
},
]
`;
exports[`config/validation > validateConfig(config) > warns if hostType has the wrong parent 1`] = `
[
{
"message": "hostType should only be configured within one of "hostRules" objects. Was found in .",
"topic": "hostType",
},
]
`;
exports[`config/validation > validateConfig(config) > warns if only selectors in packageRules 1`] = `
[
{
"message": "packageRules[0]: Each packageRule must contain at least one non-match* or non-exclude* field. Rule: {"matchDepTypes":["foo"],"matchPackageNames":["bar"]}",
"topic": "Configuration Error",
},
]
`;