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
271 lines
8.5 KiB
TypeScript
271 lines
8.5 KiB
TypeScript
/**
|
|
* @vitest-environment node
|
|
*/
|
|
import { envFlagsMock, workflowsUtilsMock } from '@sim/testing'
|
|
import { beforeEach, describe, expect, it, vi } from 'vitest'
|
|
|
|
const { mockCreateUserToolSchema, mockGetHighestPrioritySubscription } = vi.hoisted(() => ({
|
|
mockCreateUserToolSchema: vi.fn(() => ({ type: 'object', properties: {} })),
|
|
mockGetHighestPrioritySubscription: vi.fn(),
|
|
}))
|
|
|
|
vi.mock('@/lib/billing/core/subscription', () => ({
|
|
getHighestPrioritySubscription: mockGetHighestPrioritySubscription,
|
|
}))
|
|
|
|
vi.mock('@/lib/billing/plan-helpers', () => ({
|
|
isPaid: vi.fn(
|
|
(plan: string | null) => plan === 'pro' || plan === 'team' || plan === 'enterprise'
|
|
),
|
|
}))
|
|
|
|
vi.mock('@/lib/core/config/env-flags', () => envFlagsMock)
|
|
|
|
vi.mock('@/lib/mcp/utils', () => ({
|
|
createMcpToolId: vi.fn(),
|
|
}))
|
|
|
|
vi.mock('@/lib/workflows/utils', () => workflowsUtilsMock)
|
|
|
|
vi.mock('@/tools/registry', () => ({
|
|
tools: {
|
|
gmail_send: {
|
|
id: 'gmail_send',
|
|
name: 'Gmail Send',
|
|
description: 'Send emails using Gmail',
|
|
},
|
|
brandfetch_search: {
|
|
id: 'brandfetch_search',
|
|
name: 'Brandfetch Search',
|
|
description: 'Search for brands by company name',
|
|
},
|
|
// Catalog marks run_workflow as client-routed / clientExecutable; registry ToolConfig has no routing fields.
|
|
run_workflow: {
|
|
id: 'run_workflow',
|
|
name: 'Run Workflow',
|
|
description: 'Run a workflow from the client',
|
|
},
|
|
},
|
|
}))
|
|
|
|
vi.mock('@/tools/utils', () => ({
|
|
getLatestVersionTools: vi.fn((input) => input),
|
|
stripVersionSuffix: vi.fn((toolId: string) => toolId),
|
|
}))
|
|
|
|
vi.mock('@/lib/copilot/block-visibility', () => ({
|
|
getBlockVisibilityForCopilot: vi.fn(async () => ({
|
|
revealed: new Set<string>(),
|
|
disabled: new Set<string>(),
|
|
previewTagged: new Set<string>(),
|
|
})),
|
|
visibilitySignature: vi.fn(() => 'vis:none'),
|
|
}))
|
|
|
|
vi.mock('@/lib/copilot/integration-tools', () => ({
|
|
filterExposedIntegrationTools: vi.fn((tools: unknown[]) => tools),
|
|
getExposedIntegrationTools: vi.fn(() => [
|
|
{
|
|
toolId: 'gmail_send',
|
|
config: { id: 'gmail_send', name: 'Gmail Send', description: 'Send emails using Gmail' },
|
|
service: 'gmail',
|
|
operation: 'send',
|
|
},
|
|
{
|
|
toolId: 'brandfetch_search',
|
|
config: {
|
|
id: 'brandfetch_search',
|
|
name: 'Brandfetch Search',
|
|
description: 'Search for brands by company name',
|
|
},
|
|
service: 'brandfetch',
|
|
operation: 'search',
|
|
},
|
|
{
|
|
toolId: 'run_workflow',
|
|
config: {
|
|
id: 'run_workflow',
|
|
name: 'Run Workflow',
|
|
description: 'Run a workflow from the client',
|
|
},
|
|
service: 'run',
|
|
operation: 'workflow',
|
|
},
|
|
]),
|
|
}))
|
|
|
|
vi.mock('@/tools/params', () => ({
|
|
createUserToolSchema: mockCreateUserToolSchema,
|
|
}))
|
|
|
|
import {
|
|
buildCopilotRequestPayload,
|
|
buildIntegrationToolSchemas,
|
|
clearIntegrationToolSchemaCacheForTests,
|
|
} from './payload'
|
|
|
|
describe('buildIntegrationToolSchemas', () => {
|
|
beforeEach(() => {
|
|
vi.clearAllMocks()
|
|
clearIntegrationToolSchemaCacheForTests()
|
|
mockCreateUserToolSchema.mockReturnValue({ type: 'object', properties: {} })
|
|
})
|
|
|
|
it('appends the email footer prompt for free users', async () => {
|
|
mockGetHighestPrioritySubscription.mockResolvedValue(null)
|
|
|
|
const toolSchemas = await buildIntegrationToolSchemas('user-free')
|
|
const gmailTool = toolSchemas.find((tool) => tool.name === 'gmail_send')
|
|
|
|
expect(mockGetHighestPrioritySubscription).toHaveBeenCalledWith('user-free')
|
|
expect(gmailTool?.description).toContain('sent with sim ai')
|
|
})
|
|
|
|
it('does not append the email footer prompt for paid users', async () => {
|
|
mockGetHighestPrioritySubscription.mockResolvedValue({ plan: 'pro', status: 'active' })
|
|
|
|
const toolSchemas = await buildIntegrationToolSchemas('user-paid')
|
|
const gmailTool = toolSchemas.find((tool) => tool.name === 'gmail_send')
|
|
|
|
expect(mockGetHighestPrioritySubscription).toHaveBeenCalledWith('user-paid')
|
|
expect(gmailTool?.description).toBe('Send emails using Gmail')
|
|
})
|
|
|
|
it('still builds integration tools when subscription lookup fails', async () => {
|
|
mockGetHighestPrioritySubscription.mockRejectedValue(new Error('db unavailable'))
|
|
|
|
const toolSchemas = await buildIntegrationToolSchemas('user-error')
|
|
const gmailTool = toolSchemas.find((tool) => tool.name === 'gmail_send')
|
|
const brandfetchTool = toolSchemas.find((tool) => tool.name === 'brandfetch_search')
|
|
|
|
expect(mockGetHighestPrioritySubscription).toHaveBeenCalledWith('user-error')
|
|
expect(gmailTool?.description).toBe('Send emails using Gmail')
|
|
expect(brandfetchTool?.description).toBe('Search for brands by company name')
|
|
})
|
|
|
|
it('emits executeLocally for dynamic client tools only', async () => {
|
|
mockGetHighestPrioritySubscription.mockResolvedValue({ plan: 'pro', status: 'active' })
|
|
|
|
const toolSchemas = await buildIntegrationToolSchemas('user-client')
|
|
const gmailTool = toolSchemas.find((tool) => tool.name === 'gmail_send')
|
|
const runTool = toolSchemas.find((tool) => tool.name === 'run_workflow')
|
|
|
|
expect(gmailTool?.executeLocally).toBe(false)
|
|
expect(runTool?.executeLocally).toBe(true)
|
|
})
|
|
|
|
it('uses copilot-facing file schemas for integration tools', async () => {
|
|
mockGetHighestPrioritySubscription.mockResolvedValue({ plan: 'pro', status: 'active' })
|
|
|
|
await buildIntegrationToolSchemas('user-copilot')
|
|
|
|
expect(mockCreateUserToolSchema).toHaveBeenCalledWith(
|
|
expect.objectContaining({ id: 'gmail_send' }),
|
|
{ surface: 'copilot' }
|
|
)
|
|
expect(mockCreateUserToolSchema).toHaveBeenCalledWith(
|
|
expect.objectContaining({ id: 'brandfetch_search' }),
|
|
{ surface: 'copilot' }
|
|
)
|
|
})
|
|
|
|
it('briefly reuses built schemas for the same user and surface', async () => {
|
|
mockGetHighestPrioritySubscription.mockResolvedValue({ plan: 'pro', status: 'active' })
|
|
|
|
const first = await buildIntegrationToolSchemas('user-cache')
|
|
first[0].input_schema.mutated = true
|
|
const second = await buildIntegrationToolSchemas('user-cache')
|
|
|
|
expect(mockGetHighestPrioritySubscription).toHaveBeenCalledTimes(1)
|
|
expect(mockCreateUserToolSchema).toHaveBeenCalledTimes(3)
|
|
expect(second[0].input_schema).not.toHaveProperty('mutated')
|
|
})
|
|
})
|
|
|
|
describe('buildCopilotRequestPayload', () => {
|
|
beforeEach(() => {
|
|
vi.clearAllMocks()
|
|
})
|
|
|
|
it('passes workspaceContext through to the Go request payload', async () => {
|
|
const payload = await buildCopilotRequestPayload(
|
|
{
|
|
message: 'debug workspace',
|
|
userId: 'user-1',
|
|
userMessageId: 'msg-1',
|
|
mode: 'agent',
|
|
model: 'claude-opus-4-8',
|
|
workspaceId: 'ws-1',
|
|
workspaceContext: 'workspace inventory',
|
|
},
|
|
{ selectedModel: 'claude-opus-4-8' }
|
|
)
|
|
|
|
expect(payload).toEqual(
|
|
expect.objectContaining({
|
|
workspaceId: 'ws-1',
|
|
workspaceContext: 'workspace inventory',
|
|
})
|
|
)
|
|
})
|
|
|
|
it('passes user metadata through to the Go request payload', async () => {
|
|
const payload = await buildCopilotRequestPayload(
|
|
{
|
|
message: 'what time is it',
|
|
userId: 'user-1',
|
|
userMessageId: 'msg-1',
|
|
mode: 'agent',
|
|
model: 'claude-opus-4-8',
|
|
workspaceId: 'ws-1',
|
|
userTimezone: 'America/Los_Angeles',
|
|
userMetadata: {
|
|
name: 'Sid',
|
|
timezone: 'America/Los_Angeles',
|
|
},
|
|
},
|
|
{ selectedModel: 'claude-opus-4-8' }
|
|
)
|
|
|
|
expect(payload).toEqual(
|
|
expect.objectContaining({
|
|
userTimezone: 'America/Los_Angeles',
|
|
userMetadata: {
|
|
name: 'Sid',
|
|
timezone: 'America/Los_Angeles',
|
|
},
|
|
})
|
|
)
|
|
})
|
|
|
|
it('passes entitlements through and omits the field when empty', async () => {
|
|
const withEntitlements = await buildCopilotRequestPayload(
|
|
{
|
|
message: 'publish as a block',
|
|
userId: 'user-1',
|
|
userMessageId: 'msg-1',
|
|
mode: 'agent',
|
|
model: 'claude-opus-4-8',
|
|
workspaceId: 'ws-1',
|
|
entitlements: ['custom-blocks'],
|
|
},
|
|
{ selectedModel: 'claude-opus-4-8' }
|
|
)
|
|
expect(withEntitlements).toEqual(expect.objectContaining({ entitlements: ['custom-blocks'] }))
|
|
|
|
const withoutEntitlements = await buildCopilotRequestPayload(
|
|
{
|
|
message: 'publish as a block',
|
|
userId: 'user-1',
|
|
userMessageId: 'msg-1',
|
|
mode: 'agent',
|
|
model: 'claude-opus-4-8',
|
|
workspaceId: 'ws-1',
|
|
entitlements: [],
|
|
},
|
|
{ selectedModel: 'claude-opus-4-8' }
|
|
)
|
|
expect(withoutEntitlements).not.toHaveProperty('entitlements')
|
|
})
|
|
})
|