aboutsummaryrefslogblamecommitdiffstats
path: root/JSONSchema/validate.js
blob: e4c41140ef088ffaea5323e6b453ea68a3b70d6a (plain) (tree)
1
2
3
4
5
6
7
8
9

                
                       
                                              
                                   
                                 
                                            
 
                                 
 

                  
                   



                     
 
                                   


                           

   




                                                                           
   
 
                           


                                                         
                                                                              
                                  








                      

                                                

                                                                   
                    
                                                       

                           
                     
         
 

                                               
 




                                                           
                 

                               
             











                                             
   
#! /bin/env node

var fs = require('fs');
var validate = require('jsonschema').validate;
var readline = require('readline');
var process = require('process');
var dup = require('json-dup-key-validator');

var schemaFile = process.argv[2];

var schema = '';
var testCode = '';
var success = true;
var numFiles = 0;
var numFailed = 0;
var numSucceeded = 0;
var fileNames = [];

var rl = readline.createInterface({
    input: process.stdin,
    output: process.stdout,
    terminal: false
});

rl.on('line', function(fileName) {
    if (fileName == 'BlockchainTests/bcForgedTest/bcInvalidRLPTest.json') {
        return
    }
    fileNames.push(fileName);
});

rl.on('close', function() {
    var jsonString = fs.readFileSync(schemaFile, "utf8");
    schema = dup.parse(jsonString);

    //sort file names alphabetically so that log output ordering is consistent
    fileNames.sort(function(a,b) {
        if(a<b) {
            return -1;
        } else {
            return 1;
        }

        return 0;
    });

    for (var i = 0; i < fileNames.length; i++) {
        try {
            var jsonString = fs.readFileSync(fileNames[i], "utf8");
            testCode = dup.parse(jsonString);
        } catch(e) {
            console.log('error on file:', fileNames[i])
            console.log(e);
            numFailed++;
            continue;
        }

        try {
            var x = validate(testCode, schema);

            if (x.errors.length > 0) {
                numFailed++;
                console.log(fileNames[i]+ ':\n');
                for (var j = 0; j < x.errors.length; j++) {
                    console.log('   ' + x.errors[j] + '\n')
                }
            } else {
                numSucceeded++;
            }
        } catch (e) {
            console.log(e);
            numFailed++;
        }
    }
    
    console.log("Valid: "+numSucceeded+"\n");
    console.log("Failed: "+numFailed+"\n");

    if(numFailed > 0) {
        process.exit(-1);
    }
});