-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrunChecks.js
259 lines (231 loc) · 7.49 KB
/
runChecks.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
module.exports = {
runChecks: async function (Plugins) {
// Node modules
const Path = require('path')
// External modules
const Hoek = require('@hapi/hoek')
const Marked = require('marked')
// Internal modules
const { checkList } = require('../checks/checks')
const { gatherData } = require('./gatherData')
const defineChecks = checkOperations()
console.log('\nChecks function initiated.\n')
let allResults = {}
for (let i = 0; i < Plugins.length; i++) {
let item = Plugins[i]
let results = {}
let plugin = await gatherData(item, checkList)
console.log(
'[',
i + 1,
' of ',
Plugins.length,
']',
plugin.data.full_name
)
for (checkName in plugin.checks) {
let checkDetails = plugin.checks[checkName]
checkDetails.name = checkName
let checkKind = defineChecks[checkDetails.kind]
if (null == checkKind) {
console.info(
'WARNING',
'Check does not exist',
checkName,
checkDetails.kind
)
continue
}
let res = await checkKind(checkDetails, plugin.data)
results[checkName] = res
}
allResults[item.full_name] = {
data: plugin.data,
checks: results,
}
}
console.log('Checks complete.')
return allResults
function checkOperations() {
return {
file_exist: async function (checkDetails, pluginData) {
let file = checkDetails.file
let pass = Object.keys(pluginData).includes(file)
let why = 'file_not_found'
if (pass) {
why = 'file_found'
}
return {
check: checkDetails.name,
kind: checkDetails.kind,
file: file,
pass: pass,
why: why,
}
},
fileX_exist_if_contain_json: async function (checkDetails, pluginData) {
let file = checkDetails.file
let fileX = checkDetails.fileX
let pass = Object.keys(pluginData).includes(file)
let why = 'json_file_not_found'
let searchContent = checkDetails.contains
let searchIsNot = checkDetails.contains_is_not
let containsType = checkDetails.contains_type
let config = checkDetails.config
let searchIs = ''
if (pass) {
let fileContent = pluginData[file]
if ('key' == containsType) {
searchIs = Hoek.reach(fileContent, searchContent)
pass = null != searchIs && searchIsNot != searchIs
} else {
pass = false
}
if (pass) {
switch (config) {
case 'js':
fileX = searchIs
pass = Object.keys(pluginData).includes(fileX)
break
case 'ts':
fileX = Path.basename(searchIs, '.js') + '.ts'
pass = Object.keys(pluginData).includes(fileX)
break
}
if (pass) {
why = 'fileX_found'
} else {
why = 'fileX_not_found'
}
} else {
why = 'illegal_value'
}
}
return {
check: checkDetails.name,
kind: checkDetails.kind,
file: file,
pass: pass,
why: why,
}
},
content_contain_string: async function (checkDetails, pluginData) {
let file = checkDetails.file
let pass = Object.keys(pluginData).includes(file)
let searchContent = checkDetails.contains
let why = 'file_not_found'
if (pass) {
let fileContent = pluginData[file]
for (let i = 0; i < searchContent.length; i++) {
pass = fileContent.includes(searchContent[i])
}
if (pass) {
why = 'content_found'
} else {
why = 'content_not_found'
}
}
return {
check: checkDetails.name,
kind: checkDetails.kind,
file: file,
pass: pass,
why: why,
}
},
content_contain_markdown: async function (checkDetails, pluginData) {
let file = checkDetails.file
let pass = Object.keys(pluginData).includes(file)
let why = 'file_not_found'
// Currently check def is quite specific to readme_headings check
if (pass) {
why = 'file_found'
let searchArray = checkDetails.contains
// Reassignement of #1 heading text
searchArray[0].text = pluginData.package_name
let fileContent = pluginData[file]
// Creating AST from file
let lexer = new Marked.Lexer()
let tokens = lexer.lex(fileContent)
let headings = tokens.filter(
(token) =>
'heading' == token.type &&
(1 == token.depth || 2 == token.depth)
)
if (headings.length == searchArray.length) {
for (let i = 0; i < searchArray.length; i++) {
pass =
headings[i].depth == searchArray[i].depth &&
headings[i].text == searchArray[i].text
if (!pass) {
let nb = i + 1
why = 'heading_"' + searchArray[i].text + '"_not_found'
break
}
}
} else {
pass = false
why = 'nb_headings_incorrect'
}
}
return {
check: checkDetails.name,
kind: checkDetails.kind,
file: file,
pass: pass,
why: why,
}
},
content_contain_json: async function (checkDetails, pluginData) {
let file = checkDetails.file
let pass = Object.keys(pluginData).includes(file)
let searchContent = checkDetails.contains
let contentType = checkDetails.contains_type
let why = 'file_not_found'
if (pass) {
let fileContent = pluginData[file]
if ('key' == contentType) {
let chain = []
for (let i = 0; i < searchContent.length; i++) {
chain.push(searchContent[i])
}
pass = null != Hoek.reach(fileContent, chain)
} else {
// extensibility goes here - searching for value and not key
console.log('Content type not recognised. ', checkDetails.name)
pass = false
}
if (pass) {
why = 'content_found'
} else {
why = 'content_not_found'
}
}
return {
check: checkDetails.name,
kind: checkDetails.kind,
file: file,
pass: pass,
why: why,
}
},
check_branch: async function (checkDetails, pluginData) {
let branch = checkDetails.branch
let pass = branch == pluginData.default_branch
let why = 'branch_incorrect'
let file = 'N/A'
if (pass) {
why = 'branch_correct'
}
return {
check: checkDetails.name,
kind: checkDetails.kind,
file: file,
pass: pass,
why: why,
}
},
}
}
},
}