-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin-loader.test.ts
More file actions
423 lines (363 loc) · 13.9 KB
/
Copy pathplugin-loader.test.ts
File metadata and controls
423 lines (363 loc) · 13.9 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
411
412
413
414
415
416
417
418
419
420
421
422
423
import { afterEach, describe, expect, test } from 'bun:test';
import { existsSync, mkdirSync, mkdtempSync, rmSync, writeFileSync } from 'node:fs';
import { join } from 'node:path';
import type { Context } from 'cordis';
import type { GatewayConfig } from './config.js';
import type { DatabaseService, PluginDatabase, PluginRegistryEntry } from '@tradinggoose/db';
import { installPlugin, uninstallPlugin, loadUserPlugins } from './plugin-loader.js';
const TEMP_DIRS: string[] = [];
function makeTempDir(): string {
const dir = mkdtempSync(join(process.cwd(), '.tmp-tradinggoose-gateway-'));
TEMP_DIRS.push(dir);
return dir;
}
function writePlugin(pluginDir: string, name: string, source = 'export default function plugin() {}'): string {
const dir = join(pluginDir, name);
mkdirSync(dir, { recursive: true });
writeFileSync(join(dir, 'index.ts'), source);
writeFileSync(
join(dir, 'manifest.ts'),
`
export const manifest = {
id: '${name}',
displayName: '${name}',
version: '0.1.0',
description: '${name} plugin.',
provides: [],
consumes: [],
};
`,
);
return dir;
}
function writeManifest(pluginPath: string, source: string): void {
writeFileSync(join(pluginPath, 'manifest.ts'), source);
}
function makeConfig(rootDir: string, overrides: Partial<GatewayConfig> = {}): GatewayConfig {
return {
databaseUrl: '',
databaseMode: 'embedded-postgres',
embeddedPostgresDataDir: join(rootDir, 'data', '_gateway', 'postgres'),
embeddedPostgresPort: 54329,
logLevel: 'info',
pluginDir: join(rootDir, 'plugins'),
dataDir: join(rootDir, 'data'),
...overrides,
};
}
async function withMutedConsole<T>(fn: () => Promise<T> | T): Promise<T> {
const originalLog = console.log;
const originalWarn = console.warn;
const originalError = console.error;
console.log = (() => {}) as typeof console.log;
console.warn = (() => {}) as typeof console.warn;
console.error = (() => {}) as typeof console.error;
try {
return await fn();
} finally {
console.log = originalLog;
console.warn = originalWarn;
console.error = originalError;
}
}
/** In-memory mock of DatabaseService for tests (no real PostgreSQL needed). */
function mockDb(): DatabaseService & {
_plugins: PluginRegistryEntry[];
_schemas: string[];
_migrations: Array<{ plugin: string; dir: string }>;
_errors: unknown[];
} {
const plugins: PluginRegistryEntry[] = [];
const schemas: string[] = [];
const migrations: Array<{ plugin: string; dir: string }> = [];
const errors: unknown[] = [];
return {
_plugins: plugins,
_schemas: schemas,
_migrations: migrations,
_errors: errors,
async getEnabledPlugins() {
return plugins.filter((p) => p.enabled);
},
async getAllPlugins() {
return [...plugins];
},
async getPlugin(name: string) {
return plugins.find((p) => p.name === name) ?? null;
},
async registerPlugin(name: string, source: string) {
const existing = plugins.find((p) => p.name === name);
if (existing) {
existing.source = source;
existing.enabled = true;
} else {
plugins.push({ name, source, enabled: true, installed_at: new Date().toISOString(), updated_at: new Date().toISOString() });
}
},
async unregisterPlugin(name: string) {
const idx = plugins.findIndex((p) => p.name === name);
if (idx !== -1) plugins.splice(idx, 1);
},
async setPluginEnabled(name: string, enabled: boolean) {
const entry = plugins.find((p) => p.name === name);
if (entry) entry.enabled = enabled;
},
async createPluginSchema(pluginName: string) {
schemas.push(pluginName);
},
async dropPluginSchema(pluginName: string) {
const idx = schemas.indexOf(pluginName);
if (idx !== -1) schemas.splice(idx, 1);
},
async runPluginMigrations(pluginName: string, migrationsDir: string) {
migrations.push({ plugin: pluginName, dir: migrationsDir });
},
createPluginDb(pluginName: string) {
return {
schema: pluginName.replace(/[^a-zA-Z0-9_]/g, '_'),
drizzle() {
return {} as any;
},
} as PluginDatabase;
},
async logError(input: unknown) {
errors.push(input);
},
} as unknown as DatabaseService & {
_plugins: PluginRegistryEntry[];
_schemas: string[];
_migrations: Array<{ plugin: string; dir: string }>;
_errors: unknown[];
};
}
function makeMockContext(
db: DatabaseService,
options?: {
registrations?: Array<{ name: string; dataDir: string }>;
providedDbs?: PluginDatabase[];
plugins?: unknown[];
},
): Context {
const scope = {
get(name: string) {
if (name === 'dbRoot') return db;
return undefined;
},
isolate() {
return scope;
},
extend() {
return scope;
},
provide(name: string, value?: unknown) {
if (name === 'db' && value) {
options?.providedDbs?.push(value as PluginDatabase);
}
return () => {};
},
plugin(plugin: unknown, pluginOptions: { name: string; dataDir: string }) {
options?.plugins?.push(plugin);
options?.registrations?.push(pluginOptions);
},
};
return scope as unknown as Context;
}
afterEach(() => {
for (const dir of TEMP_DIRS.splice(0)) {
rmSync(dir, { recursive: true, force: true });
}
});
describe("loadUserPlugins", () => {
test('returns empty when no plugins are registered', async () => {
const rootDir = makeTempDir();
const db = mockDb();
const config = makeConfig(rootDir);
const ctx = makeMockContext(db);
const loaded = await withMutedConsole(() => loadUserPlugins(ctx, config));
expect(loaded).toEqual([]);
expect(existsSync(join(rootDir, 'plugins'))).toBe(true);
});
test('loads registered plugins, provisions data dirs, and runs schema setup', async () => {
const rootDir = makeTempDir();
const pluginDir = join(rootDir, 'plugins');
const dataDir = join(rootDir, 'data');
const alphaDir = writePlugin(pluginDir, '_alpha');
writePlugin(pluginDir, 'z-user');
mkdirSync(join(alphaDir, 'migrations'), { recursive: true });
writeFileSync(join(alphaDir, 'migrations', '0001_initial.sql'), 'select 1;');
const db = mockDb();
await db.registerPlugin('_alpha', 'local');
await db.registerPlugin('z-user', 'local');
const registrations: Array<{ name: string; dataDir: string }> = [];
const providedDbs: PluginDatabase[] = [];
const ctx = makeMockContext(db, { registrations, providedDbs });
const config = makeConfig(rootDir, { pluginDir, dataDir });
const loaded = await withMutedConsole(() => loadUserPlugins(ctx, config));
expect(db._errors).toEqual([]);
expect(loaded.map((p) => p.name)).toEqual(['_alpha', 'z-user']);
expect(db._schemas).toEqual(['_alpha', 'z-user']);
expect(db._migrations.map((m) => m.plugin)).toEqual(['_alpha', 'z-user']);
expect(registrations.map((r) => r.name)).toEqual(['_alpha', 'z-user']);
expect(providedDbs.map((entry) => entry.schema)).toEqual(['_alpha', 'z_user']);
expect(existsSync(join(dataDir, '_alpha'))).toBe(true);
expect(existsSync(join(dataDir, 'z-user'))).toBe(true);
});
test('skips registered plugins whose folders are missing', async () => {
const rootDir = makeTempDir();
const db = mockDb();
await db.registerPlugin('missing', 'local');
const ctx = makeMockContext(db);
const config = makeConfig(rootDir);
const loaded = await withMutedConsole(() => loadUserPlugins(ctx, config));
expect(loaded).toEqual([]);
expect(db._schemas).toEqual([]); // schema not created for missing plugin
});
test('continues loading when one plugin import fails', async () => {
const rootDir = makeTempDir();
const pluginDir = join(rootDir, 'plugins');
writePlugin(pluginDir, 'broken', 'throw new Error("boom");');
writePlugin(pluginDir, 'working');
const db = mockDb();
await db.registerPlugin('broken', 'local');
await db.registerPlugin('working', 'local');
const ctx = makeMockContext(db);
const config = makeConfig(rootDir, { pluginDir, dataDir: join(rootDir, 'data') });
const loaded = await withMutedConsole(() => loadUserPlugins(ctx, config));
expect(loaded.map((p) => p.name)).toEqual(['working']);
});
test('loads user plugins in deterministic name order regardless of registry order', async () => {
const rootDir = makeTempDir();
const pluginDir = join(rootDir, 'plugins');
const providerDir = writePlugin(pluginDir, 'llm-openai');
const consumerDir = writePlugin(pluginDir, 'openclaw-runtime');
writeManifest(providerDir, `
export const manifest = {
id: 'llm-openai',
displayName: 'OpenAI LLM Provider',
version: '0.1.0',
description: 'OpenAI provider.',
provides: ['llm.chat/v1'],
consumes: [],
};
`);
writeManifest(consumerDir, `
export const manifest = {
id: 'openclaw-runtime',
displayName: 'OpenClaw Runtime',
version: '0.1.0',
description: 'OpenClaw runtime.',
provides: [],
consumes: ['llm.chat/v1'],
};
`);
const db = mockDb();
await db.registerPlugin('openclaw-runtime', 'local');
await db.registerPlugin('llm-openai', 'local');
const registrations: Array<{ name: string; dataDir: string }> = [];
const ctx = makeMockContext(db, { registrations });
const config = makeConfig(rootDir, { pluginDir, dataDir: join(rootDir, 'data') });
const loaded = await withMutedConsole(() => loadUserPlugins(ctx, config));
expect(loaded.map((plugin) => plugin.name)).toEqual(['llm-openai', 'openclaw-runtime']);
expect(registrations.map((registration) => registration.name)).toEqual(['llm-openai', 'openclaw-runtime']);
});
test('does not block consumer plugins when no provider is installed yet', async () => {
const rootDir = makeTempDir();
const pluginDir = join(rootDir, 'plugins');
const consumerDir = writePlugin(pluginDir, 'openclaw-runtime');
writeManifest(consumerDir, `
export const manifest = {
id: 'openclaw-runtime',
displayName: 'OpenClaw Runtime',
version: '0.1.0',
description: 'OpenClaw runtime.',
provides: [],
consumes: ['llm.chat/v1'],
};
`);
const db = mockDb();
await db.registerPlugin('openclaw-runtime', 'local');
const ctx = makeMockContext(db);
const config = makeConfig(rootDir, { pluginDir, dataDir: join(rootDir, 'data') });
const loaded = await withMutedConsole(() => loadUserPlugins(ctx, config));
expect(loaded.map((plugin) => plugin.name)).toEqual(['openclaw-runtime']);
});
test('preserves named plugin metadata like inject on default exports', async () => {
const rootDir = makeTempDir();
const pluginDir = join(rootDir, 'plugins');
writePlugin(
pluginDir,
'needs-contracts',
`
export const inject = ['contracts'];
export default function plugin() {}
`,
);
const db = mockDb();
await db.registerPlugin('needs-contracts', 'local');
const seenPlugins: unknown[] = [];
const ctx = makeMockContext(db, { plugins: seenPlugins });
const config = makeConfig(rootDir, { pluginDir, dataDir: join(rootDir, 'data') });
await withMutedConsole(() => loadUserPlugins(ctx, config));
expect(seenPlugins).toHaveLength(1);
expect((seenPlugins[0] as { inject?: string[] }).inject).toEqual(['contracts']);
});
test('shadows ctx.db with a plugin-scoped database facade', async () => {
const rootDir = makeTempDir();
const pluginDir = join(rootDir, 'plugins');
writePlugin(pluginDir, 'broker-alpaca');
const db = mockDb();
await db.registerPlugin('broker-alpaca', 'local');
const providedDbs: PluginDatabase[] = [];
const ctx = makeMockContext(db, { providedDbs });
const config = makeConfig(rootDir, { pluginDir, dataDir: join(rootDir, 'data') });
await withMutedConsole(() => loadUserPlugins(ctx, config));
expect(providedDbs).toHaveLength(1);
expect(providedDbs[0]?.schema).toBe('broker_alpaca');
});
});
describe('installPlugin', () => {
test('rejects non-cloneable source', async () => {
const rootDir = makeTempDir();
const db = mockDb();
const config = makeConfig(rootDir);
const result = await installPlugin('local', db, config);
expect(result.success).toBe(false);
expect(result.error).toContain('Cannot install');
});
test('rejects duplicate install', async () => {
const rootDir = makeTempDir();
const db = mockDb();
await db.registerPlugin('my-plugin', 'github:user/tg-plugin-my-plugin');
const config = makeConfig(rootDir);
const result = await installPlugin('github:user/tg-plugin-my-plugin', db, config);
expect(result.success).toBe(false);
expect(result.error).toContain('already registered');
});
});
describe('uninstallPlugin', () => {
test('removes plugin from DB, files, and data', async () => {
const rootDir = makeTempDir();
const pluginDir = join(rootDir, 'plugins');
const dataDir = join(rootDir, 'data');
writePlugin(pluginDir, 'doomed');
mkdirSync(join(dataDir, 'doomed'), { recursive: true });
writeFileSync(join(dataDir, 'doomed', '.env'), 'API_KEY=val');
const db = mockDb();
await db.registerPlugin('doomed', 'local');
db._schemas.push('doomed');
const config = makeConfig(rootDir, { pluginDir, dataDir });
const result = await withMutedConsole(() => uninstallPlugin('doomed', db, config));
expect(result.success).toBe(true);
expect(db._plugins).toEqual([]);
expect(existsSync(join(pluginDir, 'doomed'))).toBe(false);
expect(existsSync(join(dataDir, 'doomed'))).toBe(false);
});
test('returns error for unknown plugin', async () => {
const db = mockDb();
const rootDir = makeTempDir();
const config = makeConfig(rootDir);
const result = await uninstallPlugin('nope', db, config);
expect(result.success).toBe(false);
expect(result.error).toContain('not registered');
});
});