mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-09-14 10:52:17 +03:00
* test(infra): retry recursive temp-dir removal on main (main twin of #11968)
`main` has been red since b342c1a361 on the vitest and integration gates:
✖ tests/unit/autoCombo/provider-family-combos.test.ts > auto/<family>
✖ chat pipeline applies Codex OAuth fingerprint and priority tier inside combos
Both call resetStorage() from beforeEach, which does an fs.rmSync(TEST_DATA_DIR,
{recursive: true, force: true}) with no retry, and intermittently loses the race
with a not-yet-released SQLite handle (ENOTEMPTY).
release/v3.8.51 fixed this in #11968 with a mechanical codemod adding
maxRetries/retryDelay to every recursive rm/rmSync/rmdirSync under tests/, but
that PR landed only on the release branch. Because main only receives work at
the release squash, it stayed broken for the whole cycle — and repo-wide gates
then turn every open PR into main red on checks unrelated to their diff.
This is the --base main twin: re-runs the same codemod that already shipped on
the release branch (scripts/ad-hoc/codemod-rm-maxretries.mjs), so the two
branches converge on identical test-teardown semantics. Test-only; no product
logic is touched.
The remaining three failures reported on #12133 (unit full suite exceeding its
4800s ceiling, package-artifact exceeding 1200s, and the boot-smoke that is
skipped as a consequence) are runner-contention timeouts, not code defects —
validate-release-green.mjs runs those heavy gates concurrently on one shared
hosted runner. There is no fix to port for those.
* chore(scripts): carry the rm-maxretries codemod onto main alongside its output
The codemod that generated the previous commit lives in the repo on
release/v3.8.51 (added by #11968) but was never on main. Bringing it over keeps
the tool next to the change it produced, so the transformation stays
reproducible and auditable from either branch.
180 lines
6.5 KiB
TypeScript
180 lines
6.5 KiB
TypeScript
import test from "node:test";
|
|
import assert from "node:assert/strict";
|
|
import { mkdtempSync, readFileSync, rmSync } from "node:fs";
|
|
import { join } from "node:path";
|
|
import { tmpdir } from "node:os";
|
|
|
|
let tmpDir: string;
|
|
let origDataDir: string | undefined;
|
|
|
|
test.before(() => {
|
|
tmpDir = mkdtempSync(join(tmpdir(), "omniroute-ctx-test-"));
|
|
origDataDir = process.env.DATA_DIR;
|
|
process.env.DATA_DIR = tmpDir;
|
|
});
|
|
|
|
test.after(() => {
|
|
if (origDataDir === undefined) delete process.env.DATA_DIR;
|
|
else process.env.DATA_DIR = origDataDir;
|
|
try {
|
|
rmSync(tmpDir, { recursive: true, force: true, maxRetries: 5, retryDelay: 100 });
|
|
} catch {}
|
|
});
|
|
|
|
test("contexts.mjs pode ser importado sem erro", async () => {
|
|
const mod = await import("../../bin/cli/contexts.mjs");
|
|
assert.equal(typeof mod.loadContexts, "function");
|
|
assert.equal(typeof mod.saveContexts, "function");
|
|
assert.equal(typeof mod.resolveActiveContext, "function");
|
|
assert.equal(typeof mod.configPath, "function");
|
|
});
|
|
|
|
test("loadContexts retorna config padrão quando arquivo não existe", async () => {
|
|
const { loadContexts } = await import("../../bin/cli/contexts.mjs");
|
|
const cfg = loadContexts();
|
|
assert.ok(cfg.contexts);
|
|
assert.ok(cfg.contexts.default);
|
|
assert.equal(typeof cfg.contexts.default.baseUrl, "string");
|
|
assert.equal(cfg.currentContext, "default");
|
|
});
|
|
|
|
test("saveContexts persiste e loadContexts relê", async () => {
|
|
const { loadContexts, saveContexts } = await import("../../bin/cli/contexts.mjs");
|
|
const cfg = loadContexts();
|
|
cfg.contexts.test = { baseUrl: "http://test:9999", apiKey: null };
|
|
cfg.currentContext = "test";
|
|
saveContexts(cfg);
|
|
const cfg2 = loadContexts();
|
|
assert.equal(cfg2.currentContext, "test");
|
|
assert.equal(cfg2.contexts.test?.baseUrl, "http://test:9999");
|
|
});
|
|
|
|
test("resolveActiveContext retorna contexto ativo", async () => {
|
|
const { resolveActiveContext, loadContexts, saveContexts } =
|
|
await import("../../bin/cli/contexts.mjs");
|
|
const cfg = loadContexts();
|
|
cfg.contexts.prod = { baseUrl: "https://prod.example.com", apiKey: "sk-prod" };
|
|
cfg.currentContext = "prod";
|
|
saveContexts(cfg);
|
|
const ctx = resolveActiveContext(undefined);
|
|
assert.equal(ctx.baseUrl, "https://prod.example.com");
|
|
});
|
|
|
|
test("resolveActiveContext aceita override pontual", async () => {
|
|
const { resolveActiveContext, loadContexts, saveContexts } =
|
|
await import("../../bin/cli/contexts.mjs");
|
|
const cfg = loadContexts();
|
|
cfg.contexts.staging = { baseUrl: "http://staging:20128", apiKey: null };
|
|
saveContexts(cfg);
|
|
const ctx = resolveActiveContext("staging");
|
|
assert.equal(ctx.baseUrl, "http://staging:20128");
|
|
});
|
|
|
|
test("saveContextsSecure guarda tokens no keychain e resolve pela referência", async () => {
|
|
const {
|
|
loadContexts,
|
|
saveContextsSecure,
|
|
resolveActiveContext,
|
|
setContextKeychainBackendForTests,
|
|
} = await import("../../bin/cli/contexts.mjs");
|
|
const entries = new Map<string, string>();
|
|
const fakeKeychain = {
|
|
async getPassword(_service: string, account: string) {
|
|
return entries.get(account) || null;
|
|
},
|
|
async setPassword(_service: string, account: string, value: string) {
|
|
entries.set(account, value);
|
|
},
|
|
async deletePassword(_service: string, account: string) {
|
|
entries.delete(account);
|
|
return true;
|
|
},
|
|
};
|
|
await setContextKeychainBackendForTests(fakeKeychain);
|
|
const cfg = loadContexts();
|
|
cfg.contexts.secure = {
|
|
baseUrl: "https://secure.example.com",
|
|
accessToken: "oma_test_secret",
|
|
scope: "write",
|
|
};
|
|
await saveContextsSecure(cfg);
|
|
|
|
const persisted = JSON.parse(readFileSync(join(tmpDir, "config.json"), "utf8"));
|
|
assert.equal(persisted.contexts.secure.accessToken, undefined);
|
|
assert.match(persisted.contexts.secure.credentialRef, /^omniroute-cli:context:/);
|
|
assert.equal(resolveActiveContext("secure").accessToken, "oma_test_secret");
|
|
assert.ok(entries.size >= 1);
|
|
|
|
await setContextKeychainBackendForTests(null);
|
|
});
|
|
|
|
test("contexts.mjs (commands) pode ser importado sem erro", async () => {
|
|
const mod = await import("../../bin/cli/commands/contexts.mjs");
|
|
assert.equal(typeof mod.registerContexts, "function");
|
|
});
|
|
|
|
test("context export redaction covers canonical and legacy profile schemas", async () => {
|
|
const { redactContextSecrets } = await import("../../bin/cli/commands/contexts.mjs");
|
|
const redacted = redactContextSecrets({
|
|
contexts: { remote: { accessToken: "oma-secret", apiKey: "sk-secret" } },
|
|
profiles: { legacy: { accessToken: "legacy-secret", apiKey: "legacy-key" } },
|
|
});
|
|
assert.deepEqual(redacted.contexts.remote, { apiKey: null });
|
|
assert.deepEqual(redacted.profiles.legacy, { apiKey: null });
|
|
});
|
|
|
|
test("confirm() declines cleanly on non-interactive stdin (no hung await)", async () => {
|
|
// Regression: `contexts remove` without --yes used to prompt even when stdin
|
|
// could not answer (pipe/CI/EOF), leaving the readline question pending and
|
|
// triggering Node's "unsettled top-level await" warning. With a non-TTY stdin
|
|
// confirm() must resolve to false immediately (decline) without touching
|
|
// readline — `--yes` remains the way to proceed non-interactively.
|
|
const { confirm } = await import("../../bin/cli/commands/contexts.mjs");
|
|
const desc = Object.getOwnPropertyDescriptor(process.stdin, "isTTY");
|
|
Object.defineProperty(process.stdin, "isTTY", { value: false, configurable: true });
|
|
try {
|
|
const result = await confirm("Remove context 'x'?");
|
|
assert.equal(result, false);
|
|
} finally {
|
|
if (desc) Object.defineProperty(process.stdin, "isTTY", desc);
|
|
else delete (process.stdin as { isTTY?: boolean }).isTTY;
|
|
}
|
|
});
|
|
|
|
test("registerContexts registers the singular `context` alias", async () => {
|
|
// The connect output and older docs say `omniroute context current` (singular);
|
|
// the command is `contexts`. An alias keeps the singular muscle-memory working.
|
|
const { registerContexts } = await import("../../bin/cli/commands/contexts.mjs");
|
|
let aliasName: string | undefined;
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
const fakeCtx: any = {
|
|
command() {
|
|
return this;
|
|
},
|
|
alias(a: string) {
|
|
aliasName = a;
|
|
return this;
|
|
},
|
|
description() {
|
|
return this;
|
|
},
|
|
requiredOption() {
|
|
return this;
|
|
},
|
|
option() {
|
|
return this;
|
|
},
|
|
action() {
|
|
return this;
|
|
},
|
|
};
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
const fakeProgram: any = {
|
|
command() {
|
|
return fakeCtx;
|
|
},
|
|
};
|
|
registerContexts(fakeProgram);
|
|
assert.equal(aliasName, "context");
|
|
});
|