forked from CortexReach/memory-lancedb-pro
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin-manifest-regression.mjs
More file actions
410 lines (386 loc) · 12.5 KB
/
plugin-manifest-regression.mjs
File metadata and controls
410 lines (386 loc) · 12.5 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
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
import assert from "node:assert/strict";
import { readFileSync } from "node:fs";
import { mkdtempSync, rmSync } from "node:fs";
import http from "node:http";
import Module from "node:module";
import { tmpdir } from "node:os";
import path from "node:path";
import jitiFactory from "jiti";
process.env.NODE_PATH = [
process.env.NODE_PATH,
"/opt/homebrew/lib/node_modules/openclaw/node_modules",
"/opt/homebrew/lib/node_modules",
].filter(Boolean).join(":");
Module._initPaths();
const jiti = jitiFactory(import.meta.url, { interopDefault: true });
const plugin = jiti("../index.ts");
const manifest = JSON.parse(
readFileSync(new URL("../openclaw.plugin.json", import.meta.url), "utf8"),
);
const pkg = JSON.parse(
readFileSync(new URL("../package.json", import.meta.url), "utf8"),
);
function createMockApi(pluginConfig, options = {}) {
return {
pluginConfig,
hooks: {},
toolFactories: {},
logger: {
info() {},
warn() {},
error() {},
debug() {},
},
resolvePath(value) {
return value;
},
registerTool(toolOrFactory, meta) {
this.toolFactories[meta.name] =
typeof toolOrFactory === "function" ? toolOrFactory : () => toolOrFactory;
},
registerCli() {},
registerService(service) {
options.services?.push(service);
},
on(name, handler) {
this.hooks[name] = handler;
},
registerHook(name, handler) {
this.hooks[name] = handler;
},
};
}
for (const key of [
"smartExtraction",
"extractMinMessages",
"extractMaxChars",
"llm",
"autoRecallMaxItems",
"autoRecallMaxChars",
"autoRecallPerItemMaxChars",
]) {
assert.ok(
Object.prototype.hasOwnProperty.call(manifest.configSchema.properties, key),
`configSchema should declare ${key}`,
);
}
assert.ok(
Object.prototype.hasOwnProperty.call(manifest.configSchema.properties.llm.properties, "auth"),
"configSchema should declare llm.auth",
);
assert.ok(
Object.prototype.hasOwnProperty.call(manifest.configSchema.properties.llm.properties, "oauthPath"),
"configSchema should declare llm.oauthPath",
);
assert.ok(
Object.prototype.hasOwnProperty.call(manifest.configSchema.properties.llm.properties, "oauthProvider"),
"configSchema should declare llm.oauthProvider",
);
assert.equal(
manifest.configSchema.properties.autoRecallMinRepeated.default,
8,
"autoRecallMinRepeated schema default should be conservative",
);
assert.equal(
manifest.configSchema.properties.extractMinMessages.default,
4,
"extractMinMessages schema default should reduce aggressive auto-capture",
);
assert.equal(
manifest.configSchema.properties.autoCapture.default,
true,
"autoCapture schema default should match runtime default",
);
assert.equal(
manifest.configSchema.properties.embedding.properties.chunking.default,
true,
"embedding.chunking schema default should match runtime default",
);
assert.equal(
manifest.configSchema.properties.embedding.properties.omitDimensions?.type,
"boolean",
"embedding.omitDimensions should be declared in the plugin schema",
);
assert.equal(
manifest.configSchema.properties.embedding.properties.requestDimensions?.type,
"integer",
"embedding.requestDimensions should be declared in the plugin schema",
);
assert.equal(
manifest.configSchema.properties.sessionMemory.properties.enabled.default,
false,
"sessionMemory.enabled schema default should match runtime default",
);
assert.ok(
manifest.configSchema.properties.retrieval.properties.rerankProvider.enum.includes("tei"),
"rerankProvider schema should include tei",
);
assert.equal(
manifest.version,
pkg.version,
"openclaw.plugin.json version should stay aligned with package.json",
);
assert.equal(
pkg.dependencies["apache-arrow"],
"18.1.0",
"package.json should declare apache-arrow directly so OpenClaw plugin installs do not miss the LanceDB runtime dependency",
);
const workDir = mkdtempSync(path.join(tmpdir(), "memory-plugin-regression-"));
const services = [];
const embeddingRequests = [];
try {
const api = createMockApi(
{
dbPath: path.join(workDir, "db"),
autoRecall: false,
embedding: {
provider: "openai-compatible",
apiKey: "dummy",
model: "text-embedding-3-small",
baseURL: "http://127.0.0.1:9/v1",
dimensions: 1536,
},
},
{ services },
);
plugin.register(api);
assert.equal(services.length, 1, "plugin should register its background service");
assert.equal(typeof api.hooks.agent_end, "function", "autoCapture should remain enabled by default");
assert.equal(api.hooks["command:new"], undefined, "sessionMemory should stay disabled by default");
await assert.doesNotReject(
services[0].stop(),
"service stop should not throw when no access tracker is configured",
);
const sessionDefaultApi = createMockApi({
dbPath: path.join(workDir, "db-session-default"),
autoCapture: false,
autoRecall: false,
sessionMemory: {},
embedding: {
provider: "openai-compatible",
apiKey: "dummy",
model: "text-embedding-3-small",
baseURL: "http://127.0.0.1:9/v1",
dimensions: 1536,
},
});
plugin.register(sessionDefaultApi);
assert.equal(
sessionDefaultApi.hooks["command:new"],
undefined,
"sessionMemory:{} should not implicitly enable the /new hook",
);
const sessionEnabledApi = createMockApi({
dbPath: path.join(workDir, "db-session-enabled"),
autoCapture: false,
autoRecall: false,
sessionMemory: { enabled: true },
embedding: {
provider: "openai-compatible",
apiKey: "dummy",
model: "text-embedding-3-small",
baseURL: "http://127.0.0.1:9/v1",
dimensions: 1536,
},
});
plugin.register(sessionEnabledApi);
assert.equal(
typeof sessionEnabledApi.hooks.before_reset,
"function",
"sessionMemory.enabled=true should register the async before_reset hook",
);
assert.equal(
sessionEnabledApi.hooks["command:new"],
undefined,
"sessionMemory.enabled=true should not register the blocking command:new hook",
);
const longText = `${"Long embedding payload. ".repeat(420)}tail`;
const threshold = 6000;
const embeddingServer = http.createServer(async (req, res) => {
if (req.method !== "POST" || req.url !== "/v1/embeddings") {
res.writeHead(404);
res.end();
return;
}
const chunks = [];
for await (const chunk of req) chunks.push(chunk);
const payload = JSON.parse(Buffer.concat(chunks).toString("utf8"));
embeddingRequests.push(payload);
const inputs = Array.isArray(payload.input) ? payload.input : [payload.input];
if (inputs.some((input) => String(input).length > threshold)) {
res.writeHead(400, { "Content-Type": "application/json" });
res.end(JSON.stringify({
error: {
message: "context length exceeded for mock embedding endpoint",
type: "invalid_request_error",
},
}));
return;
}
res.writeHead(200, { "Content-Type": "application/json" });
res.end(JSON.stringify({
object: "list",
data: inputs.map((_, index) => ({
object: "embedding",
index,
embedding: [0.5, 0.5, 0.5, 0.5],
})),
model: payload.model || "mock-embedding-model",
usage: {
prompt_tokens: 0,
total_tokens: 0,
},
}));
});
await new Promise((resolve) => embeddingServer.listen(0, "127.0.0.1", resolve));
const embeddingPort = embeddingServer.address().port;
const embeddingBaseURL = `http://127.0.0.1:${embeddingPort}/v1`;
try {
const chunkingOffApi = createMockApi({
dbPath: path.join(workDir, "db-chunking-off"),
autoCapture: false,
autoRecall: false,
embedding: {
provider: "openai-compatible",
apiKey: "dummy",
model: "text-embedding-3-small",
baseURL: embeddingBaseURL,
dimensions: 4,
chunking: false,
},
});
plugin.register(chunkingOffApi);
const chunkingOffTool = chunkingOffApi.toolFactories.memory_store({
agentId: "main",
sessionKey: "agent:main:test",
});
const chunkingOffResult = await chunkingOffTool.execute("tool-1", {
text: longText,
scope: "global",
});
assert.equal(
chunkingOffResult.details.error,
"store_failed",
"embedding.chunking=false should let long-document embedding fail",
);
const chunkingOnApi = createMockApi({
dbPath: path.join(workDir, "db-chunking-on"),
autoCapture: false,
autoRecall: false,
embedding: {
provider: "openai-compatible",
apiKey: "dummy",
model: "text-embedding-3-small",
baseURL: embeddingBaseURL,
dimensions: 4,
chunking: true,
},
});
plugin.register(chunkingOnApi);
const chunkingOnTool = chunkingOnApi.toolFactories.memory_store({
agentId: "main",
sessionKey: "agent:main:test",
});
const chunkingOnResult = await chunkingOnTool.execute("tool-2", {
text: longText,
scope: "global",
});
assert.equal(
chunkingOnResult.details.action,
"created",
"embedding.chunking=true should recover from long-document embedding errors",
);
const withDimensionsApi = createMockApi({
dbPath: path.join(workDir, "db-with-dimensions"),
autoCapture: false,
autoRecall: false,
embedding: {
provider: "openai-compatible",
apiKey: "dummy",
model: "text-embedding-3-small",
baseURL: embeddingBaseURL,
dimensions: 4,
},
});
plugin.register(withDimensionsApi);
const withDimensionsTool = withDimensionsApi.toolFactories.memory_store({
agentId: "main",
sessionKey: "agent:main:test",
});
const requestCountBeforeWithDimensions = embeddingRequests.length;
await withDimensionsTool.execute("tool-3", {
text: "dimensions should not be sent by default",
scope: "global",
});
const withDimensionsRequest = embeddingRequests.at(requestCountBeforeWithDimensions);
assert.equal(
Object.prototype.hasOwnProperty.call(withDimensionsRequest ?? {}, "dimensions"),
false,
"embedding.dimensions should be used for internal schema sizing, not forwarded by default",
);
const withRequestDimensionsApi = createMockApi({
dbPath: path.join(workDir, "db-with-request-dimensions"),
autoCapture: false,
autoRecall: false,
embedding: {
provider: "openai-compatible",
apiKey: "dummy",
model: "text-embedding-3-small",
baseURL: embeddingBaseURL,
dimensions: 4,
requestDimensions: 4,
},
});
plugin.register(withRequestDimensionsApi);
const withRequestDimensionsTool = withRequestDimensionsApi.toolFactories.memory_store({
agentId: "main",
sessionKey: "agent:main:test",
});
const requestCountBeforeRequestDimensions = embeddingRequests.length;
await withRequestDimensionsTool.execute("tool-3b", {
text: "requestDimensions should be forwarded",
scope: "global",
});
const withRequestDimensionsRequest = embeddingRequests.at(requestCountBeforeRequestDimensions);
assert.equal(
withRequestDimensionsRequest?.dimensions,
4,
"embedding.requestDimensions should be forwarded to embedding requests",
);
const omitDimensionsApi = createMockApi({
dbPath: path.join(workDir, "db-omit-dimensions"),
autoCapture: false,
autoRecall: false,
embedding: {
provider: "openai-compatible",
apiKey: "dummy",
model: "text-embedding-3-small",
baseURL: embeddingBaseURL,
dimensions: 4,
requestDimensions: 4,
omitDimensions: true,
},
});
plugin.register(omitDimensionsApi);
const omitDimensionsTool = omitDimensionsApi.toolFactories.memory_store({
agentId: "main",
sessionKey: "agent:main:test",
});
const requestCountBeforeOmitDimensions = embeddingRequests.length;
await omitDimensionsTool.execute("tool-4", {
text: "dimensions should be omitted when configured",
scope: "global",
});
const omitDimensionsRequest = embeddingRequests.at(requestCountBeforeOmitDimensions);
assert.equal(
Object.prototype.hasOwnProperty.call(omitDimensionsRequest, "dimensions"),
false,
"embedding.omitDimensions=true should omit dimensions from embedding requests even when requestDimensions is set",
);
} finally {
await new Promise((resolve) => embeddingServer.close(resolve));
}
} finally {
rmSync(workDir, { recursive: true, force: true });
}
console.log("OK: plugin manifest regression test passed");