aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorVendicated <vendicated@riseup.net>2022-11-11 13:27:44 +0100
committerVendicated <vendicated@riseup.net>2022-11-11 13:27:44 +0100
commit409e54a9d8ecf2b6f675077c22c70025c79fdcaf (patch)
tree4d0b6e7a428e8f7d1145f8cbef349cbd8ad59784 /test
parent31fb19b8c9e883e348bcafae0a587d20b5107ac9 (diff)
downloadVencord-409e54a9d8ecf2b6f675077c22c70025c79fdcaf.tar.gz
Vencord-409e54a9d8ecf2b6f675077c22c70025c79fdcaf.tar.bz2
Vencord-409e54a9d8ecf2b6f675077c22c70025c79fdcaf.zip
ci(reporter): Post results to discord webhook
Diffstat (limited to 'test')
-rw-r--r--test/generateReport.ts54
1 files changed, 52 insertions, 2 deletions
diff --git a/test/generateReport.ts b/test/generateReport.ts
index c6c4991..8bc444f 100644
--- a/test/generateReport.ts
+++ b/test/generateReport.ts
@@ -64,7 +64,7 @@ function toCodeBlock(s: string) {
return "```" + s + " ```";
}
-function printReport() {
+async function printReport() {
console.log("# Vencord Report");
console.log();
@@ -88,6 +88,56 @@ function printReport() {
report.otherErrors.forEach(e => {
console.log(`- ${toCodeBlock(e)}`);
});
+
+ if (process.env.DISCORD_WEBHOOK) {
+ // this code was written almost entirely by Copilot xD
+ await fetch(process.env.DISCORD_WEBHOOK, {
+ method: "POST",
+ headers: {
+ "Content-Type": "application/json"
+ },
+ body: JSON.stringify({
+ description: "Here's the latest Vencord Report!",
+ username: "Vencord Reporter",
+ avatar_url: "https://cdn.discordapp.com/icons/1015060230222131221/f0204a918c6c9c9a43195997e97d8adf.webp",
+ embeds: [
+ {
+ title: "Bad Patches",
+ description: report.badPatches.map(p => {
+ const lines = [
+ `**__${p.plugin} (${p.type}):__**`,
+ `ID: \`${p.id}\``,
+ `Match: ${toCodeBlock(p.match)}`
+ ];
+ if (p.error) lines.push(`Error: ${toCodeBlock(p.error)}`);
+ return lines.join("\n");
+ }).join("\n\n") || "None",
+ color: report.badPatches.length ? 0xff0000 : 0x00ff00
+ },
+ {
+ title: "Bad Starts",
+ description: report.badStarts.map(p => {
+ const lines = [
+ `**__${p.plugin}:__**`,
+ toCodeBlock(p.error)
+ ];
+ return lines.join("\n");
+ }
+ ).join("\n\n") || "None",
+ color: report.badStarts.length ? 0xff0000 : 0x00ff00
+ },
+ {
+ title: "Discord Errors",
+ description: toCodeBlock(report.otherErrors.join("\n")),
+ color: report.otherErrors.length ? 0xff0000 : 0x00ff00
+ }
+ ]
+ })
+ }).then(res => {
+ if (!res.ok) console.error(`Webhook failed with status ${res.status}`);
+ else console.error("Posted to Discord Webhook successfully");
+ });
+ }
}
page.on("console", async e => {
@@ -97,7 +147,7 @@ page.on("console", async e => {
const firstArg = (await args[0]?.jsonValue());
if (firstArg === "PUPPETEER_TEST_DONE_SIGNAL") {
await browser.close();
- printReport();
+ await printReport();
process.exit();
}