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
102 lines
3.8 KiB
TypeScript
102 lines
3.8 KiB
TypeScript
/**
|
|
* @vitest-environment node
|
|
*/
|
|
import { describe, expect, it } from 'vitest'
|
|
import type { TableSchema } from '@/lib/table/types'
|
|
import {
|
|
buildForkBlockIdResolver,
|
|
deriveForkBlockId,
|
|
} from '@/ee/workspace-forking/lib/remap/block-identity'
|
|
import { remapForkTableWorkflowGroups } from '@/ee/workspace-forking/lib/remap/remap-table-groups'
|
|
|
|
describe('remapForkTableWorkflowGroups', () => {
|
|
it('remaps a manual group workflowId and outputs[].blockId to child ids', () => {
|
|
const map = new Map([['src-wf', 'child-wf']])
|
|
const schema: TableSchema = {
|
|
columns: [{ id: 'col_1', name: 'Out', type: 'string', workflowGroupId: 'g1' }],
|
|
workflowGroups: [
|
|
{
|
|
id: 'g1',
|
|
workflowId: 'src-wf',
|
|
outputs: [{ blockId: 'src-block', path: 'out', columnName: 'col_1' }],
|
|
},
|
|
],
|
|
}
|
|
const result = remapForkTableWorkflowGroups(schema, map)
|
|
const group = result.workflowGroups?.[0]
|
|
expect(group?.workflowId).toBe('child-wf')
|
|
expect(group?.outputs[0].blockId).toBe(deriveForkBlockId('child-wf', 'src-block'))
|
|
expect(group?.outputs[0].columnName).toBe('col_1')
|
|
expect(result.columns[0].id).toBe('col_1')
|
|
expect(result.columns[0].workflowGroupId).toBe('g1')
|
|
})
|
|
|
|
// Promote threads its persisted-pair resolver: a paired block resolves to the pair's target id
|
|
// (on push, the parent's ORIGINAL id - never the derive); an unpaired block falls back to the
|
|
// derive, matching the workflow write path.
|
|
it('prefers a provided block-id resolver (persisted pair) over the derive, deriving unpaired blocks', () => {
|
|
const map = new Map([['src-wf', 'child-wf']])
|
|
const schema: TableSchema = {
|
|
columns: [],
|
|
workflowGroups: [
|
|
{
|
|
id: 'g1',
|
|
workflowId: 'src-wf',
|
|
outputs: [
|
|
{ blockId: 'src-block', path: 'out', columnName: 'col_1' },
|
|
{ blockId: 'src-unpaired', path: 'out2', columnName: 'col_2' },
|
|
],
|
|
},
|
|
],
|
|
}
|
|
const resolver = buildForkBlockIdResolver(true, {
|
|
parentToChild: new Map([
|
|
['src-block', { targetBlockId: 'original-parent-block', targetWorkflowId: 'child-wf' }],
|
|
]),
|
|
childToParent: new Map(),
|
|
})
|
|
const result = remapForkTableWorkflowGroups(schema, map, resolver)
|
|
const outputs = result.workflowGroups?.[0].outputs
|
|
expect(outputs?.[0].blockId).toBe('original-parent-block')
|
|
expect(outputs?.[1].blockId).toBe(deriveForkBlockId('child-wf', 'src-unpaired'))
|
|
})
|
|
|
|
it('drops a group whose backing workflow was not copied and clears its column wiring', () => {
|
|
const schema: TableSchema = {
|
|
columns: [{ id: 'col_1', name: 'Out', type: 'string', workflowGroupId: 'g1' }],
|
|
workflowGroups: [
|
|
{
|
|
id: 'g1',
|
|
workflowId: 'missing-wf',
|
|
outputs: [{ blockId: 'b', path: 'p', columnName: 'col_1' }],
|
|
},
|
|
],
|
|
}
|
|
const result = remapForkTableWorkflowGroups(schema, new Map())
|
|
expect(result.workflowGroups).toHaveLength(0)
|
|
expect(result.columns[0].workflowGroupId).toBeUndefined()
|
|
expect(result.columns[0].id).toBe('col_1')
|
|
})
|
|
|
|
it('leaves enrichment groups (empty workflowId) untouched', () => {
|
|
const schema: TableSchema = {
|
|
columns: [],
|
|
workflowGroups: [
|
|
{
|
|
id: 'g1',
|
|
workflowId: '',
|
|
enrichmentId: 'enr',
|
|
outputs: [{ blockId: '', path: '', columnName: 'col_1', outputId: 'o' }],
|
|
},
|
|
],
|
|
}
|
|
const result = remapForkTableWorkflowGroups(schema, new Map([['src-wf', 'child-wf']]))
|
|
expect(result.workflowGroups?.[0]).toEqual(schema.workflowGroups?.[0])
|
|
})
|
|
|
|
it('returns the schema unchanged when there are no groups', () => {
|
|
const schema: TableSchema = { columns: [{ id: 'col_1', name: 'A', type: 'string' }] }
|
|
expect(remapForkTableWorkflowGroups(schema, new Map())).toBe(schema)
|
|
})
|
|
})
|