1
0
Fork 0
mirror of synced 2024-07-06 15:00:49 +12:00
budibase/qa-core/scripts/testResultsWebhook.js

131 lines
3.3 KiB
JavaScript
Raw Normal View History

2022-05-19 06:55:41 +12:00
#!/usr/bin/env node
const fetch = require("node-fetch")
const path = require("path")
const fs = require("fs")
2022-05-19 06:55:41 +12:00
2023-02-16 12:43:53 +13:00
const WEBHOOK_URL = process.env.WEBHOOK_URL
2022-05-19 06:55:41 +12:00
const GIT_SHA = process.env.GITHUB_SHA
const GITHUB_ACTIONS_RUN_URL = process.env.GITHUB_ACTIONS_RUN_URL
2022-05-20 12:04:52 +12:00
async function generateReport() {
// read the report file
const REPORT_PATH = path.resolve(__dirname, "..", "testResults.json")
const report = fs.readFileSync(REPORT_PATH, "utf-8")
return JSON.parse(report)
2022-05-20 12:04:52 +12:00
}
2022-05-19 06:55:41 +12:00
const env = process.argv.slice(2)[0]
if (!env) {
throw new Error("environment argument is required")
}
async function discordResultsNotification(report) {
2022-05-20 12:04:52 +12:00
const {
numTotalTestSuites,
numTotalTests,
numPassedTests,
numPendingTests,
numFailedTests,
success,
startTime,
endTime,
} = report
2022-05-19 06:55:41 +12:00
const OUTCOME = success ? "success" : "failure"
2022-08-23 00:15:03 +12:00
2022-05-19 06:55:41 +12:00
const options = {
method: "POST",
headers: {
"Content-Type": "application/json",
Accept: "application/json",
},
body: JSON.stringify({
content: `**Tests Status**: ${OUTCOME}`,
2022-05-19 06:55:41 +12:00
embeds: [
{
title: `Budi QA Bot - ${env}`,
description: `API Integration Tests`,
2022-05-19 06:55:41 +12:00
url: GITHUB_ACTIONS_RUN_URL,
color: OUTCOME === "success" ? 3066993 : 15548997,
timestamp: new Date(),
footer: {
icon_url: "http://bbui.budibase.com/budibase-logo.png",
text: "Budibase QA Bot",
},
thumbnail: {
url: "http://bbui.budibase.com/budibase-logo.png",
},
author: {
name: "Budibase QA Bot",
url: "https://discordapp.com",
icon_url: "http://bbui.budibase.com/budibase-logo.png",
},
fields: [
{
name: "Commit",
value: `https://github.com/Budibase/budibase/commit/${GIT_SHA}`,
2022-05-19 06:55:41 +12:00
},
{
name: "Github Actions Run URL",
value: GITHUB_ACTIONS_RUN_URL || "None Supplied",
2022-05-19 06:55:41 +12:00
},
{
name: "Test Suites",
value: numTotalTestSuites,
2022-05-19 06:55:41 +12:00
},
{
name: "Tests",
value: numTotalTests,
2022-05-19 06:55:41 +12:00
},
{
name: "Passed",
value: numPassedTests,
2022-05-19 06:55:41 +12:00
},
{
name: "Pending",
value: numPendingTests,
2022-05-19 06:55:41 +12:00
},
{
name: "Failures",
value: numFailedTests,
2022-05-19 06:55:41 +12:00
},
{
name: "Duration",
value: endTime
? `${(endTime - startTime) / 1000} Seconds`
: "DNF",
2022-05-19 06:55:41 +12:00
},
{
name: "Pass Percentage",
value: Math.floor((numPassedTests / numTotalTests) * 100),
2022-05-19 06:55:41 +12:00
},
],
},
],
}),
}
// Only post in discord when tests fail
if (success) {
return
}
2022-05-19 06:55:41 +12:00
const response = await fetch(WEBHOOK_URL, options)
2022-08-22 23:34:40 +12:00
if (response.status >= 201) {
2022-05-19 06:55:41 +12:00
const text = await response.text()
console.error(
`Error sending discord webhook. \nStatus: ${response.status}. \nResponse Body: ${text}. \nRequest Body: ${options.body}`
)
}
}
async function run() {
2022-08-23 00:15:03 +12:00
const report = await generateReport()
await discordResultsNotification(report)
2022-05-19 06:55:41 +12:00
}
run()