-
Notifications
You must be signed in to change notification settings - Fork 698
Expand file tree
/
Copy pathgenerateMissingTests.js
More file actions
72 lines (58 loc) · 1.93 KB
/
generateMissingTests.js
File metadata and controls
72 lines (58 loc) · 1.93 KB
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
const path = require("path");
const utils = require("./utils");
const testFilesPath = "../test/tests";
const missingFileIgnores = require("../input/ignored-missing-tests");
module.exports = function generateMissingTests() {
var output = {};
function findMissingTest(idef) {
return new Promise(function(resolve, reject) {
var testFilePath = path.join(testFilesPath, idef.filename + ".js");
var result = {};
var file = utils.readLocalFile(testFilePath);
if (file) {
var fieldsResult = [];
var functionsResult = [];
var fieldIgnores = (missingFileIgnores[idef.filename] || {}).fields;
var functionIgnores = (missingFileIgnores[idef.filename] || {}).functions;
fieldIgnores = fieldIgnores || [];
functionIgnores = functionIgnores || [];
file = file || "";
idef.fields.forEach(function(field) {
if (file.indexOf(field.jsFunctionName) < 0
&& fieldIgnores.indexOf(field.jsFunctionName < 0)) {
fieldsResult.push(field.jsFunctionName);
}
});
result.fields = fieldsResult;
idef.functions.forEach(function(fn) {
if (file.indexOf(fn.jsFunctionName) < 0
&& functionIgnores.indexOf(fn.jsFunctionName) < 0) {
functionsResult.push(fn.jsFunctionName);
}
});
result.functions = functionsResult;
}
else {
result.testFileMissing = false;
result.testFilePath = testFilePath;
}
output[idef.filename] = result;
resolve();
});
};
const idefs = require("../output/idefs");
var promises = idefs.map(function(idef) {
return findMissingTest(idef);
});
Promise.all(promises).then(
function() {
utils.writeLocalFile("/output/missing-tests.json", output);
},
function(fail) {
console.error(fail);
}
);
};
if (require.main === module) {
module.exports();
}