-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrader.js
executable file
·105 lines (84 loc) · 2.5 KB
/
grader.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
var fs = require('fs');
var util = require('util');
var program = require('commander');
var cheerio = require('cheerio');
var HTMLFILE_DEFAULT = "index.html";
var CHECKSFILE_DEFAULT = "checks.json";
var WEBPAGE_DEFAULT = "www.google.com";
var rest = require('restler');
var buildfn = function() {
var response2console = function(result, response) {
var fileObj = {};
if(result instanceof Error) {
console.error('Error: ' + util.format(response,message))
} else {
fileObj = fs.writeFileSync("url.html", result);
}
return fileObj;
};
return response2console;
};
var assertFileExists = function(infile) {
var instr = infile.toString();
if(!fs.existsSync(instr)) {
console.log("%s does not exist. Exiting.", instr);
process.exit(1);
}
return instr;
};
var assertWebpageExists = function(url) {
var fd = {};
if(!fs.existsSync("url.html")) {
fd = fs.openSync("url.html", 'w');
}
var response2console = buildfn();
var urlObj = rest.get(url, {}).on('complete', function(data) {
fs.writeFileSync("url.html", data);
console.log("Writing Completed");
});
console.log("Testing Write");
return assertFileExists("url.html");
};
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) {
console.log("Checking Html File");
$ = 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 checkUrl = function(url, checksfile) {
if(!fs.existsSync("url.html")) {
console.log("%s does not exist. Exiting.", instr);
process.exit(1);
}
return checkHtmlFile(url, checksfile);
}
var clone = function(fn) {
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)
.option('-u, --url <url_file>', 'Web page address', clone(assertWebpageExists), WEBPAGE_DEFAULT)
.parse(process.argv);
console.log(program.file);
console.log(program.checks);
console.log(program.url);
var checkJson = {};
checkJson = checkUrl(program.url, program.checks);
var outJson = JSON.stringify(checkJson, null, 4);
console.log(outJson);
} else {
exports.checkHtmlFile = checkHtmlFile;
}