feat: 修复路径匹配失败
All checks were successful
CI Monitor MIflow / build-image (push) Successful in 44s

This commit is contained in:
zhaoyingbo 2024-08-09 02:02:05 +00:00
parent 50121dc073
commit 713b67a52c
5 changed files with 101 additions and 2 deletions

View File

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

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,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)),
/**
*
* @param {string} path -
* @returns {boolean} URL true false
*/
fullCheck: (path: string) => pathname === path,
}
}