mirror of
https://github.com/Instadapp/chains.git
synced 2024-07-29 22:37:19 +00:00
bf8ce68096
* Validate json * wip: gh workflow test * wip: added workflow for JSON validation * Schema Improved. * Improved Workflow and Schema check for JSON files * Fixed JSON Schema * Fixed typo * Removed auto generated file * updated required fields in chainSchema * updated chain schema * removed `network` from README.md example * improved schemaCheck script * Matching ChainID with file name schema.
25 lines
918 B
JavaScript
25 lines
918 B
JavaScript
const fs = require('fs');
|
|
const Ajv = require("ajv")
|
|
const ajv = new Ajv()
|
|
const schema = require('./schema/chainSchema.json')
|
|
const chainFiles = fs.readdirSync('../_data/chains/');
|
|
|
|
const filesWithErrors = []
|
|
for(const chainFile of chainFiles){
|
|
const fileLocation = `../_data/chains/${chainFile}`
|
|
const fileData = fs.readFileSync(fileLocation,'utf8')
|
|
const fileDataJson = JSON.parse(fileData)
|
|
const chainIdFromFileName = chainFile.match(/eip155-(\d+)\.json/)[1]
|
|
if(chainIdFromFileName != fileDataJson.chainId){
|
|
throw new Error(`File Name does not match with ChainID in ${chainFile}`)
|
|
}
|
|
const valid = ajv.validate(schema, fileDataJson)
|
|
if(!valid) {
|
|
console.error(ajv.errors)
|
|
filesWithErrors.push(chainFile)
|
|
}
|
|
}
|
|
|
|
if(filesWithErrors.length > 0){
|
|
throw new Error(`Invalid JSON Schema in ${filesWithErrors.length} files at ${filesWithErrors.join(",")}`)
|
|
} |