60 lines
3.6 KiB
TypeScript
60 lines
3.6 KiB
TypeScript
import { closeElectronApp, expect, getStableWindow, test } from './fixtures/electron';
|
|
|
|
test.describe('Plugin Marketplace', () => {
|
|
test('opens the global catalog, searches, and reads detail through fixed Main routes', async ({ launchElectronApp }) => {
|
|
const app = await launchElectronApp({ skipSetup: true });
|
|
try {
|
|
const page = await getStableWindow(app);
|
|
await page.getByTestId('ai-module-option-programming').click();
|
|
await app.evaluate(({ ipcMain }) => {
|
|
const requests: string[] = [];
|
|
(globalThis as typeof globalThis & { __marketplaceE2E?: { requests: string[] } }).__marketplaceE2E = { requests };
|
|
ipcMain.removeHandler('hostapi:fetch');
|
|
ipcMain.handle('hostapi:fetch', async (_event, request: { path?: string }) => {
|
|
const requestPath = request.path ?? '';
|
|
requests.push(requestPath);
|
|
const item = {
|
|
pluginId: 'makelore.notes', title: '灵感笔记', summary: '整理项目灵感。', category: '效率', tags: ['笔记'],
|
|
providerDisplayName: 'MakeLore', runtimeKind: 'skill_only', runtimeStatus: 'enabled', acquisition: 'free',
|
|
usageBilling: 'included', includedOperationCount: 1, meteredOperationCount: 0, stableVersion: '1.0.0', betaVersion: null,
|
|
};
|
|
if (requestPath.startsWith('/api/coding/plugin-marketplace/catalog')) {
|
|
return { ok: true, data: { status: 200, ok: true, json: {
|
|
items: [item], nextCursor: null, total: 1, catalogGeneration: 1,
|
|
etag: '"plugins-1-tp-none"', pricingVersionId: null, stale: false, fetchedAt: 1,
|
|
} } };
|
|
}
|
|
if (requestPath === '/api/coding/plugin-marketplace/plugins/makelore.notes') {
|
|
return { ok: true, data: { status: 200, ok: true, json: {
|
|
...item, descriptionMarkdown: '详细介绍', permissions: ['读取项目名称'], operations: [],
|
|
stableRelease: { releaseId: 'release-1', pluginId: 'makelore.notes', version: '1.0.0' }, betaRelease: null,
|
|
etag: '"plugins-1-tp-none"', pricingVersionId: null, stale: false, fetchedAt: 1,
|
|
} } };
|
|
}
|
|
return { ok: false, error: { message: `Unexpected Host API request: ${requestPath}` } };
|
|
});
|
|
});
|
|
|
|
await page.getByTestId('sidebar-nav-plugin-marketplace').click();
|
|
await expect(page.getByTestId('plugin-marketplace-page')).toBeVisible();
|
|
await expect(page.getByRole('heading', { name: '灵感笔记' })).toBeVisible();
|
|
await page.getByRole('searchbox', { name: '搜索插件' }).fill('笔记');
|
|
await page.getByRole('button', { name: '搜索', exact: true }).click();
|
|
await page.getByRole('button', { name: '查看详情' }).click();
|
|
await expect(page.getByRole('heading', { name: '灵感笔记' }).last()).toBeVisible();
|
|
await expect(page.getByText('详细介绍')).toBeVisible();
|
|
|
|
const requests = await app.evaluate(() => (
|
|
(globalThis as typeof globalThis & { __marketplaceE2E?: { requests: string[] } }).__marketplaceE2E?.requests ?? []
|
|
));
|
|
expect(requests).toContain('/api/coding/plugin-marketplace/catalog?limit=24');
|
|
expect(requests).toContain('/api/coding/plugin-marketplace/catalog?query=%E7%AC%94%E8%AE%B0&limit=24');
|
|
expect(requests).toContain('/api/coding/plugin-marketplace/plugins/makelore.notes');
|
|
const marketplaceRequests = requests.filter((requestPath) => requestPath.startsWith('/api/coding/plugin-marketplace/'));
|
|
expect(JSON.stringify(marketplaceRequests)).not.toMatch(/account|admission|release_id|path=/i);
|
|
} finally {
|
|
await closeElectronApp(app);
|
|
}
|
|
});
|
|
});
|