File size: 36,870 Bytes
4c76b0d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 | import fs from "node:fs";
import os from "node:os";
import path from "node:path";
import { afterEach, beforeEach, describe, expect, expectTypeOf, it } from "vitest";
import { createDeferred } from "../../../test/helpers/promise.js";
import { loadTranscriptEvents } from "../../config/sessions/session-accessor.js";
import { createGatewaySession } from "../../gateway/session-create-service.js";
import {
interruptSessionWorkAdmissions,
isSessionLifecycleMutationActive,
runExclusiveSessionLifecycleMutation,
} from "../../sessions/session-lifecycle-admission.js";
import { withOpenClawTestState } from "../../test-utils/openclaw-test-state.js";
import { createRuntimeAgent } from "./runtime-agent.js";
describe("plugin runtime session creation", () => {
it("resolves synchronous session catalog targets through agent model policy", () => {
const runtime = createRuntimeAgent();
const config = {
agents: {
defaults: {
models: {
"anthropic/claude-opus-4-8": { agentRuntime: { id: "claude-cli" } },
},
},
},
};
expect(
runtime.resolveSessionCatalogCreateTarget({
config,
provider: "anthropic",
modelIds: ["claude-opus-5", "claude-opus-4-8"],
agentRuntime: "claude-cli",
}),
).toEqual({
model: "anthropic/claude-opus-4-8",
agentRuntime: "claude-cli",
});
});
it("skips routed catalog targets denied by agent model policy", () => {
const runtime = createRuntimeAgent();
const config = {
agents: {
defaults: {
model: { primary: "anthropic/claude-opus-4-8" },
models: {
"anthropic/claude-opus-5": { agentRuntime: { id: "claude-cli" } },
"anthropic/claude-opus-4-8": { agentRuntime: { id: "claude-cli" } },
},
modelPolicy: { allow: ["anthropic/claude-opus-4-8"] },
},
},
};
expect(
runtime.resolveSessionCatalogCreateTarget({
config,
provider: "anthropic",
modelIds: ["claude-opus-5", "claude-opus-4-8"],
agentRuntime: "claude-cli",
}),
).toEqual({
model: "anthropic/claude-opus-4-8",
agentRuntime: "claude-cli",
});
});
it("requires recovery initialization to return the final trusted patch", () => {
type CreateSessionParams = Parameters<
ReturnType<typeof createRuntimeAgent>["session"]["createSessionEntry"]
>[0];
const invalidRecoveryInitializer = {
cfg: {},
key: "type-contract-only",
recoverMatchingInitialEntry: true as const,
initialEntry: { agentHarnessId: "codex" },
afterCreate: async () => {},
};
expectTypeOf(invalidRecoveryInitializer).not.toMatchTypeOf<CreateSessionParams>();
});
it("creates a canonical transcript with trusted initial session state", async () => {
await withOpenClawTestState({ label: "plugin-runtime-session-create" }, async () => {
const runtime = createRuntimeAgent();
const key = "agent:main:harness:codex:supervision:codex-native-thread";
const initialPluginExtensions = {
codex: {
supervision: {
initializing: true,
modelLocked: true,
},
},
};
const finalPluginExtensions = {
codex: {
supervision: {
nativeThreadId: "thread-native-1",
modelLocked: true,
},
},
};
let callbackSessionId: string | undefined;
const created = await runtime.session.createSessionEntry({
cfg: {},
key,
label: "Native Codex thread",
displayName: " Native display title ",
initialEntry: {
agentHarnessId: "codex",
modelSelectionLocked: true,
pluginExtensions: initialPluginExtensions,
},
afterCreate: async (initialized) => {
callbackSessionId = initialized.sessionId;
expect(initialized.entry.initializationPending).toBe(true);
expect(initialized.entry.displayName).toBe("Native display title");
expect(runtime.session.getSessionEntry({ sessionKey: key })?.displayName).toBe(
"Native display title",
);
initialized.entry.displayName = "Callback clone cannot rename the session";
return { pluginExtensions: finalPluginExtensions };
},
});
initialPluginExtensions.codex.supervision.initializing = false;
finalPluginExtensions.codex.supervision.nativeThreadId = "mutated-after-create";
expect(callbackSessionId).toBe(created.sessionId);
expect(created.entry.initializationPending).toBeUndefined();
expect(created).toMatchObject({
key,
agentId: "main",
sessionId: created.entry.sessionId,
entry: {
agentHarnessId: "codex",
delivery: { kind: "none" },
modelSelectionLocked: true,
label: "Native Codex thread",
displayName: "Native display title",
pluginExtensions: {
codex: {
supervision: {
nativeThreadId: "thread-native-1",
modelLocked: true,
},
},
},
},
});
const stored = runtime.session.getSessionEntry({
sessionKey: key,
readConsistency: "latest",
});
expect(stored).toEqual(created.entry);
await expect(
runtime.session.createSessionEntry({
cfg: {},
key,
initialEntry: { agentHarnessId: "other" },
}),
).rejects.toThrow("Session key namespace is reserved for agent harness-owned sessions.");
await expect(
runtime.session.createSessionEntry({
cfg: {},
key,
displayName: "Do not replace the stored title",
initialEntry: { agentHarnessId: "codex" },
}),
).rejects.toThrow("trusted initial session state requires a new session");
expect(
runtime.session.getSessionEntry({ sessionKey: key, readConsistency: "latest" }),
).toEqual(created.entry);
});
});
// Plugin-owned CLI fork creation with colors lives in runtime-agent.session-color.test.ts.
it("rolls back the exact created entry and transcript when initialization fails", async () => {
await withOpenClawTestState({ label: "plugin-runtime-session-create-rollback" }, async () => {
const runtime = createRuntimeAgent();
const key = "agent:main:dashboard:codex-binding-failure";
await expect(
runtime.session.createSessionEntry({
cfg: {},
key,
displayName: "Failed title snapshot",
initialEntry: {
agentHarnessId: "codex",
modelSelectionLocked: true,
},
afterCreate: async (created) => {
expect(created.entry.displayName).toBe("Failed title snapshot");
throw new Error("native binding failed");
},
}),
).rejects.toThrow("native binding failed");
expect(runtime.session.getSessionEntry({ sessionKey: key, readConsistency: "latest" })).toBe(
undefined,
);
const retried = await runtime.session.createSessionEntry({
cfg: {},
key,
displayName: "Retry title snapshot",
initialEntry: { agentHarnessId: "codex", modelSelectionLocked: true },
afterCreate: async () => ({ pluginExtensions: {} }),
});
expect(retried.entry.displayName).toBe("Retry title snapshot");
expect(retried.entry.initializationPending).toBeUndefined();
});
});
it("rolls back a plugin-owned locked CLI session when initialization fails", async () => {
await withOpenClawTestState({ label: "plugin-runtime-cli-session-rollback" }, async () => {
const runtime = createRuntimeAgent();
const key = "agent:main:catalog-adopt:claude:rollback";
const storePath = runtime.session.resolveStorePath(undefined, { agentId: "main" });
let sessionId: string | undefined;
await expect(
runtime.session.createSessionEntry({
cfg: {},
key,
initialEntry: {
cliBackendId: "claude-cli",
model: "claude-opus-4-8",
modelSelectionLocked: true,
pluginOwnerId: "anthropic",
cliSessionBinding: {
sessionId: "claude-source",
forceReuse: true,
forkNextResume: true,
},
},
afterCreate: async (created) => {
sessionId = created.sessionId;
throw new Error("history import failed");
},
}),
).rejects.toThrow("history import failed");
expect(
runtime.session.getSessionEntry({ sessionKey: key, readConsistency: "latest" }),
).toBeUndefined();
await expect(
loadTranscriptEvents({
agentId: "main",
sessionId: sessionId ?? "",
sessionKey: key,
storePath,
}),
).resolves.toEqual([]);
});
});
it("rolls back an unlocked harness entry through the ordinary lifecycle path", async () => {
await withOpenClawTestState(
{ label: "plugin-runtime-unlocked-session-create-rollback" },
async () => {
const runtime = createRuntimeAgent();
const key = "agent:main:dashboard:unlocked-binding-failure";
await expect(
runtime.session.createSessionEntry({
cfg: {},
key,
initialEntry: { agentHarnessId: "codex" },
afterCreate: async () => {
throw new Error("unlocked native binding failed");
},
}),
).rejects.toThrow("unlocked native binding failed");
expect(
runtime.session.getSessionEntry({ sessionKey: key, readConsistency: "latest" }),
).toBeUndefined();
},
);
});
it("does not run initialization when the durable initial row cannot be written", async () => {
await withOpenClawTestState(
{ label: "plugin-runtime-session-create-initial-write-failure" },
async (state) => {
const runtime = createRuntimeAgent();
const key = "agent:main:dashboard:codex-initial-write-failure";
fs.mkdirSync(path.join(state.agentDir(), "openclaw-agent.sqlite"), { recursive: true });
let initializerRan = false;
await expect(
runtime.session.createSessionEntry({
cfg: {},
key,
initialEntry: {
agentHarnessId: "codex",
pluginExtensions: {
codex: { supervision: { initializing: true } },
},
},
afterCreate: async () => {
initializerRan = true;
return { pluginExtensions: {} };
},
}),
).rejects.toThrow();
expect(initializerRan).toBe(false);
},
);
});
it("rolls back the original entry and transcript when final patch persistence fails", async () => {
await withOpenClawTestState(
{ label: "plugin-runtime-session-create-final-patch-rollback" },
async () => {
const runtime = createRuntimeAgent();
const key = "agent:main:dashboard:codex-final-patch-failure";
await expect(
runtime.session.createSessionEntry({
cfg: {},
key,
initialEntry: {
agentHarnessId: "codex",
modelSelectionLocked: true,
pluginExtensions: {
codex: { supervision: { initializing: true } },
},
},
afterCreate: async () => {
return {
pluginExtensions: {
codex: { supervision: { invalidJsonValue: 1n as never } },
},
};
},
}),
).rejects.toThrow();
expect(
runtime.session.getSessionEntry({ sessionKey: key, readConsistency: "latest" }),
).toBeUndefined();
},
);
});
it("rolls back an unlocked harness entry when final patch persistence fails", async () => {
await withOpenClawTestState(
{ label: "plugin-runtime-unlocked-final-patch-rollback" },
async () => {
const runtime = createRuntimeAgent();
const key = "agent:main:dashboard:unlocked-final-patch-failure";
await expect(
runtime.session.createSessionEntry({
cfg: {},
key,
initialEntry: { agentHarnessId: "codex" },
afterCreate: async () => {
return {
pluginExtensions: {
codex: { supervision: { invalidJsonValue: 1n as never } },
},
};
},
}),
).rejects.toThrow();
expect(
runtime.session.getSessionEntry({ sessionKey: key, readConsistency: "latest" }),
).toBeUndefined();
},
);
});
it("fences work admission until trusted initialization completes", async () => {
await withOpenClawTestState({ label: "plugin-runtime-session-create-fence" }, async () => {
const runtime = createRuntimeAgent();
const key = "agent:main:dashboard:codex-binding-fence";
const callbackStarted = createDeferred();
const releaseCallback = createDeferred();
const storePath = runtime.session.resolveStorePath(undefined, { agentId: "main" });
const creation = runtime.session.createSessionEntry({
cfg: {},
key,
initialEntry: {
agentHarnessId: "codex",
modelSelectionLocked: true,
pluginExtensions: {
codex: { supervision: { initializing: true } },
},
},
afterCreate: async () => {
callbackStarted.resolve();
await releaseCallback.promise;
return {
pluginExtensions: {
codex: { supervision: { modelLocked: true } },
},
};
},
});
await callbackStarted.promise;
expect(isSessionLifecycleMutationActive(storePath, [key])).toBe(true);
expect(
runtime.session.getSessionEntry({ sessionKey: key, readConsistency: "latest" }),
).toMatchObject({
initializationPending: true,
pluginExtensions: {
codex: { supervision: { initializing: true } },
},
});
let workRan = false;
const work = runtime.session.runWithWorkAdmission(
{ storePath, sessionKey: key },
async () => {
workRan = true;
},
);
await new Promise<void>((resolve) => {
setImmediate(resolve);
});
expect(workRan).toBe(false);
releaseCallback.resolve();
const created = await creation;
await work;
expect(workRan).toBe(true);
expect(isSessionLifecycleMutationActive(storePath, [key])).toBe(false);
expect(created.entry.pluginExtensions).toEqual({
codex: { supervision: { modelLocked: true } },
});
expect(created.entry.initializationPending).toBeUndefined();
expect(
runtime.session.getSessionEntry({ sessionKey: key, readConsistency: "latest" }),
).toEqual(created.entry);
});
});
it("rejects an ordinary same-key create while trusted initialization is pending", async () => {
await withOpenClawTestState(
{ label: "plugin-runtime-session-create-ordinary-race" },
async () => {
const runtime = createRuntimeAgent();
const key = "agent:main:dashboard:codex-initialization-race";
const callbackStarted = createDeferred();
const releaseCallback = createDeferred();
const creation = runtime.session.createSessionEntry({
cfg: {},
key,
label: "Trusted initializer",
initialEntry: {
agentHarnessId: "codex",
pluginExtensions: { codex: { supervision: { initializing: true } } },
},
afterCreate: async () => {
callbackStarted.resolve();
await releaseCallback.promise;
return {
pluginExtensions: { codex: { supervision: { modelLocked: true } } },
};
},
});
await callbackStarted.promise;
const raced = await createGatewaySession({
cfg: {},
key,
label: "Public overwrite",
commandSource: "test",
});
expect(raced).toMatchObject({
ok: false,
error: { message: expect.stringContaining("is still initializing") },
});
expect(
runtime.session.getSessionEntry({ sessionKey: key, readConsistency: "latest" }),
).toMatchObject({
initializationPending: true,
label: "Trusted initializer",
pluginExtensions: { codex: { supervision: { initializing: true } } },
});
releaseCallback.resolve();
const created = await creation;
expect(created.entry.initializationPending).toBeUndefined();
expect(created.entry).toMatchObject({
label: "Trusted initializer",
pluginExtensions: { codex: { supervision: { modelLocked: true } } },
});
},
);
});
it("rejects creation while pre-existing session work is admitted", async () => {
await withOpenClawTestState({ label: "plugin-runtime-session-create-active" }, async () => {
const runtime = createRuntimeAgent();
const key = "agent:main:dashboard:codex-binding-active";
const workStarted = createDeferred();
const releaseWork = createDeferred();
const storePath = runtime.session.resolveStorePath(undefined, { agentId: "main" });
const work = runtime.session.runWithWorkAdmission(
{ storePath, sessionKey: key },
async () => {
workStarted.resolve();
await releaseWork.promise;
},
);
await workStarted.promise;
await expect(
runtime.session.createSessionEntry({
cfg: {},
key,
initialEntry: {
agentHarnessId: "codex",
modelSelectionLocked: true,
},
}),
).rejects.toThrow(`Session "${key}" is still active; retry creation later.`);
expect(runtime.session.getSessionEntry({ sessionKey: key, readConsistency: "latest" })).toBe(
undefined,
);
releaseWork.resolve();
await work;
});
});
it.each([
{ label: "Operator label", displayName: "Original title snapshot" },
{ label: "Older automatically promoted label", displayName: undefined },
])("recovers an exact initializer without replacing $label or its title", async (naming) => {
await withOpenClawTestState(
{ label: "plugin-runtime-session-create-recovery" },
async (state) => {
const runtime = createRuntimeAgent();
const key = "agent:main:dashboard:codex-recovery";
const sessionId = "interrupted-initializer";
const sessionFile = path.join(state.sessionsDir(), `${sessionId}.jsonl`);
const storePath = runtime.session.resolveStorePath(undefined, { agentId: "main" });
const initialPluginExtensions = {
codex: { supervision: { sourceThreadId: "source-1", initializing: true } },
};
const persistedPluginExtensions = {
codex: { supervision: { initializing: true, sourceThreadId: "source-1" } },
};
fs.mkdirSync(path.dirname(sessionFile), { recursive: true });
fs.writeFileSync(
sessionFile,
`${JSON.stringify({ type: "session", version: 3, id: sessionId })}\n`,
);
await runtime.session.upsertSessionEntry({
storePath,
sessionKey: key,
entry: {
...naming,
sessionId,
sessionFile,
updatedAt: Date.now(),
initializationPending: true,
agentHarnessId: "codex",
modelSelectionLocked: true,
pluginExtensions: persistedPluginExtensions,
spawnedCwd: "/workspace/project",
sessionRoot: "/workspace",
permissionMode: "guarded",
},
});
const recovered = await runtime.session.createSessionEntry({
cfg: {},
key,
label: "Replacement label must be ignored",
displayName: "Renamed upstream title must be ignored",
spawnedCwd: "/workspace/project",
sessionRoot: "/workspace",
permissionMode: "guarded",
recoverMatchingInitialEntry: true,
initialEntry: {
agentHarnessId: "codex",
modelSelectionLocked: true,
pluginExtensions: initialPluginExtensions,
},
afterCreate: async (created) => {
expect(created.sessionId).toBe(sessionId);
expect(created.entry.initializationPending).toBe(true);
return {
pluginExtensions: {
codex: { supervision: { sourceThreadId: "source-1", modelLocked: true } },
},
};
},
});
expect(recovered.sessionId).toBe(sessionId);
expect(recovered.entry.label).toBe(naming.label);
expect(recovered.entry.displayName).toBe(naming.displayName);
expect(recovered.entry.initializationPending).toBeUndefined();
expect(recovered.entry.pluginExtensions).toEqual({
codex: { supervision: { sourceThreadId: "source-1", modelLocked: true } },
});
expect(
runtime.session.getSessionEntry({ sessionKey: key, readConsistency: "latest" }),
).toEqual(recovered.entry);
},
);
});
it("does not recover an initializer from a different spawned workspace", async () => {
await withOpenClawTestState(
{ label: "plugin-runtime-session-create-recovery-cwd-mismatch" },
async () => {
const runtime = createRuntimeAgent();
const key = "agent:main:dashboard:codex-recovery-cwd-mismatch";
const storePath = runtime.session.resolveStorePath(undefined, { agentId: "main" });
const existing = {
sessionId: "foreign-workspace-initializer",
updatedAt: Date.now(),
delivery: { kind: "none" as const },
initializationPending: true as const,
agentHarnessId: "codex",
modelSelectionLocked: true,
pluginExtensions: {
codex: { supervision: { sourceThreadId: "source-1", initializing: true } },
},
spawnedCwd: "/workspace/other",
};
await runtime.session.upsertSessionEntry({
storePath,
sessionKey: key,
entry: existing,
});
await expect(
runtime.session.createSessionEntry({
cfg: {},
key,
spawnedCwd: "/workspace/project",
recoverMatchingInitialEntry: true,
initialEntry: {
agentHarnessId: "codex",
modelSelectionLocked: true,
pluginExtensions: {
codex: { supervision: { sourceThreadId: "source-1", initializing: true } },
},
},
afterCreate: async () => ({ pluginExtensions: {} }),
}),
).rejects.toThrow("does not match its trusted recovery state");
expect(
runtime.session.getSessionEntry({ sessionKey: key, readConsistency: "latest" }),
).toEqual(existing);
},
);
});
it("does not recover an initializing row with different trusted ownership", async () => {
await withOpenClawTestState(
{ label: "plugin-runtime-session-create-recovery-mismatch" },
async () => {
const runtime = createRuntimeAgent();
const key = "agent:main:dashboard:codex-recovery-mismatch";
const storePath = runtime.session.resolveStorePath(undefined, { agentId: "main" });
const existing = {
sessionId: "foreign-initializer",
updatedAt: Date.now(),
delivery: { kind: "none" as const },
initializationPending: true as const,
agentHarnessId: "codex",
modelSelectionLocked: true,
pluginExtensions: {
codex: { supervision: { sourceThreadId: "different-source", initializing: true } },
},
};
await runtime.session.upsertSessionEntry({
storePath,
sessionKey: key,
entry: existing,
});
await expect(
runtime.session.createSessionEntry({
cfg: {},
key,
recoverMatchingInitialEntry: true,
initialEntry: {
agentHarnessId: "codex",
modelSelectionLocked: true,
pluginExtensions: {
codex: { supervision: { sourceThreadId: "source-1", initializing: true } },
},
},
afterCreate: async () => ({ pluginExtensions: {} }),
}),
).rejects.toThrow("does not match its trusted recovery state");
expect(
runtime.session.getSessionEntry({ sessionKey: key, readConsistency: "latest" }),
).toEqual(existing);
},
);
});
it("does not recover or roll back a locked CLI row owned by another plugin", async () => {
await withOpenClawTestState({ label: "plugin-runtime-cli-recovery-owner" }, async () => {
const runtime = createRuntimeAgent();
const key = "agent:main:catalog-adopt:claude:foreign";
const storePath = runtime.session.resolveStorePath(undefined, { agentId: "main" });
const cliSessionBinding = {
sessionId: "claude-source",
forceReuse: true,
forkNextResume: true,
} as const;
const existing = {
sessionId: "foreign-initializer",
updatedAt: Date.now(),
delivery: { kind: "none" as const },
initializationPending: true as const,
modelSelectionLocked: true,
pluginOwnerId: "other-plugin",
providerOverride: "claude-cli",
modelOverride: "claude-opus-4-8",
cliSessionBindings: { "claude-cli": cliSessionBinding },
};
await runtime.session.upsertSessionEntry({ storePath, sessionKey: key, entry: existing });
await expect(
runtime.session.createSessionEntry({
cfg: {},
key,
recoverMatchingInitialEntry: true,
initialEntry: {
cliBackendId: "claude-cli",
model: "claude-opus-4-8",
modelSelectionLocked: true,
pluginOwnerId: "anthropic",
cliSessionBinding,
},
afterCreate: async () => {
throw new Error("must not run");
},
}),
).rejects.toThrow("does not match its trusted recovery state");
expect(
runtime.session.getSessionEntry({ sessionKey: key, readConsistency: "latest" }),
).toEqual(existing);
});
});
it("rejects work for a persisted initializer without an active process fence", async () => {
await withOpenClawTestState(
{ label: "plugin-runtime-session-create-restart-admission" },
async () => {
const runtime = createRuntimeAgent();
const key = "agent:main:dashboard:codex-restart-pending";
const storePath = runtime.session.resolveStorePath(undefined, { agentId: "main" });
await runtime.session.upsertSessionEntry({
storePath,
sessionKey: key,
entry: {
sessionId: "interrupted-initializer",
updatedAt: Date.now(),
initializationPending: true,
},
});
expect(isSessionLifecycleMutationActive(storePath, [key])).toBe(false);
let workRan = false;
await expect(
runtime.session.runWithWorkAdmission({ storePath, sessionKey: key }, async () => {
workRan = true;
}),
).rejects.toThrow("is still initializing");
expect(workRan).toBe(false);
},
);
});
it.each(["label", "displayName"] as const)(
"preserves a concurrent %s change before finalization",
async (field) => {
await withOpenClawTestState(
{ label: "plugin-runtime-session-create-rollback-race" },
async () => {
const runtime = createRuntimeAgent();
const key = "agent:main:dashboard:codex-binding-race";
let sessionId: string | undefined;
await expect(
runtime.session.createSessionEntry({
cfg: {},
key,
initialEntry: {
agentHarnessId: "codex",
modelSelectionLocked: true,
},
afterCreate: async (created) => {
sessionId = created.sessionId;
await runtime.session.patchSessionEntry({
sessionKey: created.key,
update: () => ({ [field]: "claimed concurrently" }),
});
return {
pluginExtensions: {
codex: { supervision: { modelLocked: true } },
},
};
},
}),
).rejects.toThrow("guarded rollback did not complete");
expect(
runtime.session.getSessionEntry({ sessionKey: key, readConsistency: "latest" }),
).toMatchObject({
sessionId,
[field]: "claimed concurrently",
agentHarnessId: "codex",
modelSelectionLocked: true,
});
},
);
},
);
it("rejects title mutation in the pluginExtensions-only final patch", async () => {
await withOpenClawTestState({ label: "plugin-runtime-title-final-patch" }, async () => {
const runtime = createRuntimeAgent();
const key = "agent:main:dashboard:title-final-patch";
await expect(
runtime.session.createSessionEntry({
cfg: {},
key,
displayName: "Initial title",
initialEntry: { agentHarnessId: "codex" },
afterCreate: async () => ({ pluginExtensions: {}, displayName: "Invalid replacement" }),
}),
).rejects.toThrow("session creation final patch may only contain pluginExtensions");
expect(runtime.session.getSessionEntry({ sessionKey: key })).toBeUndefined();
});
});
it("rejects an empty harness initializer without leaving a session entry", async () => {
await withOpenClawTestState({ label: "plugin-runtime-session-create-invalid" }, async () => {
const runtime = createRuntimeAgent();
const key = "agent:main:dashboard:invalid-harness";
await expect(
runtime.session.createSessionEntry({
cfg: {},
key,
initialEntry: { agentHarnessId: " " },
}),
).rejects.toThrow("initial agentHarnessId must be non-empty");
expect(runtime.session.getSessionEntry({ sessionKey: key, readConsistency: "latest" })).toBe(
undefined,
);
});
});
it("does not initialize over an existing placeholder entry", async () => {
await withOpenClawTestState(
{ label: "plugin-runtime-session-create-placeholder" },
async () => {
const runtime = createRuntimeAgent();
const key = "agent:main:metadata";
const updatedAt = Date.now();
const storePath = runtime.session.resolveStorePath(undefined, { agentId: "main" });
await runtime.session.upsertSessionEntry({
storePath,
sessionKey: key,
entry: { sessionId: key, updatedAt, groupActivation: "always" },
});
expect(
runtime.session.getSessionEntry({
sessionKey: key,
storePath,
readConsistency: "latest",
}),
).toMatchObject({ sessionId: key, updatedAt, groupActivation: "always" });
await expect(
runtime.session.createSessionEntry({
cfg: {},
key,
initialEntry: {
agentHarnessId: "codex",
modelSelectionLocked: true,
},
}),
).rejects.toThrow("trusted initial session state requires a new session");
expect(
runtime.session.getSessionEntry({
sessionKey: key,
storePath,
readConsistency: "latest",
}),
).toMatchObject({ sessionId: key, updatedAt, groupActivation: "always" });
},
);
});
});
describe("plugin runtime session work admission", () => {
let tempDir: string;
let storePath: string;
const sessionKey = "agent:main:voice:caller";
const sessionId = "voice-session-id";
beforeEach(async () => {
tempDir = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-plugin-session-admission-"));
storePath = path.join(tempDir, "sessions.json");
await createRuntimeAgent().session.upsertSessionEntry({
storePath,
sessionKey,
entry: { sessionId, updatedAt: Date.now() },
});
});
afterEach(() => {
fs.rmSync(tempDir, { recursive: true, force: true });
});
it("rejects an archived session before running admitted work", async () => {
const runtime = createRuntimeAgent();
await runtime.session.patchSessionEntry({
storePath,
sessionKey,
update: () => ({ archivedAt: Date.now() }),
});
let ran = false;
await expect(
runtime.session.runWithWorkAdmission({ storePath, sessionKey }, async () => {
ran = true;
}),
).rejects.toThrow(`Session "${sessionKey}" is archived`);
expect(ran).toBe(false);
});
it("waits for a queued archive mutation and rejects the stale start", async () => {
const runtime = createRuntimeAgent();
const mutationStarted = createDeferred();
const releaseMutation = createDeferred();
const mutation = runExclusiveSessionLifecycleMutation({
scope: storePath,
identities: [sessionKey, sessionId],
prepare: async () => {
mutationStarted.resolve();
await releaseMutation.promise;
},
run: async () => {
await runtime.session.patchSessionEntry({
storePath,
sessionKey,
update: () => ({ archivedAt: Date.now() }),
});
},
});
await mutationStarted.promise;
const work = runtime.session.runWithWorkAdmission({ storePath, sessionKey }, async () => {});
releaseMutation.resolve();
await mutation;
await expect(work).rejects.toThrow(`Session "${sessionKey}" is archived`);
});
it("rejects a session replaced while work waits for lifecycle admission", async () => {
const runtime = createRuntimeAgent();
const mutationStarted = createDeferred();
const releaseMutation = createDeferred();
const mutation = runExclusiveSessionLifecycleMutation({
scope: storePath,
identities: [sessionKey, sessionId],
prepare: async () => {
mutationStarted.resolve();
await releaseMutation.promise;
},
run: async () => {
await runtime.session.upsertSessionEntry({
storePath,
sessionKey,
entry: { sessionId: "replacement-session", updatedAt: Date.now() },
});
},
});
await mutationStarted.promise;
const work = runtime.session.runWithWorkAdmission({ storePath, sessionKey }, async () => {});
releaseMutation.resolve();
await mutation;
await expect(work).rejects.toMatchObject({ code: "SESSION_WORK_START_CHANGED" });
});
it("admits fresh work and protects session creation inside the callback", async () => {
const runtime = createRuntimeAgent();
const freshKey = "agent:main:voice:fresh";
const freshId = "fresh-session-id";
await runtime.session.runWithWorkAdmission({ storePath, sessionKey: freshKey }, async () => {
await runtime.session.upsertSessionEntry({
storePath,
sessionKey: freshKey,
entry: { sessionId: freshId, updatedAt: Date.now() },
});
});
expect(runtime.session.getSessionEntry({ storePath, sessionKey: freshKey })?.sessionId).toBe(
freshId,
);
});
it("holds admission through the callback and relays lifecycle interruption", async () => {
const runtime = createRuntimeAgent();
const workStarted = createDeferred();
let admittedSignal: AbortSignal | undefined;
const work = runtime.session.runWithWorkAdmission({ storePath, sessionKey }, async (signal) => {
admittedSignal = signal;
workStarted.resolve();
await new Promise<void>((resolve) => {
signal.addEventListener("abort", () => resolve(), { once: true });
});
});
await workStarted.promise;
await interruptSessionWorkAdmissions({
scope: storePath,
identities: [sessionKey, sessionId],
});
await work;
expect(admittedSignal?.aborted).toBe(true);
});
});
|