mirror of
https://github.com/nexu-io/open-design.git
synced 2026-06-01 03:14:35 +07:00
* Fix packaged deck navigation interactions * Fix connector auth in packaged app and localized content coverage * Fix Electron connector browser handoff contract
148 lines
5.1 KiB
TypeScript
148 lines
5.1 KiB
TypeScript
import { mkdtemp, rm, writeFile } from "node:fs/promises";
|
|
import { tmpdir } from "node:os";
|
|
import { join } from "node:path";
|
|
|
|
import { describe, expect, it } from "vitest";
|
|
|
|
import {
|
|
MAC_DAEMON_PREBUNDLE_ESM_REQUIRE_BANNER,
|
|
MAC_PREBUNDLE_ESBUILD_TARGET,
|
|
MAC_PREBUNDLE_POLICIES,
|
|
MAC_PREBUNDLE_RUNTIME_DEPENDENCIES,
|
|
MAC_PREBUNDLED_DAEMON_CLI_RELATIVE_PATH,
|
|
MAC_PREBUNDLED_DAEMON_SIDECAR_RELATIVE_PATH,
|
|
MAC_PREBUNDLED_WEB_SIDECAR_RELATIVE_PATH,
|
|
assertMacPrebundleMetafile,
|
|
findForbiddenMacPrebundleInputs,
|
|
renderMacPackagedMainEntry,
|
|
shouldInstallInternalPackageForMacPrebundle,
|
|
shouldUseMacStandalonePrebundle,
|
|
} from "../src/mac-prebundle.js";
|
|
|
|
describe("mac standalone prebundle policy", () => {
|
|
it("is enabled only for standalone web output", () => {
|
|
expect(shouldUseMacStandalonePrebundle("standalone")).toBe(true);
|
|
expect(shouldUseMacStandalonePrebundle("server")).toBe(false);
|
|
});
|
|
|
|
it("keeps server-mode package topology unchanged", () => {
|
|
expect(
|
|
shouldInstallInternalPackageForMacPrebundle({
|
|
packageName: "@open-design/web",
|
|
webOutputMode: "server",
|
|
}),
|
|
).toBe(true);
|
|
expect(
|
|
shouldInstallInternalPackageForMacPrebundle({
|
|
packageName: "@open-design/packaged",
|
|
webOutputMode: "server",
|
|
}),
|
|
).toBe(true);
|
|
});
|
|
|
|
it("excludes internal packages replaced by mac standalone prebundles", () => {
|
|
for (const packageName of [
|
|
"@open-design/contracts",
|
|
"@open-design/daemon",
|
|
"@open-design/desktop",
|
|
"@open-design/packaged",
|
|
"@open-design/platform",
|
|
"@open-design/sidecar",
|
|
"@open-design/sidecar-proto",
|
|
"@open-design/web",
|
|
]) {
|
|
expect(
|
|
shouldInstallInternalPackageForMacPrebundle({
|
|
packageName,
|
|
webOutputMode: "standalone",
|
|
}),
|
|
).toBe(false);
|
|
}
|
|
});
|
|
|
|
it("documents the explicit code-level bundle boundaries", () => {
|
|
expect(MAC_PREBUNDLE_ESBUILD_TARGET).toBe("node24");
|
|
expect(MAC_PREBUNDLE_POLICIES.packagedMain.externals).toEqual(["electron"]);
|
|
expect(MAC_PREBUNDLE_POLICIES.daemonCli.externals).toEqual(["better-sqlite3", "blake3-wasm"]);
|
|
expect(MAC_PREBUNDLE_POLICIES.daemonSidecar.externals).toEqual(["better-sqlite3", "blake3-wasm"]);
|
|
expect(MAC_PREBUNDLE_POLICIES.webSidecar.externals).toEqual([]);
|
|
expect(MAC_DAEMON_PREBUNDLE_ESM_REQUIRE_BANNER).toContain("createRequire");
|
|
expect(MAC_PREBUNDLE_RUNTIME_DEPENDENCIES).toEqual({
|
|
"better-sqlite3": "12.9.0",
|
|
"blake3-wasm": "2.1.5",
|
|
});
|
|
expect(MAC_PREBUNDLED_DAEMON_CLI_RELATIVE_PATH).toBe("app/prebundled/daemon/daemon-cli.mjs");
|
|
expect(MAC_PREBUNDLED_DAEMON_SIDECAR_RELATIVE_PATH).toBe("app/prebundled/daemon/daemon-sidecar.mjs");
|
|
expect(MAC_PREBUNDLED_WEB_SIDECAR_RELATIVE_PATH).toBe("app/prebundled/web-sidecar.mjs");
|
|
});
|
|
});
|
|
|
|
describe("findForbiddenMacPrebundleInputs", () => {
|
|
it("matches forbidden dependency roots after path normalization", () => {
|
|
expect(
|
|
findForbiddenMacPrebundleInputs({
|
|
forbiddenInputs: MAC_PREBUNDLE_POLICIES.webSidecar.forbiddenInputs,
|
|
inputs: [
|
|
"src/index.ts",
|
|
"C:\\repo\\node_modules\\next\\dist\\server.js",
|
|
"/repo/node_modules/openai/index.mjs",
|
|
],
|
|
}),
|
|
).toEqual([
|
|
"C:/repo/node_modules/next/dist/server.js",
|
|
"/repo/node_modules/openai/index.mjs",
|
|
]);
|
|
});
|
|
});
|
|
|
|
describe("assertMacPrebundleMetafile", () => {
|
|
it("accepts a safe web sidecar metafile", async () => {
|
|
const root = await mkdtemp(join(tmpdir(), "open-design-mac-prebundle-"));
|
|
const metafilePath = join(root, "safe.json");
|
|
|
|
try {
|
|
await writeFile(
|
|
metafilePath,
|
|
JSON.stringify({ inputs: { "/repo/apps/web/sidecar/index.ts": {} } }),
|
|
"utf8",
|
|
);
|
|
|
|
await expect(
|
|
assertMacPrebundleMetafile({ metafilePath, policyName: "webSidecar" }),
|
|
).resolves.toBeUndefined();
|
|
} finally {
|
|
await rm(root, { force: true, recursive: true });
|
|
}
|
|
});
|
|
|
|
it("rejects a packaged main metafile that pulled in web runtime closure", async () => {
|
|
const root = await mkdtemp(join(tmpdir(), "open-design-mac-prebundle-"));
|
|
const metafilePath = join(root, "unsafe.json");
|
|
|
|
try {
|
|
await writeFile(
|
|
metafilePath,
|
|
JSON.stringify({ inputs: { "/repo/node_modules/@open-design/web/dist/sidecar/index.js": {} } }),
|
|
"utf8",
|
|
);
|
|
|
|
await expect(
|
|
assertMacPrebundleMetafile({ metafilePath, policyName: "packagedMain" }),
|
|
).rejects.toThrow(/packaged main prebundle included forbidden inputs/);
|
|
} finally {
|
|
await rm(root, { force: true, recursive: true });
|
|
}
|
|
});
|
|
});
|
|
|
|
describe("renderMacPackagedMainEntry", () => {
|
|
it("renders the prebundled runtime entry shim", () => {
|
|
expect(renderMacPackagedMainEntry(true)).toContain("./prebundled/packaged-main.mjs");
|
|
expect(renderMacPackagedMainEntry(true)).not.toContain("@open-design/packaged");
|
|
});
|
|
|
|
it("renders the package entry shim for non-prebundled mode", () => {
|
|
expect(renderMacPackagedMainEntry(false)).toContain("@open-design/packaged");
|
|
expect(renderMacPackagedMainEntry(false)).not.toContain("./prebundled/packaged-main.mjs");
|
|
});
|
|
});
|