2017-12-12 22:53:24 +00:00
|
|
|
const fs = require('fs');
|
2020-03-13 23:24:12 +00:00
|
|
|
const path = require('path');
|
2018-01-07 15:20:25 +00:00
|
|
|
|
2020-04-04 16:35:20 +00:00
|
|
|
function getNextStep(content, pos, stop) {
|
|
|
|
while (pos < content.length && content[pos] !== stop &&
|
|
|
|
(content[pos] === ' ' || content[pos] === '\t' || content[pos] === '\n')) {
|
|
|
|
pos += 1;
|
|
|
|
}
|
|
|
|
if (pos >= content.length) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
if (content[pos] !== stop) {
|
|
|
|
return pos * -1;
|
|
|
|
}
|
|
|
|
return pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Stupid function extractor based on indent. Doesn't support block
|
|
|
|
// comments. If someone puts a ' or an " in a block comment this
|
|
|
|
// will blow up. Template strings are not tested and might also be
|
|
|
|
// broken.
|
|
|
|
function extractFunction(content, functionName) {
|
2021-08-11 18:14:26 +00:00
|
|
|
var level = 0;
|
2020-04-04 16:35:20 +00:00
|
|
|
var splitter = "function " + functionName + "(";
|
2021-08-11 18:14:26 +00:00
|
|
|
var stop;
|
|
|
|
var pos, start;
|
2020-04-04 16:35:20 +00:00
|
|
|
|
|
|
|
while (true) {
|
2021-08-11 18:14:26 +00:00
|
|
|
start = content.indexOf(splitter);
|
2020-04-04 16:35:20 +00:00
|
|
|
if (start === -1) {
|
|
|
|
break;
|
|
|
|
}
|
2021-08-11 18:14:26 +00:00
|
|
|
pos = start;
|
2020-04-04 16:35:20 +00:00
|
|
|
while (pos < content.length && content[pos] !== ')') {
|
|
|
|
pos += 1;
|
|
|
|
}
|
|
|
|
if (pos >= content.length) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
pos = getNextStep(content, pos + 1, '{');
|
|
|
|
if (pos === null) {
|
|
|
|
break;
|
|
|
|
} else if (pos < 0) {
|
|
|
|
content = content.slice(-pos);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
while (pos < content.length) {
|
|
|
|
// Eat single-line comments
|
2021-08-11 18:14:26 +00:00
|
|
|
if (content[pos] === '/' && pos > 0 && content[pos - 1] === '/') {
|
2020-04-04 16:35:20 +00:00
|
|
|
do {
|
|
|
|
pos += 1;
|
|
|
|
} while (pos < content.length && content[pos] !== '\n');
|
|
|
|
|
2021-08-11 18:14:26 +00:00
|
|
|
// Eat multiline comment.
|
|
|
|
} else if (content[pos] === '*' && pos > 0 && content[pos - 1] === '/') {
|
|
|
|
do {
|
|
|
|
pos += 1;
|
|
|
|
} while (pos < content.length && content[pos] !== '/' && content[pos - 1] !== '*');
|
|
|
|
|
2020-04-04 16:35:20 +00:00
|
|
|
// Eat quoted strings
|
|
|
|
} else if (content[pos] === '"' || content[pos] === "'" || content[pos] === "`") {
|
2021-08-11 18:14:26 +00:00
|
|
|
stop = content[pos];
|
2020-04-04 16:35:20 +00:00
|
|
|
do {
|
|
|
|
if (content[pos] === '\\') {
|
|
|
|
pos += 1;
|
|
|
|
}
|
2021-08-11 18:14:26 +00:00
|
|
|
pos += 1;
|
|
|
|
} while (pos < content.length && content[pos] !== stop);
|
2018-01-07 15:20:25 +00:00
|
|
|
|
2021-08-11 18:14:26 +00:00
|
|
|
// Otherwise, check for block level.
|
2020-04-04 16:35:20 +00:00
|
|
|
} else if (content[pos] === '{') {
|
2021-08-11 18:14:26 +00:00
|
|
|
level += 1;
|
2020-04-04 16:35:20 +00:00
|
|
|
} else if (content[pos] === '}') {
|
2021-08-11 18:14:26 +00:00
|
|
|
level -= 1;
|
|
|
|
if (level === 0) {
|
2020-04-04 16:35:20 +00:00
|
|
|
return content.slice(start, pos + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pos += 1;
|
|
|
|
}
|
|
|
|
content = content.slice(start + 1);
|
|
|
|
}
|
|
|
|
return null;
|
2019-02-23 23:08:43 +00:00
|
|
|
}
|
|
|
|
|
2020-04-04 16:35:20 +00:00
|
|
|
// Stupid function extractor for array.
|
|
|
|
function extractArrayVariable(content, arrayName) {
|
|
|
|
var splitter = "var " + arrayName;
|
|
|
|
while (true) {
|
|
|
|
var start = content.indexOf(splitter);
|
|
|
|
if (start === -1) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
var pos = getNextStep(content, start, '=');
|
|
|
|
if (pos === null) {
|
|
|
|
break;
|
|
|
|
} else if (pos < 0) {
|
|
|
|
content = content.slice(-pos);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
pos = getNextStep(content, pos, '[');
|
|
|
|
if (pos === null) {
|
|
|
|
break;
|
|
|
|
} else if (pos < 0) {
|
|
|
|
content = content.slice(-pos);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
while (pos < content.length) {
|
|
|
|
if (content[pos] === '"' || content[pos] === "'") {
|
|
|
|
var stop = content[pos];
|
|
|
|
do {
|
|
|
|
if (content[pos] === '\\') {
|
|
|
|
pos += 2;
|
|
|
|
} else {
|
|
|
|
pos += 1;
|
|
|
|
}
|
|
|
|
} while (pos < content.length &&
|
|
|
|
(content[pos] !== stop || content[pos - 1] === '\\'));
|
|
|
|
} else if (content[pos] === ']' &&
|
|
|
|
pos + 1 < content.length &&
|
|
|
|
content[pos + 1] === ';') {
|
|
|
|
return content.slice(start, pos + 2);
|
|
|
|
}
|
|
|
|
pos += 1;
|
|
|
|
}
|
|
|
|
content = content.slice(start + 1);
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Stupid function extractor for variable.
|
|
|
|
function extractVariable(content, varName) {
|
|
|
|
var splitter = "var " + varName;
|
|
|
|
while (true) {
|
|
|
|
var start = content.indexOf(splitter);
|
|
|
|
if (start === -1) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
var pos = getNextStep(content, start, '=');
|
|
|
|
if (pos === null) {
|
|
|
|
break;
|
|
|
|
} else if (pos < 0) {
|
|
|
|
content = content.slice(-pos);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
while (pos < content.length) {
|
|
|
|
if (content[pos] === '"' || content[pos] === "'") {
|
|
|
|
var stop = content[pos];
|
|
|
|
do {
|
|
|
|
if (content[pos] === '\\') {
|
|
|
|
pos += 2;
|
|
|
|
} else {
|
|
|
|
pos += 1;
|
|
|
|
}
|
|
|
|
} while (pos < content.length &&
|
|
|
|
(content[pos] !== stop || content[pos - 1] === '\\'));
|
|
|
|
} else if (content[pos] === ';' || content[pos] === ',') {
|
|
|
|
return content.slice(start, pos + 1);
|
|
|
|
}
|
|
|
|
pos += 1;
|
|
|
|
}
|
|
|
|
content = content.slice(start + 1);
|
2019-02-23 23:08:43 +00:00
|
|
|
}
|
2020-04-04 16:35:20 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
function loadContent(content) {
|
|
|
|
var Module = module.constructor;
|
|
|
|
var m = new Module();
|
|
|
|
m._compile(content, "tmp.js");
|
|
|
|
m.exports.ignore_order = content.indexOf("\n// ignore-order\n") !== -1 ||
|
|
|
|
content.startsWith("// ignore-order\n");
|
|
|
|
m.exports.exact_check = content.indexOf("\n// exact-check\n") !== -1 ||
|
|
|
|
content.startsWith("// exact-check\n");
|
|
|
|
m.exports.should_fail = content.indexOf("\n// should-fail\n") !== -1 ||
|
|
|
|
content.startsWith("// should-fail\n");
|
|
|
|
return m.exports;
|
|
|
|
}
|
|
|
|
|
|
|
|
function readFile(filePath) {
|
|
|
|
return fs.readFileSync(filePath, 'utf8');
|
|
|
|
}
|
|
|
|
|
|
|
|
function loadThings(thingsToLoad, kindOfLoad, funcToCall, fileContent) {
|
|
|
|
var content = '';
|
|
|
|
for (var i = 0; i < thingsToLoad.length; ++i) {
|
|
|
|
var tmp = funcToCall(fileContent, thingsToLoad[i]);
|
|
|
|
if (tmp === null) {
|
2020-04-30 13:37:00 +00:00
|
|
|
console.log('unable to find ' + kindOfLoad + ' "' + thingsToLoad[i] + '"');
|
2020-04-04 16:35:20 +00:00
|
|
|
process.exit(1);
|
|
|
|
}
|
|
|
|
content += tmp;
|
|
|
|
content += 'exports.' + thingsToLoad[i] + ' = ' + thingsToLoad[i] + ';';
|
2019-02-24 00:04:07 +00:00
|
|
|
}
|
2020-04-04 16:35:20 +00:00
|
|
|
return content;
|
|
|
|
}
|
2018-01-07 15:20:25 +00:00
|
|
|
|
2020-11-26 13:02:01 +00:00
|
|
|
function contentToDiffLine(key, value) {
|
|
|
|
return `"${key}": "${value}",`;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This function is only called when no matching result was found and therefore will only display
|
|
|
|
// the diff between the two items.
|
|
|
|
function betterLookingDiff(entry, data) {
|
|
|
|
let output = ' {\n';
|
|
|
|
let spaces = ' ';
|
|
|
|
for (let key in entry) {
|
|
|
|
if (!entry.hasOwnProperty(key)) {
|
|
|
|
continue;
|
|
|
|
}
|
2021-02-01 10:27:17 +00:00
|
|
|
if (!data || !data.hasOwnProperty(key)) {
|
|
|
|
output += '-' + spaces + contentToDiffLine(key, entry[key]) + '\n';
|
|
|
|
continue;
|
|
|
|
}
|
2020-11-26 13:02:01 +00:00
|
|
|
let value = data[key];
|
|
|
|
if (value !== entry[key]) {
|
|
|
|
output += '-' + spaces + contentToDiffLine(key, entry[key]) + '\n';
|
|
|
|
output += '+' + spaces + contentToDiffLine(key, value) + '\n';
|
|
|
|
} else {
|
|
|
|
output += spaces + contentToDiffLine(key, value) + '\n';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return output + ' }';
|
|
|
|
}
|
|
|
|
|
2020-04-04 16:35:20 +00:00
|
|
|
function lookForEntry(entry, data) {
|
|
|
|
for (var i = 0; i < data.length; ++i) {
|
|
|
|
var allGood = true;
|
|
|
|
for (var key in entry) {
|
|
|
|
if (!entry.hasOwnProperty(key)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
var value = data[i][key];
|
|
|
|
// To make our life easier, if there is a "parent" type, we add it to the path.
|
|
|
|
if (key === 'path' && data[i]['parent'] !== undefined) {
|
|
|
|
if (value.length > 0) {
|
|
|
|
value += '::' + data[i]['parent']['name'];
|
|
|
|
} else {
|
|
|
|
value = data[i]['parent']['name'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (value !== entry[key]) {
|
|
|
|
allGood = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (allGood === true) {
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2021-04-13 23:43:14 +00:00
|
|
|
function loadSearchJsAndIndex(searchJs, searchIndex, storageJs, crate) {
|
2020-04-04 16:35:20 +00:00
|
|
|
if (searchIndex[searchIndex.length - 1].length === 0) {
|
|
|
|
searchIndex.pop();
|
|
|
|
}
|
|
|
|
searchIndex.pop();
|
2020-04-30 13:37:00 +00:00
|
|
|
var fullSearchIndex = searchIndex.join("\n") + '\nexports.rawSearchIndex = searchIndex;';
|
|
|
|
searchIndex = loadContent(fullSearchIndex);
|
2020-04-11 15:42:47 +00:00
|
|
|
var finalJS = "";
|
2020-04-04 16:35:20 +00:00
|
|
|
|
|
|
|
var arraysToLoad = ["itemTypes"];
|
|
|
|
var variablesToLoad = ["MAX_LEV_DISTANCE", "MAX_RESULTS", "NO_TYPE_FILTER",
|
|
|
|
"GENERICS_DATA", "NAME", "INPUTS_DATA", "OUTPUT_DATA",
|
|
|
|
"TY_PRIMITIVE", "TY_KEYWORD",
|
|
|
|
"levenshtein_row2"];
|
|
|
|
// execQuery first parameter is built in getQuery (which takes in the search input).
|
|
|
|
// execQuery last parameter is built in buildIndex.
|
|
|
|
// buildIndex requires the hashmap from search-index.
|
|
|
|
var functionsToLoad = ["buildHrefAndPath", "pathSplitter", "levenshtein", "validateResult",
|
2021-04-01 17:56:11 +00:00
|
|
|
"handleAliases", "getQuery", "buildIndex", "execQuery", "execSearch",
|
|
|
|
"removeEmptyStringsFromArray"];
|
2020-04-04 16:35:20 +00:00
|
|
|
|
2021-05-14 14:07:09 +00:00
|
|
|
const functions = ["hasOwnPropertyRustdoc", "onEach"];
|
2020-05-04 12:51:06 +00:00
|
|
|
ALIASES = {};
|
2021-01-18 11:03:53 +00:00
|
|
|
finalJS += 'window = { "currentCrate": "' + crate + '", rootPath: "../" };\n';
|
2021-05-14 14:07:09 +00:00
|
|
|
finalJS += loadThings(functions, 'function', extractFunction, storageJs);
|
2021-04-13 23:43:14 +00:00
|
|
|
finalJS += loadThings(arraysToLoad, 'array', extractArrayVariable, searchJs);
|
|
|
|
finalJS += loadThings(variablesToLoad, 'variable', extractVariable, searchJs);
|
|
|
|
finalJS += loadThings(functionsToLoad, 'function', extractFunction, searchJs);
|
2020-04-04 16:35:20 +00:00
|
|
|
|
|
|
|
var loaded = loadContent(finalJS);
|
2020-04-30 13:37:00 +00:00
|
|
|
var index = loaded.buildIndex(searchIndex.rawSearchIndex);
|
2020-04-04 16:35:20 +00:00
|
|
|
|
|
|
|
return [loaded, index];
|
|
|
|
}
|
|
|
|
|
2020-04-30 13:37:00 +00:00
|
|
|
function runSearch(query, expected, index, loaded, loadedFile, queryName) {
|
2020-04-04 16:35:20 +00:00
|
|
|
const filter_crate = loadedFile.FILTER_CRATE;
|
|
|
|
const ignore_order = loadedFile.ignore_order;
|
|
|
|
const exact_check = loadedFile.exact_check;
|
2018-01-07 15:20:25 +00:00
|
|
|
|
2020-04-30 13:37:00 +00:00
|
|
|
var results = loaded.execSearch(loaded.getQuery(query), index, filter_crate);
|
2020-04-04 16:35:20 +00:00
|
|
|
var error_text = [];
|
2019-02-23 23:08:43 +00:00
|
|
|
|
2020-04-04 16:35:20 +00:00
|
|
|
for (var key in expected) {
|
|
|
|
if (!expected.hasOwnProperty(key)) {
|
2019-02-24 00:04:07 +00:00
|
|
|
continue;
|
2019-02-23 23:08:43 +00:00
|
|
|
}
|
2020-04-04 16:35:20 +00:00
|
|
|
if (!results.hasOwnProperty(key)) {
|
|
|
|
error_text.push('==> Unknown key "' + key + '"');
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
var entry = expected[key];
|
2020-06-23 08:18:51 +00:00
|
|
|
|
|
|
|
if (exact_check == true && entry.length !== results[key].length) {
|
|
|
|
error_text.push(queryName + "==> Expected exactly " + entry.length +
|
|
|
|
" results but found " + results[key].length + " in '" + key + "'");
|
|
|
|
}
|
|
|
|
|
2020-04-04 16:35:20 +00:00
|
|
|
var prev_pos = -1;
|
|
|
|
for (var i = 0; i < entry.length; ++i) {
|
|
|
|
var entry_pos = lookForEntry(entry[i], results[key]);
|
|
|
|
if (entry_pos === null) {
|
2020-04-30 13:37:00 +00:00
|
|
|
error_text.push(queryName + "==> Result not found in '" + key + "': '" +
|
2020-04-04 16:35:20 +00:00
|
|
|
JSON.stringify(entry[i]) + "'");
|
2020-11-26 13:02:01 +00:00
|
|
|
// By default, we just compare the two first items.
|
|
|
|
let item_to_diff = 0;
|
|
|
|
if ((ignore_order === false || exact_check === true) && i < results[key].length) {
|
|
|
|
item_to_diff = i;
|
|
|
|
}
|
|
|
|
error_text.push("Diff of first error:\n" +
|
|
|
|
betterLookingDiff(entry[i], results[key][item_to_diff]));
|
2020-04-04 16:35:20 +00:00
|
|
|
} else if (exact_check === true && prev_pos + 1 !== entry_pos) {
|
2020-04-30 13:37:00 +00:00
|
|
|
error_text.push(queryName + "==> Exact check failed at position " + (prev_pos + 1) +
|
|
|
|
": expected '" + JSON.stringify(entry[i]) + "' but found '" +
|
2020-04-04 16:35:20 +00:00
|
|
|
JSON.stringify(results[key][i]) + "'");
|
|
|
|
} else if (ignore_order === false && entry_pos < prev_pos) {
|
2020-04-30 13:37:00 +00:00
|
|
|
error_text.push(queryName + "==> '" + JSON.stringify(entry[i]) + "' was supposed " +
|
|
|
|
"to be before '" + JSON.stringify(results[key][entry_pos]) + "'");
|
2020-04-04 16:35:20 +00:00
|
|
|
} else {
|
|
|
|
prev_pos = entry_pos;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-04-30 13:37:00 +00:00
|
|
|
return error_text;
|
|
|
|
}
|
|
|
|
|
|
|
|
function checkResult(error_text, loadedFile, displaySuccess) {
|
|
|
|
if (error_text.length === 0 && loadedFile.should_fail === true) {
|
|
|
|
console.log("FAILED");
|
|
|
|
console.log("==> Test was supposed to fail but all items were found...");
|
|
|
|
} else if (error_text.length !== 0 && loadedFile.should_fail === false) {
|
|
|
|
console.log("FAILED");
|
|
|
|
console.log(error_text.join("\n"));
|
2020-04-04 16:35:20 +00:00
|
|
|
} else {
|
2020-04-30 13:37:00 +00:00
|
|
|
if (displaySuccess) {
|
|
|
|
console.log("OK");
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
function runChecks(testFile, loaded, index) {
|
2020-06-23 08:18:51 +00:00
|
|
|
var testFileContent = readFile(testFile) + 'exports.QUERY = QUERY;exports.EXPECTED = EXPECTED;';
|
|
|
|
if (testFileContent.indexOf("FILTER_CRATE") !== -1) {
|
|
|
|
testFileContent += "exports.FILTER_CRATE = FILTER_CRATE;";
|
2022-02-03 21:43:02 +00:00
|
|
|
} else {
|
|
|
|
testFileContent += "exports.FILTER_CRATE = null;";
|
2020-06-23 08:18:51 +00:00
|
|
|
}
|
|
|
|
var loadedFile = loadContent(testFileContent);
|
2020-04-30 13:37:00 +00:00
|
|
|
|
|
|
|
const expected = loadedFile.EXPECTED;
|
|
|
|
const query = loadedFile.QUERY;
|
|
|
|
|
|
|
|
if (Array.isArray(query)) {
|
|
|
|
if (!Array.isArray(expected)) {
|
|
|
|
console.log("FAILED");
|
|
|
|
console.log("==> If QUERY variable is an array, EXPECTED should be an array too");
|
|
|
|
return 1;
|
|
|
|
} else if (query.length !== expected.length) {
|
|
|
|
console.log("FAILED");
|
|
|
|
console.log("==> QUERY variable should have the same length as EXPECTED");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
for (var i = 0; i < query.length; ++i) {
|
|
|
|
var error_text = runSearch(query[i], expected[i], index, loaded, loadedFile,
|
|
|
|
"[ query `" + query[i] + "`]");
|
|
|
|
if (checkResult(error_text, loadedFile, false) !== 0) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
2020-04-04 16:35:20 +00:00
|
|
|
console.log("OK");
|
2020-04-30 13:37:00 +00:00
|
|
|
return 0;
|
2020-04-04 16:35:20 +00:00
|
|
|
}
|
2020-04-30 13:37:00 +00:00
|
|
|
var error_text = runSearch(query, expected, index, loaded, loadedFile, "");
|
|
|
|
return checkResult(error_text, loadedFile, true);
|
2020-04-04 16:35:20 +00:00
|
|
|
}
|
|
|
|
|
2020-04-11 15:42:47 +00:00
|
|
|
function load_files(doc_folder, resource_suffix, crate) {
|
2021-04-13 23:43:14 +00:00
|
|
|
var searchJs = readFile(path.join(doc_folder, "search" + resource_suffix + ".js"));
|
2020-05-07 19:42:41 +00:00
|
|
|
var storageJs = readFile(path.join(doc_folder, "storage" + resource_suffix + ".js"));
|
2020-04-11 15:42:47 +00:00
|
|
|
var searchIndex = readFile(
|
|
|
|
path.join(doc_folder, "search-index" + resource_suffix + ".js")).split("\n");
|
2020-04-04 16:35:20 +00:00
|
|
|
|
2021-04-13 23:43:14 +00:00
|
|
|
return loadSearchJsAndIndex(searchJs, searchIndex, storageJs, crate);
|
2020-04-04 16:35:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function showHelp() {
|
|
|
|
console.log("rustdoc-js options:");
|
2020-04-11 15:42:47 +00:00
|
|
|
console.log(" --doc-folder [PATH] : location of the generated doc folder");
|
|
|
|
console.log(" --help : show this message then quit");
|
|
|
|
console.log(" --crate-name [STRING] : crate name to be used");
|
2021-11-05 14:58:14 +00:00
|
|
|
console.log(" --test-file [PATHs] : location of the JS test files (can be called " +
|
|
|
|
"multiple times)");
|
2020-04-11 15:42:47 +00:00
|
|
|
console.log(" --test-folder [PATH] : location of the JS tests folder");
|
|
|
|
console.log(" --resource-suffix [STRING] : suffix to refer to the correct files");
|
2020-04-04 16:35:20 +00:00
|
|
|
}
|
2019-02-23 23:08:43 +00:00
|
|
|
|
2020-04-04 16:35:20 +00:00
|
|
|
function parseOptions(args) {
|
|
|
|
var opts = {
|
2020-04-11 15:42:47 +00:00
|
|
|
"crate_name": "",
|
|
|
|
"resource_suffix": "",
|
2020-04-04 16:35:20 +00:00
|
|
|
"doc_folder": "",
|
|
|
|
"test_folder": "",
|
2021-11-05 14:58:14 +00:00
|
|
|
"test_file": [],
|
2020-04-04 16:35:20 +00:00
|
|
|
};
|
2021-11-03 14:44:04 +00:00
|
|
|
var correspondences = {
|
2020-04-11 15:42:47 +00:00
|
|
|
"--resource-suffix": "resource_suffix",
|
2020-04-04 16:35:20 +00:00
|
|
|
"--doc-folder": "doc_folder",
|
|
|
|
"--test-folder": "test_folder",
|
|
|
|
"--test-file": "test_file",
|
2020-04-11 15:42:47 +00:00
|
|
|
"--crate-name": "crate_name",
|
2020-04-04 16:35:20 +00:00
|
|
|
};
|
2019-02-24 00:04:07 +00:00
|
|
|
|
2020-04-04 16:35:20 +00:00
|
|
|
for (var i = 0; i < args.length; ++i) {
|
2021-11-03 14:44:04 +00:00
|
|
|
if (correspondences.hasOwnProperty(args[i])) {
|
2020-04-04 16:35:20 +00:00
|
|
|
i += 1;
|
|
|
|
if (i >= args.length) {
|
2020-04-30 13:37:00 +00:00
|
|
|
console.log("Missing argument after `" + args[i - 1] + "` option.");
|
2020-04-04 16:35:20 +00:00
|
|
|
return null;
|
|
|
|
}
|
2021-11-05 14:58:14 +00:00
|
|
|
if (args[i - 1] !== "--test-file") {
|
|
|
|
opts[correspondences[args[i - 1]]] = args[i];
|
|
|
|
} else {
|
|
|
|
opts[correspondences[args[i - 1]]].push(args[i]);
|
|
|
|
}
|
2020-04-04 16:35:20 +00:00
|
|
|
} else if (args[i] === "--help") {
|
|
|
|
showHelp();
|
|
|
|
process.exit(0);
|
|
|
|
} else {
|
2020-04-30 13:37:00 +00:00
|
|
|
console.log("Unknown option `" + args[i] + "`.");
|
|
|
|
console.log("Use `--help` to see the list of options");
|
2020-04-04 16:35:20 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (opts["doc_folder"].length < 1) {
|
2020-04-30 13:37:00 +00:00
|
|
|
console.log("Missing `--doc-folder` option.");
|
2020-04-11 15:42:47 +00:00
|
|
|
} else if (opts["crate_name"].length < 1) {
|
2020-04-30 13:37:00 +00:00
|
|
|
console.log("Missing `--crate-name` option.");
|
2020-04-04 16:35:20 +00:00
|
|
|
} else if (opts["test_folder"].length < 1 && opts["test_file"].length < 1) {
|
2020-04-30 13:37:00 +00:00
|
|
|
console.log("At least one of `--test-folder` or `--test-file` option is required.");
|
2020-04-11 15:42:47 +00:00
|
|
|
} else {
|
|
|
|
return opts;
|
2020-04-04 16:35:20 +00:00
|
|
|
}
|
2020-04-11 15:42:47 +00:00
|
|
|
return null;
|
2020-04-04 16:35:20 +00:00
|
|
|
}
|
|
|
|
|
2020-04-11 15:42:47 +00:00
|
|
|
function checkFile(test_file, opts, loaded, index) {
|
2020-04-04 16:35:20 +00:00
|
|
|
const test_name = path.basename(test_file, ".js");
|
|
|
|
|
|
|
|
process.stdout.write('Checking "' + test_name + '" ... ');
|
|
|
|
return runChecks(test_file, loaded, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
function main(argv) {
|
|
|
|
var opts = parseOptions(argv.slice(2));
|
|
|
|
if (opts === null) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2020-04-11 15:42:47 +00:00
|
|
|
var [loaded, index] = load_files(
|
|
|
|
opts["doc_folder"],
|
|
|
|
opts["resource_suffix"],
|
|
|
|
opts["crate_name"]);
|
2020-04-04 16:35:20 +00:00
|
|
|
var errors = 0;
|
|
|
|
|
|
|
|
if (opts["test_file"].length !== 0) {
|
2021-11-05 14:58:14 +00:00
|
|
|
opts["test_file"].forEach(function(file) {
|
|
|
|
errors += checkFile(file, opts, loaded, index);
|
|
|
|
});
|
|
|
|
} else if (opts["test_folder"].length !== 0) {
|
2020-04-04 16:35:20 +00:00
|
|
|
fs.readdirSync(opts["test_folder"]).forEach(function(file) {
|
|
|
|
if (!file.endsWith(".js")) {
|
|
|
|
return;
|
|
|
|
}
|
2020-04-11 15:42:47 +00:00
|
|
|
errors += checkFile(path.join(opts["test_folder"], file), opts, loaded, index);
|
2020-04-04 16:35:20 +00:00
|
|
|
});
|
2019-02-24 00:04:07 +00:00
|
|
|
}
|
2020-03-16 20:50:04 +00:00
|
|
|
return errors > 0 ? 1 : 0;
|
2017-12-12 22:53:24 +00:00
|
|
|
}
|
|
|
|
|
2018-01-07 15:20:25 +00:00
|
|
|
process.exit(main(process.argv));
|