fix: update test to skip projects that have incorrect formatting and keep building rest of the projects

This commit is contained in:
0xdevant 2024-05-18 17:30:19 +08:00
parent fa957d8a6b
commit 0f72b9fb5a
No known key found for this signature in database
GPG Key ID: 3B0072B3F5B415CB
1 changed files with 23 additions and 11 deletions

View File

@ -27,29 +27,41 @@ const matrix = {
const schemaDir = "./schema";
const schemas = await loadSchemas();
schemas.project.properties.categories.items.enum = w3pd.data.categories.map(c => c.id)
schemas.project.properties.categories.items.enum = w3pd.data.categories.map(
(c) => c.id
);
for (const col of Object.keys(w3pd.data)) {
const validator = ajv.compile(schemas[matrix[col]]);
const ids = []
const ids = [];
for (const item of w3pd.data[col]) {
delete item._path
const testName = `${col}/${item.id} ` + (col === 'projects' ? `[${item.categories?.join(', ')}]` : '')
delete item._path;
const testName =
`${col}/${item.id} ` +
(col === "projects"
? `[${
Array.isArray(item.categories)
? item.categories.join(", ")
: item.categories
}]`
: "");
if (ids.includes(item.id)) {
Deno.test(testName + ' (id-duplicates)', () => {
throw { message: `Duplicate project id="${item.id}"` }
Deno.test(testName + " (id-duplicates)", () => {
throw { message: `Duplicate project id="${item.id}"` };
});
}
if (Object.keys(item).length > 1) {
Deno.test(testName + ' (schema)', () => {
Deno.test(testName + " (schema)", () => {
if (!validator(item)) {
throw validator.errors;
// throw validator.errors;
// log instead of throwing to proceed building all projects
console.log(validator.errors);
}
});
}
ids.push(item.id)
ids.push(item.id);
}
}