Add test.js for travisci

Add errors to README.md
This commit is contained in:
nrew225 2016-10-24 19:06:35 -07:00
parent eb80d75ee1
commit 2d5a9ac40c
3 changed files with 111 additions and 5 deletions

7
.travis.yml Normal file
View File

@ -0,0 +1,7 @@
language: node_js
node_js:
- "node"
script:
- node test.js

View File

@ -912,7 +912,7 @@ See https://github.com/n1trux/awesome-sysadmin#monitoring and https://github.com
See also [Ticketing](#ticketing), [Task management/To-do lists](#task-managementto-do-lists)* See also [Ticketing](#ticketing), [Task management/To-do lists](#task-managementto-do-lists)*
* [Apache Bloodhound](https://bloodhound.apache.org/) - Manage software products, Keep track of features, tasks and bugs. `Apache` `Python` * [Apache Bloodhound](https://bloodhound.apache.org/) - Manage software products, Keep track of features, tasks and bugs `Apache` `Python`
* [Bonobo Git Server](https://bonobogitserver.com/) - Set up your own self hosted git server on IIS for Windows. Manage users and have full control over your repositories with a nice user friendly graphical interface. ([Source Code](https://github.com/jakubgarfield/Bonobo-Git-Server)) `MIT` `C#` * [Bonobo Git Server](https://bonobogitserver.com/) - Set up your own self hosted git server on IIS for Windows. Manage users and have full control over your repositories with a nice user friendly graphical interface. ([Source Code](https://github.com/jakubgarfield/Bonobo-Git-Server)) `MIT` `C#`
* [CaseBox](https://www.casebox.org) - Manage all your organisation's information in one system. ([Source Code](https://github.com/KETSE/casebox)) `AGPLv3` `PHP/Java` * [CaseBox](https://www.casebox.org) - Manage all your organisation's information in one system. ([Source Code](https://github.com/KETSE/casebox)) `AGPLv3` `PHP/Java`
* [Fossil](https://www.fossil-scm.org/index.html/doc/trunk/www/index.wiki) - Distributed version control system featuring wiki and bug tracker. `BSD` `C` * [Fossil](https://www.fossil-scm.org/index.html/doc/trunk/www/index.wiki) - Distributed version control system featuring wiki and bug tracker. `BSD` `C`
@ -948,7 +948,7 @@ See **[Ticketing](#ticketing)**
* [ICEcoder](https://icecoder.net/) - ICEcoder is a web IDE / browser based code editor, which allows you to develop websites directly within the web browser. ([Demo](http://demo.icecoder.net/ICEcoder/), [Source Code](https://github.com/mattpass/ICEcoder)) `MIT` `PHP` * [ICEcoder](https://icecoder.net/) - ICEcoder is a web IDE / browser based code editor, which allows you to develop websites directly within the web browser. ([Demo](http://demo.icecoder.net/ICEcoder/), [Source Code](https://github.com/mattpass/ICEcoder)) `MIT` `PHP`
* [JS Bin](http://jsbin.com/) - Open source collaborative web development debugging tool. ([Source Code](https://github.com/jsbin/jsbin)) `MIT` `Nodejs` * [JS Bin](http://jsbin.com/) - Open source collaborative web development debugging tool. ([Source Code](https://github.com/jsbin/jsbin)) `MIT` `Nodejs`
* [Koding](http://www.koding.com/) - The simplest way to manage your entire Dev Infrastructure. ([Source Code](https://github.com/koding/koding)) `Apache` `Nodejs` * [Koding](http://www.koding.com/) - The simplest way to manage your entire Dev Infrastructure. ([Source Code](https://github.com/koding/koding)) `Apache` `Nodejs`
* [Microglark](http://micro.glark.io) - A hacky minimalistic remote pair programming editor. ([Demo](http://micro.glark.io), [Source Code](https://github.com/Bluefinch/microglark)) `AGPLv3` `Nodejs` * [Microglark](http://micro.glark.io) A hacky minimalistic remote pair programming editor. ([Demo](http://micro.glark.io), [Source Code](https://github.com/Bluefinch/microglark)) `AGPLv3` `Nodejs`
* [Regexr](http://regexr.com/) - RegExr is a HTML/JS based tool for creating, testing, and learning about Regular Expressions. ([Source Code](https://github.com/gskinner/regexr/)) `MIT` `Nodejs` * [Regexr](http://regexr.com/) - RegExr is a HTML/JS based tool for creating, testing, and learning about Regular Expressions. ([Source Code](https://github.com/gskinner/regexr/)) `MIT` `Nodejs`
* [RStudio Server](https://www.rstudio.com/products/rstudio/#Server) - Web browser based IDE for R. ([Source Code](https://github.com/rstudio/rstudio/)) `AGPLv3` `Java/C++` * [RStudio Server](https://www.rstudio.com/products/rstudio/#Server) - Web browser based IDE for R. ([Source Code](https://github.com/rstudio/rstudio/)) `AGPLv3` `Java/C++`
* [Wide](https://github.com/b3log/wide) - A Web-based IDE for Teams using Go programming language/Golang. ([Demo](http://wide.b3log.org/signup)) `Apache` `Go` * [Wide](https://github.com/b3log/wide) - A Web-based IDE for Teams using Go programming language/Golang. ([Demo](http://wide.b3log.org/signup)) `Apache` `Go`

99
test.js Normal file
View File

@ -0,0 +1,99 @@
const fs = require('fs');
var testStatus;
var file = fs.readFileSync('README.md', 'utf8')
entryErrorCheck(file);
return testStatus;
function entryErrorCheck(md) {
var namepatt = /\*\s\[(.*?)\]/;
var entries = split(md);
var totalFail = 0;
var totalPass = 0;
var total = 0;
var entryArray = [];
for (var i = 0, len = entries.length; i < len; i++) {
entryArray[i] = new Object;
entryArray[i].raw = entries[i];
//console.log(entries[i]);
//console.log(entryArray[i].raw);
//console.log(entryFilter(entries[i]));
if (entryFilter(entries[i]) === true){
total += 1;
entryArray[i].name = namepatt.exec(entries[i])[1];
//console.log('name' + entryArray[i].name);
//entryArray[i].error = "";
entryArray[i].pass = findPattern(entries[i], i);
if (entryArray[i].pass == true) {
totalPass += 1;
//console.log(i + 1 + ". Pass: " + entryArray[i].name);
} else {
console.log("Line #" + i + 1 + ". Fail: " + entryArray[i].name);
//console.log(entries[i]);
totalFail += 1;
}
}
}
if (totalFail > 0) {
console.log(totalFail + " Failed, " + totalPass + " Passed, of " + total);
testStatus = 1;
} else {
console.log(totalFail + " Failed, " + totalPass + " Passed, of " + total);
testStatus = 0;
}
//console.log(entries[i])
//console.log(totalPass + "|" + totalFail);
};
function entryFilter(md) {
var linepatt = /^\s{0,4}\*\s\[.*\`/;
return linepatt.test(md);
}
function split(text){
//cutOne = text.split("<!-- BEGIN SOFTWARE LIST -->");
//cutTwo = cutOne[1].split("<!-- END SOFTWARE LIST -->");
//cutThree = cutTwo[0].replace(/^\#.*$|^\_.*$|^See.*$|^Some.*$|^\*.*\*$|^\s\*.*\*$|^CMS.*$|^\*\*\[.*$/mg, "");
return text.split(/\r?\n/);
}
function parseMD(md) {
return split(md).filter(entryFilter);
//console.log(entries);
//console.log (entries.length);
//console.log(entries[0]);
//console.log(entries[entries.length - 1]);
}
function findPattern(text, i) {
var nodnospatt = /\s{0,3}\*\s\[(.*?)\]\((.*?)\)\s\-\s(.{0,249}?\.\s)\`(.*?)\`\s\`(.*?)\`/; //Regex for entries with no demo and no source code
var slpatt = /\s{0,3}\*\s\[(.*?)\]\((.*?)\)\s\-\s(.{0,249}?\.\s)\(\[Demo\b\]\((.*?)\)\,\s\[Source Code\b\]\((.*?)\)\)\s\`(.*?)\`\s\`(.*?)\`/; //Regex for entries with demo and source code
var nodpatt = /\s{0,3}\*\s\[(.*?)\]\((.*?)\)\s\-\s(.{0,249}?\.\s)\(\[Source Code\]\((.*?)\)\)\s\`(.*?)\`\s\`(.*?)\`/; //Regex for entries with no demo
var nospatt = /\s{0,3}\*\s\[(.*?)\]\((.*?)\)\s\-\s(.{0,249}?\.\s)\(\[Demo\]\((.*?)\)\)\s\`(.*?)\`\s\`(.*?)\`/; //Regex for entries with no source code
var pnodnospatt = /\s{0,3}\*\s\[(.*?)\]\((.*?)\)\s\`(\⚠)\`\s\-\s(.{0,249}?\.\s)\`(.*?)\`\s\`(.*?)\`/; //Regex for entries with proprietary with no demo and no source code
var pslpatt = /\s{0,3}\*\s\[(.*?)\]\((.*?)\)\s\`(\⚠)\`\s\-\s(.{0,249}?\.\s)\(\[Demo\b\]\((.*?)\)\,\s\[Source Code\b\]\((.*?)\)\)\s\`(.*?)\`\s\`(.*?)\`/; //Regex for entries with proprietary with demo and source code
var pnodpatt = /\s{0,3}\*\s\[(.*?)\]\((.*?)\)\s\`(\⚠)\`\s\-\s(.{0,249}?\.\s)\(\[Source Code\]\((.*?)\)\)\s\`(.*?)\`\s\`(.*?)\`/; //Regex for entries with proprietary with no demo
var pnospatt = /\s{0,3}\*\s\[(.*?)\]\((.*?)\)\s\`(\⚠)\`\s\-\s(.{0,249}?\.\s)\(\[Demo\]\((.*?)\)\)\s\`(.*?)\`\s\`(.*?)\`/; //Regex for entries with proprietary with no source code
if (nodnospatt.test(text) == true) {
return true;
} else if (slpatt.test(text) == true) {
return true;
} else if (nodpatt.test(text) == true) {
return true;
} else if (nospatt.test(text) == true) {
return true;
} else if (pnodnospatt.test(text) == true) {
return true;
} else if (pslpatt.test(text) == true) {
return true;
} else if (pnodpatt.test(text) == true) {
return true;
} else if (pnospatt.test(text) == true) {
return true;
} else {
//document.getElementById("alert").innerHTML = "Error(s) Found, check your syntax!";
return false;
}
};