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
105 lines
2.9 KiB
TypeScript
105 lines
2.9 KiB
TypeScript
/**
|
|
* @vitest-environment node
|
|
*/
|
|
import { permissionsMock, permissionsMockFns } from '@sim/testing'
|
|
import { beforeEach, describe, expect, it, vi } from 'vitest'
|
|
|
|
const { mockSelect, mockTransaction, mockArchiveWorkflowsForWorkspace } = vi.hoisted(() => ({
|
|
mockSelect: vi.fn(),
|
|
mockTransaction: vi.fn(),
|
|
mockArchiveWorkflowsForWorkspace: vi.fn(),
|
|
}))
|
|
|
|
const mockGetWorkspaceWithOwner = permissionsMockFns.mockGetWorkspaceWithOwner
|
|
|
|
vi.mock('@sim/db', () => ({
|
|
db: {
|
|
select: mockSelect,
|
|
transaction: mockTransaction,
|
|
},
|
|
}))
|
|
|
|
vi.mock('@/lib/workflows/lifecycle', () => ({
|
|
archiveWorkflowsForWorkspace: (...args: unknown[]) => mockArchiveWorkflowsForWorkspace(...args),
|
|
}))
|
|
|
|
vi.mock('@/lib/workspaces/permissions/utils', () => permissionsMock)
|
|
|
|
import { archiveWorkspace } from './lifecycle'
|
|
|
|
function createUpdateChain() {
|
|
return {
|
|
set: vi.fn().mockReturnValue({
|
|
where: vi.fn().mockResolvedValue([]),
|
|
}),
|
|
}
|
|
}
|
|
|
|
describe('workspace lifecycle', () => {
|
|
beforeEach(() => {
|
|
vi.clearAllMocks()
|
|
})
|
|
|
|
it('archives workspace and dependent resources', async () => {
|
|
mockGetWorkspaceWithOwner.mockResolvedValue({
|
|
id: 'workspace-1',
|
|
name: 'Workspace 1',
|
|
ownerId: 'user-1',
|
|
archivedAt: null,
|
|
})
|
|
mockArchiveWorkflowsForWorkspace.mockResolvedValue(2)
|
|
mockSelect.mockReturnValue({
|
|
from: vi.fn().mockReturnValue({
|
|
where: vi.fn().mockResolvedValue([{ id: 'server-1' }]),
|
|
}),
|
|
})
|
|
|
|
const tx = {
|
|
select: vi.fn().mockReturnValue({
|
|
from: vi.fn().mockReturnValue({
|
|
where: vi.fn().mockResolvedValue([{ id: 'kb-1' }]),
|
|
}),
|
|
}),
|
|
update: vi.fn().mockImplementation(() => createUpdateChain()),
|
|
delete: vi.fn().mockImplementation(() => ({
|
|
where: vi.fn().mockResolvedValue([]),
|
|
})),
|
|
}
|
|
mockTransaction.mockImplementation(async (callback: (trx: typeof tx) => Promise<void>) =>
|
|
callback(tx)
|
|
)
|
|
|
|
const result = await archiveWorkspace('workspace-1', { requestId: 'req-1' })
|
|
|
|
expect(result).toEqual({
|
|
archived: true,
|
|
workspaceName: 'Workspace 1',
|
|
})
|
|
expect(mockArchiveWorkflowsForWorkspace).toHaveBeenCalledWith('workspace-1', {
|
|
requestId: 'req-1',
|
|
})
|
|
expect(tx.update).toHaveBeenCalledTimes(10)
|
|
expect(tx.delete).toHaveBeenCalledTimes(1)
|
|
})
|
|
|
|
it('is idempotent for already archived workspaces', async () => {
|
|
mockGetWorkspaceWithOwner.mockResolvedValue({
|
|
id: 'workspace-1',
|
|
name: 'Workspace 1',
|
|
ownerId: 'user-1',
|
|
archivedAt: new Date(),
|
|
})
|
|
|
|
const result = await archiveWorkspace('workspace-1', { requestId: 'req-1' })
|
|
|
|
expect(result).toEqual({
|
|
archived: false,
|
|
workspaceName: 'Workspace 1',
|
|
})
|
|
expect(mockArchiveWorkflowsForWorkspace).toHaveBeenCalledWith('workspace-1', {
|
|
requestId: 'req-1',
|
|
})
|
|
expect(mockTransaction).not.toHaveBeenCalled()
|
|
})
|
|
})
|