explorer-data/utils/test.js

56 lines
1.4 KiB
JavaScript
Raw Normal View History

2023-10-07 20:48:35 +02:00
import Ajv from "https://esm.sh/ajv@8.8.1?pin=v58";
import addFormats from "https://esm.sh/ajv-formats@2.1.1";
import yaml from "npm:js-yaml";
2023-10-07 20:01:09 +02:00
import { W3PData } from "./w3pdata.js";
2023-10-07 20:48:35 +02:00
const w3pd = new W3PData();
await w3pd.init();
const ajv = new Ajv({ strict: false });
addFormats(ajv);
async function loadSchemas() {
const out = {};
for await (const f of Deno.readDir(schemaDir)) {
const col = f.name.split(".")[0];
out[col] = yaml.load(await Deno.readTextFile(`${schemaDir}/${f.name}`));
}
return out;
}
const matrix = {
categories: "category",
projects: "project",
};
const schemaDir = "./schema";
const schemas = await loadSchemas();
2023-10-08 01:16:03 +02:00
schemas.project.properties.categories.items.enum = w3pd.data.categories.map(c => c.id)
2023-10-07 20:48:35 +02:00
for (const col of Object.keys(w3pd.data)) {
const validator = ajv.compile(schemas[matrix[col]]);
2023-10-08 01:16:03 +02:00
const ids = []
2023-10-07 20:01:09 +02:00
2023-10-07 20:48:35 +02:00
for (const item of w3pd.data[col]) {
2023-10-08 04:04:22 +02:00
delete item._path
2023-10-08 01:16:03 +02:00
const testName = `${col}/${item.id} ` + (col === 'projects' ? `[${item.categories?.join(', ')}]` : '')
2023-10-07 21:06:05 +02:00
2023-10-08 01:16:03 +02:00
if (ids.includes(item.id)) {
Deno.test(testName + ' (id-duplicates)', () => {
throw { message: `Duplicate project id="${item.id}"` }
});
2023-10-07 21:06:05 +02:00
}
2023-10-08 01:16:03 +02:00
if(Object.keys(item).length > 1) {
Deno.test(testName + ' (schema)', () => {
if (!validator(item)) {
throw validator.errors;
}
});
}
ids.push(item.id)
2023-10-07 20:48:35 +02:00
}
}