forked from jackcoded/newman-reporter-slackmsg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
slackUtils.js
255 lines (242 loc) · 7.62 KB
/
slackUtils.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
const prettyms = require('pretty-ms');
const axios = require('axios').default;
var jsonminify = require("jsonminify");
let messageSize;
// creates message for slack
function slackMessage(stats, timings, failures, executions, maxMessageSize, collection, environment, channel, reportingUrl) {
messageSize = maxMessageSize;
let parsedFailures = parseFailures(failures);
let skipCount = getSkipCount(executions);
let failureMessage = `
"attachments": [
{
"mrkdwn_in": ["text"],
"color": "#FF0000",
"author_name": "Newman Tests",
"title": ":fire: Failures :fire:",
"fields": [
${failMessage(parsedFailures)}
],
"footer": "Newman Test",
"footer_icon": "https://platform.slack-edge.com/img/default_application_icon.png"
}
]`
let successMessage = `
"attachments": [
{
"mrkdwn_in": ["text"],
"color": "#008000",
"author_name": "Newman Tests",
"title": ":white_check_mark: All Passed :white_check_mark:",
"footer": "Newman Test",
"footer_icon": "https://platform.slack-edge.com/img/default_application_icon.png"
}
]`
return jsonminify(`
{
"channel": "${channel}",
"blocks": [
{
"type": "divider"
},
${collectionAndEnvironentFileBlock(collection, environment)}
${reportingUrlSection(reportingUrl)}
{
"type": "divider"
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "*Test Summary*"
}
},
{
"type": "section",
"fields": [
{
"type": "mrkdwn",
"text": "Total Tests:"
},
{
"type": "mrkdwn",
"text": "${stats.requests.total}"
},
{
"type": "mrkdwn",
"text": "Test Passed:"
},
{
"type": "mrkdwn",
"text": "${stats.requests.total - parsedFailures.length - skipCount}"
},
{
"type": "mrkdwn",
"text": "Test Failed:"
},
{
"type": "mrkdwn",
"text": "${parsedFailures.length}"
},
{
"type": "mrkdwn",
"text": "Test Skipped:"
},
{
"type": "mrkdwn",
"text": "${skipCount}"
},
{
"type": "mrkdwn",
"text": "Test Duration:"
},
{
"type": "mrkdwn",
"text": "${prettyms(timings.completed - timings.started)}"
}
]
},
{
"type": "section",
"fields": [
{
"type": "mrkdwn",
"text": "Assertions:"
},
{
"type": "mrkdwn",
"text": "Total: ${stats.assertions.total} Failed: ${stats.assertions.failed}"
}
]
},
{
"type": "divider"
}
],
${failures.length > 0 ? failureMessage : successMessage}
}`);
}
function collectionAndEnvironentFileBlock(collection, environment) {
if (collection) {
return `{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "Collection: ${collection} \\n Environment: ${environment ? environment : ''}"
}
}, `
}
return '';
}
function reportingUrlSection(reportingUrl) {
if (reportingUrl) {
return `{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "Reporting URL: ${reportingUrl}"
}
}, `
}
return '';
}
function getSkipCount(executions) {
return executions.reduce((acc, execution) => {
if (execution.assertions) {
if (execution.assertions[0].skipped) {
acc = acc + 1;
}
}
return acc;
}, 0);
}
// Takes fail report and parse it for further processing
function parseFailures(failures) {
return failures.reduce((acc, failure, index) => {
if (index === 0) {
acc.push({
name: failure.source.name || 'No Name',
tests: [{
name: failure.error.name || 'No test name',
test: failure.error.test || 'connection error',
message: failure.error.message || 'No Error Message'
}]
});
} else if (acc[acc.length - 1].name !== failure.source.name) {
acc.push({
name: failure.source.name || 'No Name',
tests: [{
name: failure.error.name || 'No test name',
test: failure.error.test || 'connection error',
message: failure.error.message || 'No Error Message'
}]
});
} else {
acc[acc.length - 1].tests.push({
name: failure.error.name || 'No test name',
test: failure.error.test || 'connection error',
message: failure.error.message || 'No Error Message'
})
}
return acc;
}, []);
}
// Takes parsedFailures and create failMessages
function failMessage(parsedFailures) {
return parsedFailures.map((failure) => {
return `
{
"title": "${cleanErrorMessage(failure.name)}",
"short": false
},
${failErrors(failure.tests)}`;
}).join();
}
// Takes failMessages and create Error messages for each failures
function failErrors(parsedErrors) {
return parsedErrors.map((error, index) => {
return `
{
"value": "*\`${index + 1}. ${cleanErrorMessage(error.name)} - ${cleanErrorMessage(error.test)}\`*",
"short": false
},
{
"value": "• ${cleanErrorMessage(error.message, messageSize)}",
"short": false
}`;
}).join();
}
function cleanErrorMessage(message, maxMessageSize) {
// replaces the quotes and double quotes in order for the message to be valid json format
// as well as cutting messages to size 100 and truncating it with ...
let filteredMessage = message.replace(/["']/g, "")
filteredMessage = filteredMessage.replace('expected', 'Expected -')
if (filteredMessage.length > maxMessageSize) {
return `${filteredMessage.substring(0, maxMessageSize)}...`;
}
return filteredMessage;
}
// sends the message to slack via POST to webhook url
async function send(url, message, token) {
const payload = {
method: 'POST',
url,
headers: {
'content-type': 'application/json',
'Authorization': 'Bearer ' + token
},
data: message
};
let result;
try {
result = await axios(payload);
} catch (e) {
result = false;
console.error(`Error in sending message to slack ${e}`);
}
return result;
}
exports.slackUtils = {
send,
slackMessage
};