Files
simstudioai--sim/apps/sim/lib/copilot/tools/server/workflow/query-logs.test.ts
T
wehub-resource-sync d25d482dc2
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
Publish CLI Package / publish-npm (push) Has been cancelled
Publish Python SDK / publish-pypi (push) Has been cancelled
Publish TypeScript SDK / publish-npm (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:20:55 +08:00

157 lines
5.1 KiB
TypeScript

/**
* @vitest-environment node
*/
import { beforeEach, describe, expect, it, vi } from 'vitest'
const { listLogsMock, fetchLogDetailMock, toOverviewMock, toFullMock, grepSpansMock } = vi.hoisted(
() => ({
listLogsMock: vi.fn(),
fetchLogDetailMock: vi.fn(),
toOverviewMock: vi.fn(),
toFullMock: vi.fn(),
grepSpansMock: vi.fn(),
})
)
vi.mock('@/lib/logs/list-logs', () => ({ listLogs: listLogsMock }))
vi.mock('@/lib/logs/fetch-log-detail', () => ({ fetchLogDetail: fetchLogDetailMock }))
vi.mock('@/lib/logs/log-views', () => ({
toOverview: toOverviewMock,
toFull: toFullMock,
grepSpans: grepSpansMock,
}))
vi.mock('@/lib/execution/payloads/large-execution-value', () => ({
collectLargeValueExecutionIds: vi.fn(() => []),
collectLargeValueKeys: vi.fn(() => []),
}))
import { queryLogsServerTool } from './query-logs'
const ctx = { userId: 'user-1', workspaceId: 'ws-1' }
function detail(overrides: Record<string, unknown> = {}) {
return {
executionId: 'exec-1',
workflowId: 'wf-1',
status: 'success',
trigger: 'manual',
cost: { total: 0.1 },
executionData: { totalDuration: 1234, traceSpans: [{ id: 's1' }] },
...overrides,
}
}
beforeEach(() => {
vi.clearAllMocks()
})
describe('queryLogsServerTool', () => {
it('list view delegates to listLogs with workspaceId and no view field', async () => {
listLogsMock.mockResolvedValue({ data: [{ id: 'log-1' }], nextCursor: null })
const result = await queryLogsServerTool.execute(
{ view: 'list', sortBy: 'date', sortOrder: 'desc', limit: 100 } as any,
ctx
)
expect(listLogsMock).toHaveBeenCalledTimes(1)
const [params, userId] = listLogsMock.mock.calls[0]
expect(userId).toBe('user-1')
expect(params.workspaceId).toBe('ws-1')
expect(params).not.toHaveProperty('view')
expect(result).toEqual({ data: [{ id: 'log-1' }], nextCursor: null })
})
it('overview view returns the projected span tree', async () => {
fetchLogDetailMock.mockResolvedValue(detail())
toOverviewMock.mockReturnValue([{ id: 's1', name: 'A' }])
const result: any = await queryLogsServerTool.execute(
{ view: 'overview', executionId: 'exec-1' } as any,
ctx
)
expect(result.executionId).toBe('exec-1')
expect(result.durationMs).toBe(1234)
expect(result.spans).toEqual([{ id: 's1', name: 'A' }])
expect(toFullMock).not.toHaveBeenCalled()
})
it('full view returns materialized spans', async () => {
fetchLogDetailMock.mockResolvedValue(detail())
toFullMock.mockResolvedValue([{ id: 's1', input: { a: 1 } }])
const result: any = await queryLogsServerTool.execute(
{ view: 'full', executionId: 'exec-1', blockId: 'blk-1' } as any,
ctx
)
expect(toFullMock).toHaveBeenCalledWith(expect.anything(), expect.anything(), {
blockId: 'blk-1',
blockName: undefined,
})
expect(result.spans).toEqual([{ id: 's1', input: { a: 1 } }])
expect(result.truncated).toBe(false)
})
it('full view falls back to overview when the result is too large', async () => {
fetchLogDetailMock.mockResolvedValue(detail())
const huge = 'x'.repeat(600 * 1024)
toFullMock.mockResolvedValue([{ id: 's1', output: huge }])
toOverviewMock.mockReturnValue([{ id: 's1', name: 'A' }])
const result: any = await queryLogsServerTool.execute(
{ view: 'full', executionId: 'exec-1' } as any,
ctx
)
expect(result.truncated).toBe(true)
expect(result.note).toContain('too large')
expect(result.spans).toEqual([{ id: 's1', name: 'A' }])
})
it('pattern runs grepSpans and returns matches', async () => {
fetchLogDetailMock.mockResolvedValue(detail())
grepSpansMock.mockResolvedValue({
matches: [{ spanId: 's1', name: 'A', field: 'output', snippet: '…timeout…' }],
truncated: false,
})
const result: any = await queryLogsServerTool.execute(
{ view: 'full', executionId: 'exec-1', pattern: 'timeout' } as any,
ctx
)
expect(grepSpansMock).toHaveBeenCalledTimes(1)
expect(result.pattern).toBe('timeout')
expect(result.matches).toHaveLength(1)
expect(toFullMock).not.toHaveBeenCalled()
})
it('returns not-found for an unknown executionId', async () => {
fetchLogDetailMock.mockResolvedValue(null)
const result: any = await queryLogsServerTool.execute(
{ view: 'overview', executionId: 'missing' } as any,
ctx
)
expect(result.ok).toBe(false)
expect(result.error).toContain('missing')
})
it('throws when unauthenticated', async () => {
await expect(
queryLogsServerTool.execute({ view: 'overview', executionId: 'exec-1' } as any, {} as any)
).rejects.toThrow('Unauthorized')
})
it('rejects overview/full without executionId via inputSchema', () => {
const schema = queryLogsServerTool.inputSchema!
expect(schema.safeParse({ view: 'overview', workspaceId: 'ws-1' }).success).toBe(false)
expect(schema.safeParse({ view: 'full', workspaceId: 'ws-1' }).success).toBe(false)
expect(
schema.safeParse({ view: 'overview', workspaceId: 'ws-1', executionId: 'e1' }).success
).toBe(true)
})
})