Files
simstudioai--sim/apps/sim/executor/handlers/pi/sim-tools.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

85 lines
2.9 KiB
TypeScript

/**
* @vitest-environment node
*/
import { beforeEach, describe, expect, it, vi } from 'vitest'
const { mockTransformBlockTool, mockExecuteTool } = vi.hoisted(() => ({
mockTransformBlockTool: vi.fn(),
mockExecuteTool: vi.fn(),
}))
vi.mock('@/providers/utils', () => ({ transformBlockTool: mockTransformBlockTool }))
vi.mock('@/tools', () => ({ executeTool: mockExecuteTool }))
vi.mock('@/tools/utils', () => ({ getTool: vi.fn() }))
vi.mock('@/tools/utils.server', () => ({ getToolAsync: vi.fn() }))
import { buildSimToolSpecs } from '@/executor/handlers/pi/sim-tools'
import type { ExecutionContext } from '@/executor/types'
const ctx = { workspaceId: 'ws-1' } as ExecutionContext
describe('buildSimToolSpecs', () => {
beforeEach(() => {
vi.clearAllMocks()
})
it('names the Pi tool with the snake_case tool id, not the human label', async () => {
// transformBlockTool returns a human label with a space, which the model
// provider rejects (tool names must match /^[a-zA-Z0-9_-]{1,128}$/).
mockTransformBlockTool.mockResolvedValue({
id: 'exa_search',
name: 'Exa Search',
description: 'Search the web',
params: {},
parameters: { type: 'object', properties: {} },
})
const specs = await buildSimToolSpecs(ctx, [
{ type: 'exa', operation: 'exa_search', usageControl: 'auto' },
])
expect(specs).toHaveLength(1)
expect(specs[0].name).toBe('exa_search')
expect(specs[0].name).toMatch(/^[a-zA-Z0-9_-]{1,128}$/)
})
it('skips mcp, custom, and usage-none tools without adapting them', async () => {
const specs = await buildSimToolSpecs(ctx, [
{ type: 'mcp', usageControl: 'auto' },
{ type: 'custom-tool', usageControl: 'auto' },
{ type: 'exa', usageControl: 'none' },
])
expect(specs).toHaveLength(0)
expect(mockTransformBlockTool).not.toHaveBeenCalled()
})
it('forwards a trusted _context that an LLM-supplied _context cannot override', async () => {
mockTransformBlockTool.mockResolvedValue({
id: 'exa_search',
name: 'Exa Search',
description: 'Search the web',
params: { apiKey: 'k' },
parameters: { type: 'object', properties: {} },
})
mockExecuteTool.mockResolvedValue({ success: true, output: 'ok' })
const trustedCtx = {
workspaceId: 'ws-1',
workflowId: 'wf-1',
userId: 'user-1',
} as ExecutionContext
const [spec] = await buildSimToolSpecs(trustedCtx, [
{ type: 'exa', operation: 'exa_search', usageControl: 'auto' },
])
// An attacker-influenced tool arg tries to spoof the execution context.
await spec.execute({ query: 'cats', _context: { userId: 'attacker', workspaceId: 'evil' } })
const [toolId, callParams] = mockExecuteTool.mock.calls[0]
expect(toolId).toBe('exa_search')
expect(callParams._context.userId).toBe('user-1')
expect(callParams._context.workspaceId).toBe('ws-1')
expect(callParams._context.workflowId).toBe('wf-1')
})
})