feat: 修改打印逻辑 & 请求等待结果
All checks were successful
CI Monitor MIflow / build-image (push) Successful in 47s

This commit is contained in:
zhaoyingbo 2024-08-09 03:40:37 +00:00
parent f5ee6f8555
commit 3471576ed7
7 changed files with 120 additions and 9 deletions

View File

@ -282,19 +282,19 @@ const manageRawEvent = async (
const action = await getNextAction(pipeline, stage)
// 发送通知
if (action === NEXT_ACTION.NOTIFY) {
sendNotify(pipeline, apiKey)
await sendNotify(pipeline, apiKey)
}
// 添加监控
if (action === NEXT_ACTION.ADD_MONITOR) {
addMonitor(pipeline, apiKey, stage!)
await addMonitor(pipeline, apiKey, stage!)
}
// 删除监控
if (action === NEXT_ACTION.REMOVE_MONITOR) {
removeMonitor(pipeline, apiKey, stage!)
await removeMonitor(pipeline, apiKey, stage!)
}
// 删除监控并发送通知
if (action === NEXT_ACTION.NOTIFY_AND_REMOVE_MONITOR) {
removeMonitorAndNotify(pipeline, apiKey, stage!)
await removeMonitorAndNotify(pipeline, apiKey, stage!)
}
// 返回成功
return netTool.ok()

View File

@ -12,10 +12,10 @@ const PREFIX = "/gitlab_monitor"
const server = Bun.serve({
async fetch(req) {
try {
// 打印当前路由
console.log("🚀 ~ serve ~ req.url", req.url)
// 路由处理
const { exactCheck } = makeCheckPathTool(req.url, PREFIX)
const { exactCheck, fullCheck } = makeCheckPathTool(req.url, PREFIX)
// 非根路由打印
if (!fullCheck("/")) console.log("🚀 ~ serve ~ req.url", req.url)
// CI 监控
if (exactCheck("/ci")) return manageCIMonitorReq(req)
// Gitlab 事件

View File

@ -6,10 +6,10 @@ import netTool from "../../service/netTool"
* @param {Request} req -
* @returns {Response} -
*/
export const manageCIMonitorReq = (req: Request): Response => {
export const manageCIMonitorReq = async (req: Request): Promise<Response> => {
const url = new URL(req.url)
const chat_id = url.searchParams.get("chat_id")
if (!chat_id) return netTool.badRequest("chat_id is required!")
manageRobot.sendCIReportByChatId(chat_id)
await manageRobot.sendCIReportByChatId(chat_id)
return netTool.ok("reporting...")
}

29
test/checkpath.test.ts Normal file
View File

@ -0,0 +1,29 @@
import { expect, test } from "bun:test"
import { makeCheckPathTool } from "../utils/pathTools"
test("makeCheckPathTool exactCheck", () => {
const tool = makeCheckPathTool("https://example.com/base")
expect(tool.exactCheck("/base")).toBe(true)
expect(tool.exactCheck("/base/extra")).toBe(false)
})
test("makeCheckPathTool startsWithCheck", () => {
const tool = makeCheckPathTool("https://example.com/base")
expect(tool.startsWithCheck("/base")).toBe(true)
expect(tool.startsWithCheck("/base/extra")).toBe(false)
expect(tool.startsWithCheck("/other")).toBe(false)
})
test("makeCheckPathTool fullCheck", () => {
const tool = makeCheckPathTool("https://example.com/")
expect(tool.fullCheck("/")).toBe(true)
expect(tool.fullCheck("/base")).toBe(false)
})
test("makeCheckPathTool with prefix", () => {
const tool = makeCheckPathTool("https://example.com/prefix/base", "/prefix")
expect(tool.exactCheck("/base")).toBe(true)
expect(tool.startsWithCheck("/base")).toBe(true)
expect(tool.fullCheck("/prefix")).toBe(false)
})

View File

@ -0,0 +1,12 @@
import { expect, test } from "bun:test"
import { manageCIMonitorReq } from "../routes/ci"
import netTool from "../service/netTool"
test("manageCIMonitorReq", async () => {
const req = new Request(
"https://ci-monitor.xiaomiwh.cn/gitlab/ci?chat_id=oc_8c789ce8f4ecc6695bb63ca6ec4c61ea"
)
const res = await manageCIMonitorReq(req)
expect(res).toEqual(netTool.ok("reporting..."))
})

View File

@ -0,0 +1,64 @@
import { expect, test } from "bun:test"
import { manageGitlabEventReq } from "../routes/event"
import netTool from "../service/netTool"
import { Gitlab } from "../types/gitlab"
test("manageGitlabEventReq", async () => {
const headers = new Headers({
"x-gitlab-token": "uwnpzb9hvoft28h",
"x-gitlab-event": "Pipeline Hook",
})
const body: Gitlab.PipelineEvent = {
object_attributes: {
id: 12345,
ref: "main",
sha: "abc123def456",
status: "success",
created_at: "2023-10-01T12:00:00Z",
finished_at: "2023-10-01T12:05:00Z",
duration: 300,
},
user: {
name: "John Doe",
username: "zhaoyingbo",
},
project: {
id: 67890,
web_url: "https://gitlab.example.com/johndoe/project",
path_with_namespace: "johndoe/project",
},
commit: {
id: "abc123def456",
title: "Fix bug in pipeline",
url: "https://gitlab.example.com/johndoe/project/commit/abc123def456",
},
builds: [
{
id: 111,
stage: "build",
status: "success",
finished_at: "2023-10-01T12:02:00Z",
},
{
id: 112,
stage: "test",
status: "success",
finished_at: "2023-10-01T12:04:00Z",
},
],
}
const req = new Request(
"https://lark-egg.ai.xiaomi.com/gitlab_monitor/event",
{
method: "POST",
headers: headers,
body: JSON.stringify(body),
}
)
const res = await manageGitlabEventReq(req)
expect(res).toEqual(netTool.ok())
})

View File

@ -22,5 +22,11 @@ export const makeCheckPathTool = (url: string, prefix?: string) => {
* @returns {boolean} URL true false
*/
startsWithCheck: (path: string) => pathname.startsWith(makePath(path)),
/**
* URL
* @param {string} path -
* @returns {boolean} URL true false
*/
fullCheck: (path: string) => pathname === path,
}
}