mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-25 12:01:11 +00:00
* feat(codex): add native session supervision * fix(codex): harden supervision integration * fix(codex): preserve locked harness ownership * fix(codex): fence native session archive * fix(codex): revalidate archive binding ownership * feat(codex): integrate supervision runtime * feat(sessions): preserve harness-owned execution * feat(sessions): persist harness ownership invariants * feat(gateway): enforce harness-owned sessions * feat(setup): enable detected Codex supervision * feat(mac): expose supervised Codex sessions * feat(ui): make Codex sessions actionable * docs(codex): document session supervision * test(codex): cover integration ownership * chore(i18n): refresh supervision inventories * fix(setup): finalize Codex activation atomically * test(codex): narrow binding store update * fix(sessions): preserve legacy model locks * test(macos): serialize Codex catalog fixtures * fix(sessions): preserve legacy lock admission * chore(i18n): reconcile supervision metadata * test(sessions): mark legacy lock fixture * fix(macos): drain final Codex catalog frame * docs: leave supervision note to release * style(macos): satisfy Codex catalog type length * chore: record session accessor seam owners * fix(macos): honor configured Codex supervision * fix(codex): preserve harness-owned model locks * fix(codex): satisfy supervision lint gates * chore(i18n): refresh native supervision inventory * fix(codex): align supervision validation contracts * fix(codex): close supervision boundary gaps * fix(codex): preserve supervision activation contracts * fix(codex): dispose standalone supervision runtime * fix(codex): pin supervised source connection * fix(plugins): bind delegated runs to exact session target * fix(codex): scope supervised sessions to configured agents * fix(codex): fingerprint effective supervision home * fix(codex): normalize supervision plugin policy * fix(codex): keep supervised bindings stable across upgrades * fix(codex): guard all supervised binding connections * fix(codex): preserve catalog filters and pending CAS identity * fix(codex): preserve supervision identity for diagnostics * fix(codex): bind uncertain commits to supervision connection * fix(codex): satisfy supervision type boundaries * fix(macos): reconcile current main validation * fix(codex): handle absent runtime config in supervision * fix(doctor): own local audio acceleration check * fix(codex): satisfy integration lint gates * fix(codex): satisfy lifecycle safety guards
122 lines
4.0 KiB
TypeScript
122 lines
4.0 KiB
TypeScript
// Codex tests cover private binding connection selection.
|
|
import { describe, expect, it } from "vitest";
|
|
import {
|
|
requireCodexSupervisionModelSelection,
|
|
resolveCodexBindingAppServerConnection,
|
|
} from "./binding-connection.js";
|
|
import { resolveCodexSupervisionAppServerRuntimeOptions } from "./config.js";
|
|
import { buildCodexAppServerConnectionFingerprint } from "./plugin-app-cache-key.js";
|
|
|
|
function supervisedBinding(pluginConfig: unknown) {
|
|
return {
|
|
connectionScope: "supervision" as const,
|
|
appServerRuntimeFingerprint: buildCodexAppServerConnectionFingerprint(
|
|
resolveCodexSupervisionAppServerRuntimeOptions({
|
|
pluginConfig,
|
|
env: {},
|
|
requirementsToml: null,
|
|
}),
|
|
),
|
|
};
|
|
}
|
|
|
|
describe("Codex binding app-server connection", () => {
|
|
it("preserves ordinary harness runtime and auth ownership", () => {
|
|
const connection = resolveCodexBindingAppServerConnection({
|
|
binding: {},
|
|
authProfileId: "openai:work",
|
|
env: {},
|
|
requirementsToml: null,
|
|
});
|
|
|
|
expect(connection.appServer.start.homeScope).toBe("agent");
|
|
expect(connection.usesSupervisionConnection).toBe(false);
|
|
expect(connection.requestAuthProfileId).toBe("openai:work");
|
|
expect(connection.clientAuthProfileId).toBe("openai:work");
|
|
});
|
|
|
|
it("uses native user-home auth only for an enabled supervised binding", () => {
|
|
const connection = resolveCodexBindingAppServerConnection({
|
|
binding: supervisedBinding({ supervision: { enabled: true } }),
|
|
authProfileId: "openai:work",
|
|
pluginConfig: { supervision: { enabled: true } },
|
|
env: {},
|
|
requirementsToml: null,
|
|
});
|
|
|
|
expect(connection.appServer.start.homeScope).toBe("user");
|
|
expect(connection.usesSupervisionConnection).toBe(true);
|
|
expect(connection.requestAuthProfileId).toBeUndefined();
|
|
expect(connection.clientAuthProfileId).toBeNull();
|
|
});
|
|
|
|
it("requires the exact native model pair for materialized supervised requests", () => {
|
|
expect(
|
|
requireCodexSupervisionModelSelection({
|
|
connectionScope: "supervision",
|
|
model: " gpt-5.5 ",
|
|
modelProvider: " openai ",
|
|
}),
|
|
).toEqual({ model: "gpt-5.5", modelProvider: "openai" });
|
|
|
|
expect(() =>
|
|
requireCodexSupervisionModelSelection({
|
|
connectionScope: "supervision",
|
|
model: "gpt-5.5",
|
|
}),
|
|
).toThrow("missing its native model and provider");
|
|
});
|
|
|
|
it("preserves an explicit supervised WebSocket endpoint while selecting native auth", () => {
|
|
const connection = resolveCodexBindingAppServerConnection({
|
|
binding: supervisedBinding({
|
|
supervision: { enabled: true },
|
|
appServer: { transport: "websocket", url: "ws://127.0.0.1:4500" },
|
|
}),
|
|
pluginConfig: {
|
|
supervision: { enabled: true },
|
|
appServer: { transport: "websocket", url: "ws://127.0.0.1:4500" },
|
|
},
|
|
env: {},
|
|
requirementsToml: null,
|
|
});
|
|
|
|
expect(connection.appServer.start).toMatchObject({
|
|
transport: "websocket",
|
|
homeScope: "agent",
|
|
url: "ws://127.0.0.1:4500",
|
|
});
|
|
expect(connection.clientAuthProfileId).toBeNull();
|
|
});
|
|
|
|
it("fails closed when a supervised binding remains after supervision is disabled", () => {
|
|
expect(() =>
|
|
resolveCodexBindingAppServerConnection({
|
|
binding: { connectionScope: "supervision" },
|
|
pluginConfig: { supervision: { enabled: false } },
|
|
env: {},
|
|
requirementsToml: null,
|
|
}),
|
|
).toThrow("Codex supervision is disabled");
|
|
});
|
|
|
|
it("fails closed when a supervised binding connection changes", () => {
|
|
const binding = supervisedBinding({
|
|
supervision: { enabled: true },
|
|
appServer: { transport: "websocket", url: "ws://127.0.0.1:4500" },
|
|
});
|
|
|
|
expect(() =>
|
|
resolveCodexBindingAppServerConnection({
|
|
binding,
|
|
pluginConfig: {
|
|
supervision: { enabled: true },
|
|
appServer: { transport: "websocket", url: "ws://127.0.0.1:4600" },
|
|
},
|
|
env: {},
|
|
requirementsToml: null,
|
|
}),
|
|
).toThrow("supervision connection changed");
|
|
});
|
|
});
|