2020-02-23 18:05:48 +00:00
|
|
|
/*
|
2020-04-10 18:06:55 +00:00
|
|
|
* Copyright (C) 2020 Yomichan Authors
|
2020-02-23 18:05:48 +00:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2020-02-08 18:14:30 +00:00
|
|
|
const fs = require('fs');
|
2020-09-19 23:04:28 +00:00
|
|
|
const {VM} = require('./vm');
|
2020-02-08 18:14:30 +00:00
|
|
|
|
2020-03-03 03:20:47 +00:00
|
|
|
const vm = new VM();
|
2020-06-28 16:38:34 +00:00
|
|
|
vm.execute([
|
|
|
|
'mixed/js/core.js',
|
2020-08-09 18:18:59 +00:00
|
|
|
'mixed/js/cache-map.js',
|
2020-06-28 16:38:34 +00:00
|
|
|
'bg/js/json-schema.js'
|
|
|
|
]);
|
2020-08-15 21:23:09 +00:00
|
|
|
const JsonSchemaValidator = vm.get('JsonSchemaValidator');
|
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);
|
2020-08-15 21:23:09 +00:00
|
|
|
new JsonSchemaValidator().validate(data, schema);
|
2020-02-08 18:14:30 +00:00
|
|
|
console.log('No issues found');
|
|
|
|
} catch (e) {
|
|
|
|
console.warn(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-02-18 03:30:16 +00:00
|
|
|
if (require.main === module) { main(); }
|