2020-02-08 18:14:30 +00:00
|
|
|
const fs = require('fs');
|
2020-02-18 03:31:28 +00:00
|
|
|
const yomichanTest = require('./yomichan-test');
|
2020-02-08 18:14:30 +00:00
|
|
|
|
2020-02-18 03:31:28 +00:00
|
|
|
const {JsonSchema} = yomichanTest.requireScript('ext/bg/js/json-schema.js', ['JsonSchema']);
|
2020-02-08 18:14:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
function main() {
|
|
|
|
const args = process.argv.slice(2);
|
|
|
|
if (args.length < 2) {
|
|
|
|
console.log([
|
|
|
|
'Usage:',
|
|
|
|
' node schema-validate <schema-file-name> <data-file-names>...'
|
|
|
|
].join('\n'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const schemaSource = fs.readFileSync(args[0], {encoding: 'utf8'});
|
|
|
|
const schema = JSON.parse(schemaSource);
|
|
|
|
|
|
|
|
for (const dataFileName of args.slice(1)) {
|
|
|
|
try {
|
|
|
|
console.log(`Validating ${dataFileName}...`);
|
|
|
|
const dataSource = fs.readFileSync(dataFileName, {encoding: 'utf8'});
|
|
|
|
const data = JSON.parse(dataSource);
|
|
|
|
JsonSchema.validate(data, schema);
|
|
|
|
console.log('No issues found');
|
|
|
|
} catch (e) {
|
|
|
|
console.warn(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-02-18 03:30:16 +00:00
|
|
|
if (require.main === module) { main(); }
|