Files
OmniRoute/tests/unit/build-next-isolated.test.ts
diegosouzapw f3b944a55a refactor(scripts): organize into build/dev/check/docs/i18n/ad-hoc subfolders
Reorganizes the 29 active scripts under scripts/ into purpose-driven
subfolders:

- scripts/build/    (11) — Build, install, publish, runtime env
- scripts/dev/      (13) — Dev servers, test runners, healthchecks
- scripts/check/    (10) — Lint/validation/coverage checks
- scripts/docs/      (2) — Docs index and provider reference generation
- scripts/i18n/     (+3) — Adds Python translation utilities (check/validate/autotranslate)
- scripts/ad-hoc/    (4) — One-shot maintenance utilities

Updates all references in package.json, electron/package.json,
.husky/pre-commit, .github/workflows/ci.yml, Dockerfile, src/,
tests/, scripts/ internal cross-imports, playwright.config.ts,
and English docs (CODEBASE_DOCUMENTATION, ENVIRONMENT, FEATURES,
RELEASE_CHECKLIST, COVERAGE_PLAN, ELECTRON_GUIDE, I18N, GEMINI).

Also patches scripts/build/pack-artifact-policy.ts so the npm pack
allowlist mirrors the new layout.

Validates with:
- npm run lint            (exit 0 — pre-existing minified-bundle errors only)
- npm run typecheck:core  (exit 0)
- npm run check:docs-all  (exit 0)
- unit tests for moved scripts (57 tests pass)

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-13 10:14:25 -03:00

176 lines
5.4 KiB
TypeScript

import test from "node:test";
import assert from "node:assert/strict";
import fs from "node:fs/promises";
import fsSync from "node:fs";
import os from "node:os";
import path from "node:path";
const {
getTransientBuildPaths,
movePath,
pruneStandaloneArtifacts,
resolveNextBuildEnv,
syncStandaloneNativeAssets,
} = await import("../../scripts/build/build-next-isolated.mjs");
async function withTempDir(fn) {
const tempDir = await fs.mkdtemp(path.join(os.tmpdir(), "omniroute-build-next-isolated-"));
try {
await fn(tempDir);
} finally {
await fs.rm(tempDir, { recursive: true, force: true });
}
}
test("movePath falls back to copy/remove when rename raises EXDEV", async () => {
await withTempDir(async (tempDir) => {
const sourceDir = path.join(tempDir, "app");
const destinationDir = path.join(tempDir, ".app-build-backup");
const nestedFile = path.join(sourceDir, "nested", "file.txt");
await fs.mkdir(path.dirname(nestedFile), { recursive: true });
await fs.writeFile(nestedFile, "legacy payload");
let copyCalled = false;
let removeCalled = false;
const warnings = [];
const originalWarn = console.warn;
console.warn = (message) => warnings.push(String(message));
try {
await movePath(sourceDir, destinationDir, {
rename: async () => {
const error = new Error("cross-device link not permitted");
error.code = "EXDEV";
throw error;
},
cp: async (...args) => {
copyCalled = true;
return fs.cp(...args);
},
rm: async (...args) => {
removeCalled = true;
return fs.rm(...args);
},
});
} finally {
console.warn = originalWarn;
}
assert.equal(copyCalled, true);
assert.equal(removeCalled, true);
assert.equal(fsSync.existsSync(sourceDir), false);
assert.equal(
await fs.readFile(path.join(destinationDir, "nested", "file.txt"), "utf8"),
"legacy payload"
);
assert.match(warnings[0] ?? "", /EXDEV while moving/);
});
});
test("movePath rethrows non-EXDEV rename failures", async () => {
await withTempDir(async (tempDir) => {
const sourceDir = path.join(tempDir, "app");
const destinationDir = path.join(tempDir, ".app-build-backup");
await fs.mkdir(sourceDir, { recursive: true });
await assert.rejects(
movePath(sourceDir, destinationDir, {
rename: async () => {
const error = Object.assign(new Error("permission denied"), { code: "EACCES" });
throw error;
},
cp: async () => {
throw new Error("copy fallback should not run");
},
rm: async () => {
throw new Error("remove fallback should not run");
},
}),
(error) => error instanceof Error && "code" in error && error.code === "EACCES"
);
});
});
test("resolveNextBuildEnv forces stable build worker mode unless already provided", () => {
const defaultEnv = resolveNextBuildEnv({ NODE_ENV: "test" });
assert.equal(defaultEnv.NEXT_PRIVATE_BUILD_WORKER, "0");
assert.equal(defaultEnv.NODE_ENV, "test");
const preservedEnv = resolveNextBuildEnv({
NODE_ENV: "production",
NEXT_PRIVATE_BUILD_WORKER: "1",
});
assert.equal(preservedEnv.NEXT_PRIVATE_BUILD_WORKER, "1");
assert.equal(preservedEnv.NODE_ENV, "production");
});
test("getTransientBuildPaths leaves _tasks in place by default", () => {
const paths = getTransientBuildPaths("/repo", {});
assert.deepEqual(
paths.map((entry) => entry.label),
["legacy app snapshot", "local Wine prefix"]
);
assert.equal(
paths.some((entry) => path.basename(entry.sourcePath) === "_tasks"),
false
);
});
test("getTransientBuildPaths only moves _tasks when explicitly enabled", () => {
const paths = getTransientBuildPaths("/repo", { OMNIROUTE_BUILD_MOVE_TASKS: "1" });
assert.equal(
paths.some((entry) => path.basename(entry.sourcePath) === "_tasks"),
true
);
});
test("pruneStandaloneArtifacts removes traced _tasks from standalone output", async () => {
await withTempDir(async (tempDir) => {
const tracedTaskFile = path.join(tempDir, ".next", "standalone", "_tasks", "plan.md");
await fs.mkdir(path.dirname(tracedTaskFile), { recursive: true });
await fs.writeFile(tracedTaskFile, "transient planning artifact");
await pruneStandaloneArtifacts(tempDir);
assert.equal(fsSync.existsSync(path.join(tempDir, ".next", "standalone", "_tasks")), false);
});
});
test("syncStandaloneNativeAssets copies wreq-js native runtime into standalone output", async () => {
await withTempDir(async (tempDir) => {
const sourceNativeFile = path.join(
tempDir,
"node_modules",
"wreq-js",
"rust",
"wreq-js.linux-x64-gnu.node"
);
const destinationNativeFile = path.join(
tempDir,
".next",
"standalone",
"node_modules",
"wreq-js",
"rust",
"wreq-js.linux-x64-gnu.node"
);
const logs: string[] = [];
await fs.mkdir(path.dirname(sourceNativeFile), { recursive: true });
await fs.writeFile(sourceNativeFile, "native module bytes");
const changed = await syncStandaloneNativeAssets(tempDir, fs, {
log: (message: unknown) => logs.push(String(message)),
});
assert.equal(changed, true);
assert.equal(await fs.readFile(destinationNativeFile, "utf8"), "native module bytes");
assert.match((logs[0] ?? "").replaceAll("\\", "/"), /wreq-js\/rust/);
});
});