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
217 lines
6.4 KiB
TypeScript
217 lines
6.4 KiB
TypeScript
/**
|
|
* @vitest-environment node
|
|
*
|
|
* Tests for the exported field-analysis helpers in serializer/index.ts
|
|
* (collectBlockFieldIssues / extractBlockParams) — the single source of truth
|
|
* shared by the serializer's required-field validation and the copilot lint.
|
|
*/
|
|
import { blocksMock, toolsUtilsMock } from '@sim/testing/mocks'
|
|
import { describe, expect, it, vi } from 'vitest'
|
|
|
|
const { svcConfig } = vi.hoisted(() => ({ svcConfig: { value: null as any } }))
|
|
|
|
vi.mock('@/tools/utils', () => toolsUtilsMock)
|
|
vi.mock('@/blocks', () => ({
|
|
...blocksMock,
|
|
getBlock: (type: string) => (type === 'svc' ? svcConfig.value : blocksMock.getBlock(type)),
|
|
}))
|
|
|
|
import { collectBlockFieldIssues, extractBlockParams } from '@/serializer/index'
|
|
|
|
function block(overrides: Record<string, any> = {}) {
|
|
return {
|
|
id: 'b1',
|
|
type: 'x',
|
|
name: 'My Block',
|
|
enabled: true,
|
|
position: { x: 0, y: 0 },
|
|
subBlocks: {},
|
|
outputs: {},
|
|
data: {},
|
|
...overrides,
|
|
} as any
|
|
}
|
|
|
|
function config(subBlocks: any[], overrides: Record<string, any> = {}) {
|
|
return {
|
|
name: 'X',
|
|
category: 'tools',
|
|
tools: { access: [] },
|
|
subBlocks,
|
|
...overrides,
|
|
} as any
|
|
}
|
|
|
|
describe('collectBlockFieldIssues', () => {
|
|
it('reports a missing required field (active mode empty)', () => {
|
|
const cfg = config([{ id: 'apiKey', title: 'API Key', type: 'short-input', required: true }])
|
|
const issues = collectBlockFieldIssues(block({ subBlocks: { apiKey: { value: '' } } }), cfg, {})
|
|
expect(issues.missingRequiredFields).toEqual(['API Key'])
|
|
expect(issues.inactiveModeValues).toEqual([])
|
|
})
|
|
|
|
it('does not report a required field that is set', () => {
|
|
const cfg = config([{ id: 'apiKey', title: 'API Key', type: 'short-input', required: true }])
|
|
const issues = collectBlockFieldIssues(
|
|
block({ subBlocks: { apiKey: { value: 'sk-123' } } }),
|
|
cfg,
|
|
{ apiKey: 'sk-123' }
|
|
)
|
|
expect(issues.missingRequiredFields).toEqual([])
|
|
})
|
|
|
|
it('skips disabled blocks', () => {
|
|
const cfg = config([{ id: 'apiKey', title: 'API Key', type: 'short-input', required: true }])
|
|
const issues = collectBlockFieldIssues(block({ enabled: false }), cfg, {})
|
|
expect(issues).toEqual({ missingRequiredFields: [], inactiveModeValues: [] })
|
|
})
|
|
|
|
it('skips trigger-mode blocks', () => {
|
|
const cfg = config([{ id: 'apiKey', title: 'API Key', type: 'short-input', required: true }])
|
|
const issues = collectBlockFieldIssues(block({ triggerMode: true }), cfg, {})
|
|
expect(issues).toEqual({ missingRequiredFields: [], inactiveModeValues: [] })
|
|
})
|
|
|
|
it('only flags a condition-gated required field when its condition is met', () => {
|
|
const cfg = config([
|
|
{ id: 'mode', type: 'dropdown' },
|
|
{
|
|
id: 'topic',
|
|
title: 'Topic',
|
|
type: 'short-input',
|
|
required: { field: 'mode', value: 'advanced' },
|
|
},
|
|
])
|
|
|
|
const inactive = collectBlockFieldIssues(
|
|
block({ subBlocks: { mode: { value: 'basic' } } }),
|
|
cfg,
|
|
{ mode: 'basic' }
|
|
)
|
|
expect(inactive.missingRequiredFields).toEqual([])
|
|
|
|
const active = collectBlockFieldIssues(
|
|
block({ subBlocks: { mode: { value: 'advanced' } } }),
|
|
cfg,
|
|
{ mode: 'advanced' }
|
|
)
|
|
expect(active.missingRequiredFields).toEqual(['Topic'])
|
|
})
|
|
|
|
it('flags a credential value stranded on the inactive member', () => {
|
|
const cfg = config([
|
|
{
|
|
id: 'credential',
|
|
title: 'Account',
|
|
type: 'oauth-input',
|
|
canonicalParamId: 'cred',
|
|
mode: 'basic',
|
|
required: true,
|
|
},
|
|
{
|
|
id: 'manualCredential',
|
|
title: 'Account',
|
|
type: 'short-input',
|
|
canonicalParamId: 'cred',
|
|
mode: 'advanced',
|
|
required: true,
|
|
},
|
|
])
|
|
|
|
// canonicalModes forces 'basic', but the value lives on the advanced member.
|
|
const issues = collectBlockFieldIssues(
|
|
block({
|
|
advancedMode: false,
|
|
data: { canonicalModes: { cred: 'basic' } },
|
|
subBlocks: { credential: { value: '' }, manualCredential: { value: 'cred_123' } },
|
|
}),
|
|
cfg,
|
|
{ cred: '' }
|
|
)
|
|
|
|
expect(issues.inactiveModeValues).toEqual([
|
|
{
|
|
canonicalId: 'cred',
|
|
activeMemberId: 'credential',
|
|
inactiveMemberId: 'manualCredential',
|
|
kind: 'credential',
|
|
},
|
|
])
|
|
// The active (basic) member is empty + required -> also a missing field.
|
|
expect(issues.missingRequiredFields).toEqual(['Account'])
|
|
})
|
|
|
|
it('does not flag a credential value on the correct active member', () => {
|
|
const cfg = config([
|
|
{
|
|
id: 'credential',
|
|
title: 'Account',
|
|
type: 'oauth-input',
|
|
canonicalParamId: 'cred',
|
|
mode: 'basic',
|
|
required: true,
|
|
},
|
|
{
|
|
id: 'manualCredential',
|
|
title: 'Account',
|
|
type: 'short-input',
|
|
canonicalParamId: 'cred',
|
|
mode: 'advanced',
|
|
required: true,
|
|
},
|
|
])
|
|
|
|
// No override: an empty basic + filled advanced resolves to 'advanced', so
|
|
// the value is on the active member and nothing is stranded.
|
|
const issues = collectBlockFieldIssues(
|
|
block({
|
|
advancedMode: false,
|
|
subBlocks: { credential: { value: '' }, manualCredential: { value: 'cred_123' } },
|
|
}),
|
|
cfg,
|
|
{ cred: 'cred_123' }
|
|
)
|
|
|
|
expect(issues.inactiveModeValues).toEqual([])
|
|
expect(issues.missingRequiredFields).toEqual([])
|
|
})
|
|
})
|
|
|
|
describe('extractBlockParams', () => {
|
|
it('returns {} for subflow containers', () => {
|
|
expect(extractBlockParams(block({ type: 'loop' }))).toEqual({})
|
|
expect(extractBlockParams(block({ type: 'parallel' }))).toEqual({})
|
|
})
|
|
|
|
it('resolves a canonical pair to its canonical id (advanced value wins when basic empty)', () => {
|
|
svcConfig.value = config([
|
|
{
|
|
id: 'credential',
|
|
title: 'Account',
|
|
type: 'oauth-input',
|
|
canonicalParamId: 'cred',
|
|
mode: 'basic',
|
|
},
|
|
{
|
|
id: 'manualCredential',
|
|
title: 'Account',
|
|
type: 'short-input',
|
|
canonicalParamId: 'cred',
|
|
mode: 'advanced',
|
|
},
|
|
])
|
|
|
|
const params = extractBlockParams(
|
|
block({
|
|
type: 'svc',
|
|
advancedMode: false,
|
|
subBlocks: { credential: { value: '' }, manualCredential: { value: 'cred_123' } },
|
|
})
|
|
)
|
|
|
|
expect(params.cred).toBe('cred_123')
|
|
expect(params.credential).toBeUndefined()
|
|
expect(params.manualCredential).toBeUndefined()
|
|
})
|
|
})
|