forked from heroku/node-js-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Zhao Guopeng from EC2
committed
Jul 12, 2013
1 parent
f3ff2e7
commit 4c16d17
Showing
2 changed files
with
76 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
["h1", | ||
".navigation"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
#!/usr/bin/env node | ||
/* | ||
Automatically grade files for the presence of specified HTML tags/attributes. | ||
Uses commander.js and cheerio. Teaches command line application development | ||
and basic DOM parsing. | ||
References: | ||
+ cheerio | ||
- https://github.com/MatthewMueller/cheerio | ||
- http://encosia.com/cheerio-faster-windows-friendly-alternative-jsdom/ | ||
- http://maxogden.com/scraping-with-node.html | ||
+ commander.js | ||
- https://github.com/visionmedia/commander.js | ||
- http://tjholowaychuk.com/post/9103188408/commander-js-nodejs-command-line-interfaces-made-easy | ||
+ JSON | ||
- http://en.wikipedia.org/wiki/JSON | ||
- https://developer.mozilla.org/en-US/docs/JSON | ||
- https://developer.mozilla.org/en-US/docs/JSON#JSON_in_Firefox_2 | ||
*/ | ||
|
||
var fs = require('fs'); | ||
var program = require('commander'); | ||
var cheerio = require('cheerio'); | ||
var HTMLFILE_DEFAULT = "index.html"; | ||
var CHECKSFILE_DEFAULT = "checks.json"; | ||
|
||
var assertFileExists = function(infile) { | ||
var instr = infile.toString(); | ||
if(!fs.existsSync(instr)) { | ||
console.log("%s does not exist. Exiting.", instr); | ||
process.exit(1); // http://nodejs.org/api/process.html#process_process_exit_code | ||
} | ||
return instr; | ||
}; | ||
|
||
var cheerioHtmlFile = function(htmlfile) { | ||
return cheerio.load(fs.readFileSync(htmlfile)); | ||
}; | ||
|
||
var loadChecks = function(checksfile) { | ||
return JSON.parse(fs.readFileSync(checksfile)); | ||
}; | ||
|
||
var checkHtmlFile = function(htmlfile, checksfile) { | ||
$ = cheerioHtmlFile(htmlfile); | ||
var checks = loadChecks(checksfile).sort(); | ||
var out = {}; | ||
for(var ii in checks) { | ||
var present = $(checks[ii]).length > 0; | ||
out[checks[ii]] = present; | ||
} | ||
return out; | ||
}; | ||
|
||
var clone = function(fn) { | ||
// Workaround for commander.js issue. | ||
// http://stackoverflow.com/a/6772648 | ||
return fn.bind({}); | ||
}; | ||
|
||
if(require.main == module) { | ||
program | ||
.option('-c, --checks <check_file>', 'Path to checks.json', clone(assertFileExists), CHECKSFILE_DEFAULT) | ||
.option('-f, --file <html_file>', 'Path to index.html', clone(assertFileExists), HTMLFILE_DEFAULT) | ||
.parse(process.argv); | ||
var checkJson = checkHtmlFile(program.file, program.checks); | ||
var outJson = JSON.stringify(checkJson, null, 4); | ||
console.log(outJson); | ||
} else { | ||
exports.checkHtmlFile = checkHtmlFile; | ||
} |