d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
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
145 lines
4.7 KiB
TypeScript
145 lines
4.7 KiB
TypeScript
/**
|
|
* @vitest-environment node
|
|
*/
|
|
import { describe, expect, it } from 'vitest'
|
|
import type { ConsoleEntry } from './types'
|
|
import {
|
|
normalizeConsoleOutput,
|
|
safeConsoleStringify,
|
|
TERMINAL_CONSOLE_LIMITS,
|
|
trimConsoleEntries,
|
|
} from './utils'
|
|
|
|
function makeEntry(id: string, executionId: string, workflowId = 'wf-1'): ConsoleEntry {
|
|
return {
|
|
id,
|
|
executionId,
|
|
workflowId,
|
|
blockId: `block-${id}`,
|
|
blockName: `Block ${id}`,
|
|
blockType: 'function',
|
|
executionOrder: Number.parseInt(id.replace(/\D/g, ''), 10) || 0,
|
|
timestamp: '2025-01-01T00:00:00.000Z',
|
|
}
|
|
}
|
|
|
|
describe('terminal console utils', () => {
|
|
it('safely stringifies circular values', () => {
|
|
const circular: { name: string; self?: unknown } = { name: 'root' }
|
|
circular.self = circular
|
|
|
|
const result = safeConsoleStringify(circular)
|
|
|
|
expect(result).toContain('[Circular]')
|
|
expect(result).toContain('"name": "root"')
|
|
})
|
|
|
|
it('preserves small objects nested at the agent tool-call depth', () => {
|
|
const output = normalizeConsoleOutput({
|
|
toolCalls: {
|
|
list: [
|
|
{
|
|
name: 'table_query_rows',
|
|
result: {
|
|
rows: [{ data: { deal_id: 'DEAL-001', client_name: 'Jennifer Martinez' } }],
|
|
},
|
|
},
|
|
],
|
|
},
|
|
}) as {
|
|
toolCalls: { list: Array<{ result: { rows: Array<{ data: Record<string, unknown> }> } }> }
|
|
}
|
|
|
|
const row = output.toolCalls.list[0].result.rows[0]
|
|
expect(row).not.toBe('[Truncated object]')
|
|
expect(row.data.deal_id).toBe('DEAL-001')
|
|
expect(row.data.client_name).toBe('Jennifer Martinez')
|
|
})
|
|
|
|
it('resolves true circular references without infinite recursion', () => {
|
|
const circular: { name: string; self?: unknown } = { name: 'root' }
|
|
circular.self = circular
|
|
|
|
const output = normalizeConsoleOutput(circular) as { name: string; self: unknown }
|
|
|
|
expect(output.name).toBe('root')
|
|
expect(output.self).toBe('[Circular]')
|
|
})
|
|
|
|
it('renders a value shared across sibling positions fully (not circular)', () => {
|
|
const shared = { x: 1 }
|
|
const output = normalizeConsoleOutput({ a: shared, b: shared }) as {
|
|
a: { x: number }
|
|
b: { x: number }
|
|
}
|
|
|
|
expect(output.a).toEqual({ x: 1 })
|
|
expect(output.b).toEqual({ x: 1 })
|
|
})
|
|
|
|
it('truncates structures nested beyond MAX_DEPTH as a backstop', () => {
|
|
let deep: Record<string, unknown> = { value: 'leaf' }
|
|
for (let i = 0; i < TERMINAL_CONSOLE_LIMITS.MAX_DEPTH + 2; i++) {
|
|
deep = { nested: deep }
|
|
}
|
|
|
|
const serialized = safeConsoleStringify(normalizeConsoleOutput(deep))
|
|
|
|
expect(serialized).toContain('[Truncated object]')
|
|
expect(serialized).not.toContain('leaf')
|
|
})
|
|
|
|
it('truncates oversized nested strings in console output', () => {
|
|
const output = normalizeConsoleOutput({
|
|
stdout: 'x'.repeat(TERMINAL_CONSOLE_LIMITS.MAX_STRING_LENGTH + 100),
|
|
})
|
|
|
|
expect(output?.stdout).toContain('[truncated 100 chars]')
|
|
})
|
|
|
|
it('caps oversized normalized payloads with a preview object', () => {
|
|
const output = normalizeConsoleOutput({
|
|
a: 'x'.repeat(100_000),
|
|
b: 'y'.repeat(100_000),
|
|
c: 'z'.repeat(100_000),
|
|
d: 'q'.repeat(100_000),
|
|
e: 'r'.repeat(100_000),
|
|
f: 's'.repeat(100_000),
|
|
}) as Record<string, unknown>
|
|
|
|
expect(output.__simTruncated).toBe(true)
|
|
expect(typeof output.__simPreview).toBe('string')
|
|
expect(typeof output.__simByteLength).toBe('number')
|
|
})
|
|
|
|
it('preserves the newest oversized execution by trimming within it first', () => {
|
|
const newestEntries = Array.from({ length: 5_100 }, (_, index) =>
|
|
makeEntry(`new-${index}`, 'exec-new')
|
|
)
|
|
const olderEntries = Array.from({ length: 25 }, (_, index) =>
|
|
makeEntry(`old-${index}`, 'exec-old')
|
|
)
|
|
const trimmed = trimConsoleEntries([...newestEntries, ...olderEntries])
|
|
|
|
expect(trimmed).toHaveLength(TERMINAL_CONSOLE_LIMITS.MAX_ENTRIES_PER_WORKFLOW)
|
|
expect(trimmed.every((entry) => entry.executionId === 'exec-new')).toBe(true)
|
|
expect(trimmed[0].id).toBe('new-0')
|
|
expect(trimmed.at(-1)?.id).toBe(`new-${TERMINAL_CONSOLE_LIMITS.MAX_ENTRIES_PER_WORKFLOW - 1}`)
|
|
})
|
|
|
|
it('keeps older whole executions when they still fit after the newest run', () => {
|
|
const newestEntries = Array.from({ length: 4_990 }, (_, index) =>
|
|
makeEntry(`new-${index}`, 'exec-new')
|
|
)
|
|
const olderEntries = Array.from({ length: 10 }, (_, index) =>
|
|
makeEntry(`old-${index}`, 'exec-old')
|
|
)
|
|
|
|
const trimmed = trimConsoleEntries([...newestEntries, ...olderEntries])
|
|
|
|
expect(trimmed).toHaveLength(5_000)
|
|
expect(trimmed.filter((entry) => entry.executionId === 'exec-new')).toHaveLength(4_990)
|
|
expect(trimmed.filter((entry) => entry.executionId === 'exec-old')).toHaveLength(10)
|
|
})
|
|
})
|