-
Notifications
You must be signed in to change notification settings - Fork 168
/
Copy pathwrappers.test.ts
319 lines (282 loc) · 8.95 KB
/
wrappers.test.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
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
import { glob } from "glob";
import fs from "node:fs";
import path from "node:path";
import yaml from "yaml";
const PACKAGE_JSON_GLOB = "**/package.json";
const IGNORE_GLOB = ["**/node_modules/**", "**/dist-dynamic/**"];
const ROOT_DIR = path.join(__dirname, "../../..");
const DYNAMIC_PLUGINS_DIR = path.join(ROOT_DIR, "dynamic-plugins/wrappers");
const DYNAMIC_PLUGINS_CONFIG_FILE = path.join(
ROOT_DIR,
"dynamic-plugins.default.yaml",
);
const APP_CONFIG_DYNAMIC_PLUGINS_CONFIG_FILE = path.join(
ROOT_DIR,
"app-config.dynamic-plugins.yaml",
);
const IBM_VALUES_SHOWCASE_CONFIG_FILE = path.join(
ROOT_DIR,
".ibm/pipelines/value_files/values_showcase.yaml",
);
const IBM_VALUES_SHOWCASE_RBAC_CONFIG_FILE = path.join(
ROOT_DIR,
".ibm/pipelines/value_files/values_showcase-rbac.yaml",
);
const IBM_VALUES_SHOWCASE_AUTH_PROVIDERS_CONFIG_FILE = path.join(
ROOT_DIR,
".ibm/pipelines/value_files/values_showcase-auth-providers.yaml",
);
const RHDH_OPENSHIFT_SETUP_CONFIG_FILE = path.join(
ROOT_DIR,
"scripts/rhdh-openshift-setup/values.yaml",
);
type WrapperFrontendPackageJson = {
name: string;
backstage: {
role: "frontend-plugin";
};
scalprum: {
name: string;
};
repository: {
directory: string;
};
};
type WrapperBackendPackageJson = {
name: string;
backstage: {
role: "backend-plugin" | "backend-plugin-module";
};
repository: {
directory: string;
};
};
type WrapperPackageJson =
| WrapperFrontendPackageJson
| WrapperBackendPackageJson;
type DynamicPluginAppConfig = {
dynamicPlugins?: { frontend?: Record<string, unknown> };
};
type DynamicPluginConfig = {
package: string;
disabled?: boolean;
pluginConfig?: DynamicPluginAppConfig;
};
type DynamicPluginsConfig = {
plugins: DynamicPluginConfig[];
};
type GlobalDynamicPluginsConfig = {
global: {
dynamic: {
plugins: {
package: string;
disabled?: boolean;
pluginConfig?: DynamicPluginAppConfig;
}[];
};
};
};
function isFrontendPlugin(
packageJson: WrapperPackageJson,
): packageJson is WrapperFrontendPackageJson {
return packageJson.backstage.role === "frontend-plugin";
}
function isBackendPlugin(
packageJson: WrapperPackageJson,
): packageJson is WrapperBackendPackageJson {
return (
packageJson.backstage.role === "backend-plugin" ||
packageJson.backstage.role === "backend-plugin-module"
);
}
function getDifference<T>(arrA: T[], arrB: T[]): T[] {
return arrA.filter((x) => !arrB.includes(x));
}
function parseYamlFile<T>(filePath: string): T {
return yaml.parse(fs.readFileSync(filePath).toString());
}
function validateDynamicPluginsConfig(
config: DynamicPluginsConfig,
wrapperDirNames: string[],
externalDynamicPlugins?: DynamicPluginConfig[],
): void {
const dynamicPluginsPackageNames = config.plugins.reduce(
(packageNames, plugin) => {
const isExternalPlugin = externalDynamicPlugins?.some(
(externalDynamicPlugin) =>
externalDynamicPlugin.package === plugin.package,
);
if (!isExternalPlugin) {
// We want the third index ['.', 'dynamic-plugins', 'dist', 'backstage-plugin-scaffolder-backend-module-github-dynamic']
packageNames.push(plugin.package.split("/")[3]);
}
return packageNames;
},
[] as string[],
);
const difference = getDifference(dynamicPluginsPackageNames, wrapperDirNames);
try {
expect(difference).toStrictEqual([]);
} catch {
throw new Error(
`The following plugins are missing: ${difference.join(", ")}`,
);
}
}
describe("Dynamic Plugin Wrappers", () => {
const wrapperPackageJsonPaths = glob.sync(PACKAGE_JSON_GLOB, {
cwd: DYNAMIC_PLUGINS_DIR, // Search only within DYNAMIC_PLUGINS_DIR
ignore: IGNORE_GLOB,
});
const wrapperDirNames = wrapperPackageJsonPaths.map(path.dirname);
const wrapperPackageJsonFiles = wrapperPackageJsonPaths.map(
(packageJsonPath) => {
const packageJson = fs.readFileSync(
path.join(DYNAMIC_PLUGINS_DIR, packageJsonPath),
);
return JSON.parse(packageJson.toString()) as WrapperPackageJson;
},
);
const frontendPackageJsonFiles = wrapperPackageJsonFiles.filter(
(packageJson) => isFrontendPlugin(packageJson),
);
const backendPackageJsonFiles = wrapperPackageJsonFiles.filter(
(packageJson) => isBackendPlugin(packageJson),
);
describe("Backend Plugin", () => {
it.each(backendPackageJsonFiles)(
"$name should have a `-dynamic` suffix in the directory name",
({ name, repository }) => {
const hasDynamicSuffix = wrapperPackageJsonPaths.some((value) =>
value.includes(`${name}-dynamic`),
);
expect(hasDynamicSuffix).toBeTruthy();
expect(repository.directory).toBe(
`dynamic-plugins/wrappers/${name}-dynamic`,
);
},
);
});
describe("Frontend Plugin", () => {
it.each(frontendPackageJsonFiles)(
"$name should have a matching directory name",
({ name, repository }) => {
const hasMatchingDirName = wrapperPackageJsonPaths.some((value) =>
value.includes(name),
);
expect(hasMatchingDirName).toBeTruthy();
expect(repository.directory).toBe(`dynamic-plugins/wrappers/${name}`);
},
);
it.each(frontendPackageJsonFiles)(
"should have scalprum config in the `package.json`",
({ scalprum }) => {
expect(scalprum).toBeTruthy();
},
);
});
describe("(dynamic-plugins.default.yaml) should have a valid config", () => {
const config = parseYamlFile<DynamicPluginsConfig>(
DYNAMIC_PLUGINS_CONFIG_FILE,
);
it("should have a corresponding package", () => {
validateDynamicPluginsConfig(config, wrapperDirNames);
});
it.each(frontendPackageJsonFiles)(
"$scalprum.name should exist in the config",
({ scalprum }) => {
expect(
config.plugins.some((plugin) =>
Object.keys(
plugin.pluginConfig?.dynamicPlugins?.frontend ?? {},
).includes(scalprum.name),
),
).toBeTruthy();
},
);
});
describe("(app-config.dynamic-plugins.yaml) should have a valid config", () => {
const config = parseYamlFile<DynamicPluginAppConfig>(
APP_CONFIG_DYNAMIC_PLUGINS_CONFIG_FILE,
);
it.each(frontendPackageJsonFiles)(
"$scalprum.name should exist in the config",
({ scalprum }) => {
expect(
Object.keys(config?.dynamicPlugins?.frontend ?? {}).includes(
scalprum.name,
),
).toBeTruthy();
},
);
});
describe("(ibm: values_showcase.yaml) should have a valid config", () => {
const config = parseYamlFile<GlobalDynamicPluginsConfig>(
IBM_VALUES_SHOWCASE_CONFIG_FILE,
);
const externalDynamicPluginsConfig: DynamicPluginConfig[] = [
{
package: "@pataknight/[email protected]",
disabled: false,
},
{
package: "@backstage-community/[email protected]",
},
{
package:
"@red-hat-developer-hub/[email protected]",
},
{
package:
"@red-hat-developer-hub/[email protected]",
},
{
package:
"@red-hat-developer-hub/[email protected]",
},
{
package:
"oci://quay.io/gashcrumb/example-root-http-middleware:latest!internal-backstage-plugin-middleware-header-example-dynamic",
},
{
package:
"oci://quay.io/gashcrumb/example-root-http-middleware:latest!internal-backstage-plugin-simple-chat",
},
{
package:
"oci://quay.io/gashcrumb/example-root-http-middleware:latest!internal-backstage-plugin-simple-chat-backend-dynamic",
},
];
it("should have a corresponding package", () => {
validateDynamicPluginsConfig(
config.global.dynamic,
wrapperDirNames,
externalDynamicPluginsConfig,
);
});
});
describe("(ibm: values_showcase-rbac.yaml) should have a valid config", () => {
const config = parseYamlFile<GlobalDynamicPluginsConfig>(
IBM_VALUES_SHOWCASE_RBAC_CONFIG_FILE,
);
it("should have a corresponding package", () => {
validateDynamicPluginsConfig(config.global.dynamic, wrapperDirNames);
});
});
describe("(ibm: values_showcase_auth-providers.yaml) should have a valid config", () => {
const config = parseYamlFile<GlobalDynamicPluginsConfig>(
IBM_VALUES_SHOWCASE_AUTH_PROVIDERS_CONFIG_FILE,
);
it("should have a corresponding package", () => {
validateDynamicPluginsConfig(config.global.dynamic, wrapperDirNames);
});
});
describe("(rhdh-openshift-setup: values.yaml) should have a valid config", () => {
const config = parseYamlFile<GlobalDynamicPluginsConfig>(
RHDH_OPENSHIFT_SETUP_CONFIG_FILE,
);
it("should have a corresponding package", () => {
validateDynamicPluginsConfig(config.global.dynamic, wrapperDirNames);
});
});
});