forked from pwrdrvr/openclaw-codex-app-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstate.test.ts
More file actions
228 lines (217 loc) · 6.56 KB
/
state.test.ts
File metadata and controls
228 lines (217 loc) · 6.56 KB
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
import os from "node:os";
import path from "node:path";
import fs from "node:fs/promises";
import { describe, expect, it } from "vitest";
import { PluginStateStore, buildPluginSessionKey } from "./state.js";
async function makeStoreDir(): Promise<string> {
return await fs.mkdtemp(path.join(os.tmpdir(), "oc-codex-plugin-"));
}
async function makeStore(dir?: string): Promise<PluginStateStore> {
const resolvedDir = dir ?? (await makeStoreDir());
const store = new PluginStateStore(resolvedDir);
await store.load();
return store;
}
describe("state store", () => {
it("persists bindings and callbacks", async () => {
const dir = await makeStoreDir();
const store = await makeStore(dir);
await store.upsertPendingBind({
conversation: {
channel: "telegram",
accountId: "default",
conversationId: "124",
},
threadId: "thread-pending",
workspaceDir: "/tmp/pending",
threadTitle: "Pending thread",
updatedAt: Date.now(),
});
await store.upsertBinding({
conversation: {
channel: "telegram",
accountId: "default",
conversationId: "123",
},
sessionKey: buildPluginSessionKey("thread-1"),
threadId: "thread-1",
workspaceDir: "/tmp/work",
contextUsage: {
totalTokens: 9_800,
contextWindow: 258_000,
remainingPercent: 96,
},
updatedAt: Date.now(),
});
const callback = await store.putCallback({
kind: "resume-thread",
conversation: {
channel: "telegram",
accountId: "default",
conversationId: "123",
},
threadId: "thread-1",
workspaceDir: "/tmp/work",
syncTopic: true,
});
const promptCallback = await store.putCallback({
kind: "run-prompt",
conversation: {
channel: "telegram",
accountId: "default",
conversationId: "123",
},
prompt: "Implement the plan.",
workspaceDir: "/tmp/work",
collaborationMode: {
mode: "default",
settings: {
model: "openai/gpt-5.4",
developerInstructions: null,
},
},
});
const modelCallback = await store.putCallback({
kind: "set-model",
conversation: {
channel: "telegram",
accountId: "default",
conversationId: "123",
},
model: "gpt-5.2-codex",
});
const replyCallback = await store.putCallback({
kind: "reply-text",
conversation: {
channel: "telegram",
accountId: "default",
conversationId: "123",
},
text: "Okay. Staying in plan mode.",
});
const reloaded = await makeStore(dir);
expect(reloaded.listBindings()).toHaveLength(1);
expect(reloaded.listBindings()[0]?.contextUsage?.totalTokens).toBe(9_800);
expect(reloaded.getPendingBind({
channel: "telegram",
accountId: "default",
conversationId: "124",
})?.threadId).toBe("thread-pending");
expect(reloaded.getCallback(callback.token)?.kind).toBe("resume-thread");
const resumeCallback = reloaded.getCallback(callback.token);
expect(resumeCallback?.kind).toBe("resume-thread");
expect(resumeCallback && resumeCallback.kind === "resume-thread" ? resumeCallback.syncTopic : undefined).toBe(true);
expect(reloaded.getCallback(promptCallback.token)?.kind).toBe("run-prompt");
const runPrompt = reloaded.getCallback(promptCallback.token);
expect(runPrompt && runPrompt.kind === "run-prompt" ? runPrompt.collaborationMode : undefined).toEqual({
mode: "default",
settings: {
model: "openai/gpt-5.4",
developerInstructions: null,
},
});
expect(reloaded.getCallback(modelCallback.token)?.kind).toBe("set-model");
expect(reloaded.getCallback(replyCallback.token)?.kind).toBe("reply-text");
});
it("removes pending requests and related callbacks", async () => {
const store = await makeStore();
await store.upsertPendingRequest({
requestId: "req-1",
conversation: {
channel: "discord",
accountId: "default",
conversationId: "chan-1",
},
threadId: "thread-1",
workspaceDir: "/tmp/work",
state: {
requestId: "req-1",
options: ["yes"],
expiresAt: Date.now() + 10_000,
},
updatedAt: Date.now(),
});
const callback = await store.putCallback({
kind: "pending-input",
conversation: {
channel: "discord",
accountId: "default",
conversationId: "chan-1",
},
requestId: "req-1",
actionIndex: 0,
});
const questionnaireCallback = await store.putCallback({
kind: "pending-questionnaire",
conversation: {
channel: "discord",
accountId: "default",
conversationId: "chan-1",
},
requestId: "req-1",
questionIndex: 0,
action: "select",
optionIndex: 0,
});
await store.removePendingRequest("req-1");
expect(store.getPendingRequestById("req-1")).toBeNull();
expect(store.getCallback(callback.token)).toBeNull();
expect(store.getCallback(questionnaireCallback.token)).toBeNull();
});
it("clears a pending bind when the binding is finalized", async () => {
const store = await makeStore();
await store.upsertPendingBind({
conversation: {
channel: "discord",
accountId: "default",
conversationId: "user:1",
},
threadId: "thread-1",
workspaceDir: "/tmp/work",
updatedAt: Date.now(),
});
await store.upsertBinding({
conversation: {
channel: "discord",
accountId: "default",
conversationId: "user:1",
},
sessionKey: buildPluginSessionKey("thread-1"),
threadId: "thread-1",
workspaceDir: "/tmp/work",
updatedAt: Date.now(),
});
expect(
store.getPendingBind({
channel: "discord",
accountId: "default",
conversationId: "user:1",
}),
).toBeNull();
});
it("clears a pending bind when the conversation is explicitly removed", async () => {
const store = await makeStore();
await store.upsertPendingBind({
conversation: {
channel: "telegram",
accountId: "default",
conversationId: "123",
},
threadId: "thread-1",
workspaceDir: "/tmp/work",
updatedAt: Date.now(),
});
await store.removeBinding({
channel: "telegram",
accountId: "default",
conversationId: "123",
});
expect(
store.getPendingBind({
channel: "telegram",
accountId: "default",
conversationId: "123",
}),
).toBeNull();
});
});