mathjs/tools/validate.js
2015-07-27 21:26:50 +02:00

50 lines
1.3 KiB
JavaScript

/**
* Validate whether all functions in math.js are documented in math.expression.docs
*/
var gutil = require('gulp-util'),
math = require('../index'),
prop;
// names to ignore
var ignore = [
// functions not supported or relevant for the parser:
'create', 'typed', 'config',
'on', 'off', 'emit', 'once',
'compile', 'parse', 'parser',
'chain', 'print'
];
// test whether all functions are documented
var undocumentedCount = 0;
for (prop in math) {
if (math.hasOwnProperty(prop)) {
var obj = math[prop];
if (math['typeof'](obj) != 'Object') {
if (!math.expression.docs[prop] && (ignore.indexOf(prop) == -1)) {
gutil.log('WARNING: Function ' + prop + ' is undocumented');
undocumentedCount++;
}
}
}
}
// test whether there is documentation for non existing functions
var nonExistingCount = 0;
var docs = math.expression.docs;
for (prop in docs) {
if (docs.hasOwnProperty(prop)) {
if (math[prop] === undefined && !math.type[prop]) {
gutil.log('WARNING: Documentation for a non-existing function "' + prop + '"');
nonExistingCount++;
}
}
}
// done. Output results
if (undocumentedCount == 0 && nonExistingCount == 0) {
gutil.log('Validation successful: all functions are documented.');
}
else {
gutil.log('Validation failed: not all functions are documented.');
}