131 lines
3.9 KiB
TypeScript
131 lines
3.9 KiB
TypeScript
import { access } from "node:fs/promises";
|
|
import { fileURLToPath } from "node:url";
|
|
import type { DemoResponse, HealthResponse } from "../src/shared/api";
|
|
|
|
const executablePath = process.argv[2] ?? fileURLToPath(new URL("../dist/gateway-checker", import.meta.url));
|
|
|
|
await assertExecutableExists(executablePath);
|
|
|
|
const port = await getFreePort();
|
|
const baseUrl = `http://127.0.0.1:${port}`;
|
|
const app = Bun.spawn([executablePath, "--host", "127.0.0.1", "--port", String(port)], {
|
|
stdout: "pipe",
|
|
stderr: "pipe",
|
|
env: {
|
|
...process.env,
|
|
HOST: "127.0.0.1",
|
|
PORT: String(port),
|
|
},
|
|
});
|
|
const stdout = readStream(app.stdout);
|
|
const stderr = readStream(app.stderr);
|
|
|
|
try {
|
|
await waitForServer(`${baseUrl}/health`);
|
|
|
|
const health = await expectJson<HealthResponse>(`${baseUrl}/health`, 200);
|
|
assert(health.ok === true, "健康检查响应缺少 ok=true");
|
|
|
|
const demo = await expectJson<DemoResponse>(`${baseUrl}/api/demo`, 200);
|
|
assert(demo.message.includes("/api/demo"), "demo 响应未包含预期 message");
|
|
|
|
const missingApi = await fetch(`${baseUrl}/api/not-found`);
|
|
assert(missingApi.status === 404, "未知 API 应返回 404");
|
|
assert(
|
|
missingApi.headers.get("content-type")?.includes("application/json") === true,
|
|
"未知 API 应返回 JSON",
|
|
);
|
|
|
|
const rootHtml = await expectText(`${baseUrl}/`, 200);
|
|
assert(rootHtml.includes("Gateway Checker Demo"), "前端根页面缺少 demo 标题");
|
|
|
|
const fallbackHtml = await expectText(`${baseUrl}/dashboard`, 200);
|
|
assert(fallbackHtml.includes("Gateway Checker Demo"), "SPA fallback 未返回前端入口页面");
|
|
|
|
const assetPath = rootHtml.match(/(?:src|href)="(\/assets\/[^"]+)"/)?.[1];
|
|
assert(assetPath !== undefined, "前端入口页面未引用 /assets/* 资源");
|
|
|
|
const asset = await fetch(`${baseUrl}${assetPath}`);
|
|
assert(asset.status === 200, `静态资源 ${assetPath} 未返回 200`);
|
|
|
|
console.log(`Smoke test passed: ${baseUrl}`);
|
|
} catch (error) {
|
|
app.kill();
|
|
const [out, err] = await Promise.all([stdout, stderr]);
|
|
const message = error instanceof Error ? error.message : String(error);
|
|
|
|
throw new Error(`executable smoke test 失败: ${message}\nstdout:\n${out}\nstderr:\n${err}`);
|
|
} finally {
|
|
app.kill();
|
|
}
|
|
|
|
async function assertExecutableExists(path: string) {
|
|
try {
|
|
await access(path);
|
|
} catch {
|
|
throw new Error(`找不到 executable: ${path},请先运行 bun run build`);
|
|
}
|
|
}
|
|
|
|
async function getFreePort(): Promise<number> {
|
|
const server = Bun.serve({
|
|
hostname: "127.0.0.1",
|
|
port: 0,
|
|
fetch: () => new Response("ok"),
|
|
});
|
|
const port = server.port;
|
|
|
|
server.stop(true);
|
|
|
|
if (port === undefined) {
|
|
throw new Error("无法分配 smoke test 端口");
|
|
}
|
|
|
|
return port;
|
|
}
|
|
|
|
async function waitForServer(url: string) {
|
|
const deadline = Date.now() + 8_000;
|
|
|
|
while (Date.now() < deadline) {
|
|
try {
|
|
const response = await fetch(url);
|
|
|
|
if (response.ok) return;
|
|
} catch {
|
|
await Bun.sleep(100);
|
|
}
|
|
}
|
|
|
|
throw new Error(`服务未在超时时间内启动: ${url}`);
|
|
}
|
|
|
|
async function expectJson<T>(url: string, status: number): Promise<T> {
|
|
const response = await fetch(url);
|
|
|
|
assert(response.status === status, `${url} 应返回 ${status},实际为 ${response.status}`);
|
|
assert(response.headers.get("content-type")?.includes("application/json") === true, `${url} 应返回 JSON`);
|
|
|
|
return (await response.json()) as T;
|
|
}
|
|
|
|
async function expectText(url: string, status: number): Promise<string> {
|
|
const response = await fetch(url);
|
|
|
|
assert(response.status === status, `${url} 应返回 ${status},实际为 ${response.status}`);
|
|
|
|
return response.text();
|
|
}
|
|
|
|
function assert(condition: boolean, message: string): asserts condition {
|
|
if (!condition) {
|
|
throw new Error(message);
|
|
}
|
|
}
|
|
|
|
async function readStream(stream: ReadableStream<Uint8Array> | null): Promise<string> {
|
|
if (!stream) return "";
|
|
|
|
return new Response(stream).text();
|
|
}
|