2017-04-11 23:38:29 +00:00
|
|
|
// Accepts input of any filename, ie. node test.js README.md
|
2016-12-10 13:46:24 +00:00
|
|
|
|
2017-04-11 23:38:29 +00:00
|
|
|
const fs = require('fs');
|
2016-12-10 13:46:24 +00:00
|
|
|
|
2017-04-11 23:38:29 +00:00
|
|
|
let log = '{\n';
|
|
|
|
let issuelog = ' "message": "#### Syntax Issues\\n\\n Name | Entry\\n----|----------------------\\n';
|
2019-08-17 16:47:31 +00:00
|
|
|
let fails = ''
|
2017-04-11 23:38:29 +00:00
|
|
|
const file = fs.readFileSync(process.argv[2], 'utf8'); // Reads argv into var file
|
2016-12-10 13:46:24 +00:00
|
|
|
|
2017-04-11 23:38:29 +00:00
|
|
|
function entryFilter(md) { // Function to find lines with entries
|
2018-07-02 03:29:00 +00:00
|
|
|
const linepatt = /^\s{0,2}-\s\[.*`/;
|
2017-04-11 23:38:29 +00:00
|
|
|
return linepatt.test(md);
|
2016-12-10 13:46:24 +00:00
|
|
|
}
|
|
|
|
|
2017-04-11 23:38:29 +00:00
|
|
|
function split(text) { // Function to split lines into array
|
|
|
|
return text.split(/\r?\n/);
|
|
|
|
}
|
2016-12-10 13:46:24 +00:00
|
|
|
|
2020-01-28 20:52:19 +00:00
|
|
|
function findPattern(text) { // All entries should match this pattern. If matches pattern returns true.
|
|
|
|
const patt = /^\s{0,2}-\s\[.*?\]\(.*?\) (`⚠` )?- .{0,249}?\.( \(\[(Demo|Source Code|Clients)\]\([^)]*\)(, \[(Source Code|Clients)\]\([^)]*\))?(, \[(Source Code|Clients)\]\([^)]*\))*\))? \`.*?\` \`.*?\`$/;
|
|
|
|
if (patt.test(text) === true) {
|
2017-04-11 23:38:29 +00:00
|
|
|
return true;
|
2020-01-28 20:52:19 +00:00
|
|
|
}
|
2017-04-11 23:38:29 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
function entryErrorCheck(md) {
|
2018-07-02 03:29:00 +00:00
|
|
|
const namepatt = /^\s{0,2}-\s\[(.*?)\]/; // regex pattern to find name of entryArray
|
2017-04-11 23:38:29 +00:00
|
|
|
const entries = split(md); // Inserts each line into the entries array
|
|
|
|
let totalFail = 0;
|
|
|
|
let totalPass = 0;
|
|
|
|
let total = 0;
|
|
|
|
const entryArray = [];
|
2019-08-21 22:30:28 +00:00
|
|
|
if (entries[0] === "") {
|
|
|
|
console.log("0 Entries")
|
|
|
|
process.exit(0)
|
|
|
|
}
|
2017-04-11 23:38:29 +00:00
|
|
|
for (let i = 0, len = entries.length; i < len; i += 1) { // Loop to create array of objects
|
|
|
|
entryArray[i] = new Object;
|
|
|
|
entryArray[i].raw = entries[i];
|
2020-01-28 20:52:19 +00:00
|
|
|
if (entryFilter(entries[i]) === true) { // filter out lines that don't start with * [)
|
2017-04-11 23:38:29 +00:00
|
|
|
total += 1;
|
|
|
|
entryArray[i].name = namepatt.exec(entries[i])[1]; // Parses name of entry
|
|
|
|
entryArray[i].pass = findPattern(entries[i]); // Tests against known patterns
|
|
|
|
if (entryArray[i].pass === true) { // If entry passes increment totalPass counter
|
|
|
|
totalPass += 1;
|
2016-12-10 13:46:24 +00:00
|
|
|
} else {
|
2017-04-11 23:38:29 +00:00
|
|
|
console.log(`${entryArray[i].name} Failed.`); // If entry fails increment totalFail counter and append error to issuelog
|
|
|
|
// entryArray[i].error = findError(entries[i]) //WIP
|
|
|
|
totalFail += 1;
|
|
|
|
issuelog += `${entryArray[i].name} | ${entries[i]} \\n`;
|
2019-08-17 16:47:31 +00:00
|
|
|
fails += `${entries[i]} \n\n`;
|
2016-12-10 13:46:24 +00:00
|
|
|
}
|
2017-04-11 23:38:29 +00:00
|
|
|
}
|
2016-12-10 13:46:24 +00:00
|
|
|
}
|
2017-04-11 23:38:29 +00:00
|
|
|
if (totalFail > 0) { // Logs # passed & failed to console, and failures to syntaxcheck.json
|
2019-08-17 16:47:31 +00:00
|
|
|
console.log(`${totalFail} Failed, ${totalPass} Passed, of ${total}\n-----------------------------`);
|
|
|
|
console.log(fails)
|
2017-04-11 23:38:29 +00:00
|
|
|
log += ` "error": true,\n "title": "Found ${totalFail} entries with syntax error(s).",\n`;
|
|
|
|
fs.writeFileSync('syntaxcheck.json', `${log} ${issuelog} "\n}`);
|
|
|
|
process.exit(1);
|
|
|
|
} else { // Logs # of entries passed to console and error: false to syntaxcheck.json
|
|
|
|
console.log(`${totalFail} Failed, ${totalPass} Passed, of ${total} \n`);
|
|
|
|
log += ' "error": false\n}';
|
|
|
|
fs.writeFileSync('syntaxcheck.json', log);
|
|
|
|
process.exit(0);
|
2016-12-10 13:46:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-11 23:38:29 +00:00
|
|
|
entryErrorCheck(file);
|