Files
fusion/packages/dashboard/src/__tests__/server-static-assets.test.ts
gsxdsm bdcb048e20 chore: consolidate test files into __tests__/ dirs and clean stray engine artifacts
- Move all co-located *.test.* files into sibling __tests__/ directories so the
  layout is consistent across packages (159 renames + content-rewrite moves).
  Updates relative imports, vi.mock specifiers, and __dirname/import.meta.url
  path resolutions where tests read fixtures from disk.
- Drop tracked tsc-emit alongside engine .ts sources (auth-storage/logger/
  skill-resolver/context-limit-detector/pi.{js,d.ts,*.map}). These were
  accidentally committed in a merge and the stale pi.js was masking a real
  test-mock vs source mismatch (tests imported "../pi.js" and vite preferred
  the stale build over pi.ts).
- Add packages/engine/.gitignore to block future src/*.{js,d.ts,map}.
- Refactor plugin pi-module seams (openclaw/paperclip/hermes) to ESM-import
  createFnAgent / promptWithFallback / describeModel from @fusion/engine
  instead of require()-ing packages/engine/src/pi.js. Adds @fusion/engine to
  the two plugin package.jsons that were missing it; exports describeModel
  from the engine public API.
- Fix engine test mocks now that they run against current pi.ts: add
  ModelRegistry.create static to mocks in pi.test.ts and pi-create-fn-agent
  .test.ts; switch three boundary-result toEqual assertions to toMatchObject
  so the new content/isError fields don't trip exact-match comparison.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-24 19:39:20 -07:00

35 lines
1.2 KiB
TypeScript

import express from "express";
import { describe, expect, it } from "vitest";
import { createLoopbackIntegrationTest } from "./loopback-integration-test.js";
const staticAssetIntegrationTest = await createLoopbackIntegrationTest("server-static-assets integration");
describe("static asset serving", () => {
staticAssetIntegrationTest("returns 404 for missing asset paths instead of falling back to index.html", async () => {
const app = express();
app.use(express.static("packages/dashboard/dist/client", { index: false }));
app.get(/^(?!\/assets\/).*/, (_req, res) => {
res.sendFile("index.html", { root: "packages/dashboard/dist/client" });
});
const server = await new Promise<import("node:http").Server>((resolve) => {
const s = app.listen(0, "127.0.0.1", () => resolve(s));
});
try {
const address = server.address();
if (!address || typeof address === "string") throw new Error("Failed to get test server port");
const res = await fetch(`http://127.0.0.1:${address.port}/assets/does-not-exist.js`);
expect(res.status).toBe(404);
} finally {
await new Promise<void>((resolve, reject) => {
server.close((err) => (err ? reject(err) : resolve()));
});
}
});
});