-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreport.js
134 lines (122 loc) · 4.6 KB
/
report.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
const core = require('@actions/core')
const table = require('markdown-table')
const replaceComment = require('@aki77/actions-replace-comment')
const github = require('@actions/github')
const fs = require('fs')
const csv = require('csv-parser')
const report = async(files, threshold) => {
const moduleCoverage = await filterReport(files)
const overAllCoverage = await overallCoverage(moduleCoverage)
const pullRequestId = github.context.issue.number
if (pullRequestId) {
await markdownTable(pullRequestId, moduleCoverage, overAllCoverage, threshold)
}
await checkCoverageThreshold(overAllCoverage, threshold)
}
const checkCoverageThreshold = async(overAllCoverage, threshold) => {
const percentage = parseFloat(overAllCoverage['line_percent'])
threshold = parseFloat(threshold)
if (percentage < threshold) {
core.setFailed(`Coverage of ${percentage} is below passing threshold of ${threshold}`)
return false
}
core.info(`Coverage is above passing threshod - ${percentage}`)
return true
}
const markdownTable = async(prNumber, moduleCoverage, overAllCoverage, threshold) => {
const header = [
'Category',
'Percentage',
'Covered / Total'
]
const percentage = parseFloat(overAllCoverage['line_percent']).toFixed(2)
const metrics = [
'**Total**',
`**${percentage}**`,
`**${overAllCoverage['line_covered']} / ${overAllCoverage['line_total']}**`
]
const coverageList = moduleCoverage.map((module) => {
return [
module['component'],
parseFloat(module['line_percent']).toFixed(3),
`${module['line_covered']} / ${module['line_total']}`
]
})
const tableText = table([header, ...coverageList, metrics])
const headerText = "## Jacoco Coverage :rocket:"
let failedText = null
if (percentage < threshold) {
failedText = `:x: Coverage of ${percentage} is below passing threshold of ${threshold}`
}
const bodyText = [headerText, failedText, tableText].filter(Boolean).join("\n");
await replaceComment.default({
token: core.getInput('token', { required: true }),
owner: github.context.repo.owner,
repo: github.context.repo.repo,
issue_number: prNumber,
body: bodyText
})
}
const overallCoverage = async(result) => {
const report = {
'report': 'Total', 'line_percent': 0.0,
'line_total': 0, 'line_covered': 0, 'line_missed': 0
}
result.forEach(row => {
report['line_total'] += row['line_total']
report['line_covered'] += row['line_covered']
report['line_missed'] += row['line_missed']
})
report['line_percent'] =
parseFloat(report['line_covered']) / parseFloat(report['line_total']) * 100.0
return report
}
const filterReport = async(files) => {
const output = []
await Promise.all(files.map(async (file) => {
await parseFile(file).then(result => {
Object.entries(result).forEach(([key, value]) => {
let line_covered = value['line_covered']
let line_missed = value['line_missed']
let line_total = line_covered + line_missed
let line_percent = parseFloat(line_covered) / parseFloat(line_total) * 100.0
output.push({
'component': key,
'line_percent': line_percent,
'line_total': line_total,
...value
})
})
}).catch(error => {
core.setFailed(error.message)
})
}))
return output
}
const parseFile = async(file) => {
let data = {}
let results = []
const promise = new Promise((resolve, reject) => {
fs.createReadStream(file)
.pipe(csv())
.on('data', async(rows) => results.push(rows))
.on('error', () => reject())
.on('end', async() => {
results.forEach( (row, index) => {
let group = row.GROUP
if (group.indexOf('/') != -1) {
let groups = group.split('/')
group = groups.pop()
}
if (data[group] == undefined) {
data[group] = {'line_covered': 0, 'line_missed': 0}
}
data[group]['line_covered'] += parseInt(row.LINE_COVERED)
data[group]['line_missed'] += parseInt(row.LINE_MISSED)
})
resolve(data)
})
})
return await promise
}
module.exports = report