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
362 lines
11 KiB
TypeScript
362 lines
11 KiB
TypeScript
/**
|
|
* Tests for workflow variables API route
|
|
* Tests the optimized permissions and caching system
|
|
*
|
|
* @vitest-environment node
|
|
*/
|
|
import {
|
|
auditMock,
|
|
hybridAuthMockFns,
|
|
workflowAuthzMockFns,
|
|
workflowsUtilsMock,
|
|
} from '@sim/testing'
|
|
import { NextRequest } from 'next/server'
|
|
import { beforeEach, describe, expect, it, vi } from 'vitest'
|
|
import { getWorkflowVariablesContract } from '@/lib/api/contracts/workflows'
|
|
|
|
vi.mock('@sim/audit', () => auditMock)
|
|
|
|
vi.mock('@/lib/workflows/utils', () => workflowsUtilsMock)
|
|
|
|
import { GET, POST } from '@/app/api/workflows/[id]/variables/route'
|
|
|
|
describe('Workflow Variables API Route', () => {
|
|
beforeEach(() => {
|
|
vi.clearAllMocks()
|
|
})
|
|
|
|
describe('GET /api/workflows/[id]/variables', () => {
|
|
it('should return 401 when user is not authenticated', async () => {
|
|
hybridAuthMockFns.mockCheckSessionOrInternalAuth.mockResolvedValueOnce({
|
|
success: false,
|
|
error: 'Authentication required',
|
|
})
|
|
|
|
const req = new NextRequest('http://localhost:3000/api/workflows/workflow-123/variables')
|
|
const params = Promise.resolve({ id: 'workflow-123' })
|
|
|
|
const response = await GET(req, { params })
|
|
|
|
expect(response.status).toBe(401)
|
|
const data = await response.json()
|
|
expect(data.error).toBe('Unauthorized')
|
|
})
|
|
|
|
it('should return 404 when workflow does not exist', async () => {
|
|
hybridAuthMockFns.mockCheckSessionOrInternalAuth.mockResolvedValueOnce({
|
|
success: true,
|
|
userId: 'user-123',
|
|
authType: 'session',
|
|
})
|
|
workflowAuthzMockFns.mockAuthorizeWorkflowByWorkspacePermission.mockResolvedValueOnce({
|
|
allowed: false,
|
|
status: 404,
|
|
message: 'Workflow not found',
|
|
workflow: null,
|
|
workspacePermission: null,
|
|
})
|
|
|
|
const req = new NextRequest('http://localhost:3000/api/workflows/nonexistent/variables')
|
|
const params = Promise.resolve({ id: 'nonexistent' })
|
|
|
|
const response = await GET(req, { params })
|
|
|
|
expect(response.status).toBe(404)
|
|
const data = await response.json()
|
|
expect(data.error).toBe('Workflow not found')
|
|
})
|
|
|
|
it('should allow access when user has workspace permission', async () => {
|
|
const mockWorkflow = {
|
|
id: 'workflow-123',
|
|
userId: 'user-123',
|
|
workspaceId: 'workspace-456',
|
|
variables: {
|
|
'var-1': { id: 'var-1', name: 'test', type: 'string', value: 'hello' },
|
|
},
|
|
}
|
|
|
|
hybridAuthMockFns.mockCheckSessionOrInternalAuth.mockResolvedValueOnce({
|
|
success: true,
|
|
userId: 'user-123',
|
|
authType: 'session',
|
|
})
|
|
workflowAuthzMockFns.mockAuthorizeWorkflowByWorkspacePermission.mockResolvedValueOnce({
|
|
allowed: true,
|
|
status: 200,
|
|
workflow: mockWorkflow,
|
|
workspacePermission: 'admin',
|
|
})
|
|
|
|
const req = new NextRequest('http://localhost:3000/api/workflows/workflow-123/variables')
|
|
const params = Promise.resolve({ id: 'workflow-123' })
|
|
|
|
const response = await GET(req, { params })
|
|
|
|
expect(response.status).toBe(200)
|
|
const data = await response.json()
|
|
expect(data.data).toEqual({
|
|
'var-1': {
|
|
id: 'var-1',
|
|
name: 'test',
|
|
type: 'string',
|
|
value: 'hello',
|
|
workflowId: 'workflow-123',
|
|
},
|
|
})
|
|
const parsed = getWorkflowVariablesContract.response.schema.parse(data)
|
|
expect(parsed.data['var-1'].workflowId).toBe('workflow-123')
|
|
})
|
|
|
|
it('should allow access when user has workspace permissions', async () => {
|
|
const mockWorkflow = {
|
|
id: 'workflow-123',
|
|
userId: 'other-user',
|
|
workspaceId: 'workspace-456',
|
|
variables: {
|
|
'var-1': { id: 'var-1', name: 'test', type: 'string', value: 'hello' },
|
|
},
|
|
}
|
|
|
|
hybridAuthMockFns.mockCheckSessionOrInternalAuth.mockResolvedValueOnce({
|
|
success: true,
|
|
userId: 'user-123',
|
|
authType: 'session',
|
|
})
|
|
workflowAuthzMockFns.mockAuthorizeWorkflowByWorkspacePermission.mockResolvedValueOnce({
|
|
allowed: true,
|
|
status: 200,
|
|
workflow: mockWorkflow,
|
|
workspacePermission: 'read',
|
|
})
|
|
|
|
const req = new NextRequest('http://localhost:3000/api/workflows/workflow-123/variables')
|
|
const params = Promise.resolve({ id: 'workflow-123' })
|
|
|
|
const response = await GET(req, { params })
|
|
|
|
expect(response.status).toBe(200)
|
|
const data = await response.json()
|
|
// GET stamps `workflowId` from the path param on each variable.
|
|
expect(data.data).toEqual({
|
|
'var-1': {
|
|
id: 'var-1',
|
|
name: 'test',
|
|
type: 'string',
|
|
value: 'hello',
|
|
workflowId: 'workflow-123',
|
|
},
|
|
})
|
|
})
|
|
|
|
it('should deny access when user has no workspace permissions', async () => {
|
|
const mockWorkflow = {
|
|
id: 'workflow-123',
|
|
userId: 'other-user',
|
|
workspaceId: 'workspace-456',
|
|
variables: {},
|
|
}
|
|
|
|
hybridAuthMockFns.mockCheckSessionOrInternalAuth.mockResolvedValueOnce({
|
|
success: true,
|
|
userId: 'user-123',
|
|
authType: 'session',
|
|
})
|
|
workflowAuthzMockFns.mockAuthorizeWorkflowByWorkspacePermission.mockResolvedValueOnce({
|
|
allowed: false,
|
|
status: 403,
|
|
message: 'Unauthorized: Access denied to read this workflow',
|
|
workflow: mockWorkflow,
|
|
workspacePermission: null,
|
|
})
|
|
|
|
const req = new NextRequest('http://localhost:3000/api/workflows/workflow-123/variables')
|
|
const params = Promise.resolve({ id: 'workflow-123' })
|
|
|
|
const response = await GET(req, { params })
|
|
|
|
expect(response.status).toBe(403)
|
|
const data = await response.json()
|
|
expect(data.error).toBe('Unauthorized: Access denied to read this workflow')
|
|
})
|
|
|
|
it('should include proper cache headers', async () => {
|
|
const mockWorkflow = {
|
|
id: 'workflow-123',
|
|
userId: 'user-123',
|
|
workspaceId: 'workspace-456',
|
|
variables: {
|
|
'var-1': { id: 'var-1', name: 'test', type: 'string', value: 'hello' },
|
|
},
|
|
}
|
|
|
|
hybridAuthMockFns.mockCheckSessionOrInternalAuth.mockResolvedValueOnce({
|
|
success: true,
|
|
userId: 'user-123',
|
|
authType: 'session',
|
|
})
|
|
workflowAuthzMockFns.mockAuthorizeWorkflowByWorkspacePermission.mockResolvedValueOnce({
|
|
allowed: true,
|
|
status: 200,
|
|
workflow: mockWorkflow,
|
|
workspacePermission: 'admin',
|
|
})
|
|
|
|
const req = new NextRequest('http://localhost:3000/api/workflows/workflow-123/variables')
|
|
const params = Promise.resolve({ id: 'workflow-123' })
|
|
|
|
const response = await GET(req, { params })
|
|
|
|
expect(response.status).toBe(200)
|
|
expect(response.headers.get('Cache-Control')).toBe('max-age=30, stale-while-revalidate=300')
|
|
expect(response.headers.get('ETag')).toMatch(/^"variables-workflow-123-\d+"$/)
|
|
})
|
|
})
|
|
|
|
describe('POST /api/workflows/[id]/variables', () => {
|
|
it('should allow user with write permission to update variables', async () => {
|
|
const mockWorkflow = {
|
|
id: 'workflow-123',
|
|
userId: 'user-123',
|
|
workspaceId: 'workspace-456',
|
|
variables: {},
|
|
}
|
|
|
|
hybridAuthMockFns.mockCheckSessionOrInternalAuth.mockResolvedValueOnce({
|
|
success: true,
|
|
userId: 'user-123',
|
|
authType: 'session',
|
|
})
|
|
workflowAuthzMockFns.mockAuthorizeWorkflowByWorkspacePermission.mockResolvedValueOnce({
|
|
allowed: true,
|
|
status: 200,
|
|
workflow: mockWorkflow,
|
|
workspacePermission: 'write',
|
|
})
|
|
|
|
const variables = {
|
|
'var-1': {
|
|
id: 'var-1',
|
|
workflowId: 'workflow-123',
|
|
name: 'test',
|
|
type: 'string',
|
|
value: 'hello',
|
|
},
|
|
}
|
|
|
|
const req = new NextRequest('http://localhost:3000/api/workflows/workflow-123/variables', {
|
|
method: 'POST',
|
|
body: JSON.stringify({ variables }),
|
|
})
|
|
const params = Promise.resolve({ id: 'workflow-123' })
|
|
|
|
const response = await POST(req, { params })
|
|
|
|
expect(response.status).toBe(200)
|
|
const data = await response.json()
|
|
expect(data.success).toBe(true)
|
|
})
|
|
|
|
it('should deny access for users without permissions', async () => {
|
|
const mockWorkflow = {
|
|
id: 'workflow-123',
|
|
userId: 'other-user',
|
|
workspaceId: 'workspace-456',
|
|
variables: {},
|
|
}
|
|
|
|
hybridAuthMockFns.mockCheckSessionOrInternalAuth.mockResolvedValueOnce({
|
|
success: true,
|
|
userId: 'user-123',
|
|
authType: 'session',
|
|
})
|
|
workflowAuthzMockFns.mockAuthorizeWorkflowByWorkspacePermission.mockResolvedValueOnce({
|
|
allowed: false,
|
|
status: 403,
|
|
message: 'Unauthorized: Access denied to write this workflow',
|
|
workflow: mockWorkflow,
|
|
workspacePermission: null,
|
|
})
|
|
|
|
const variables = {
|
|
'var-1': {
|
|
id: 'var-1',
|
|
workflowId: 'workflow-123',
|
|
name: 'test',
|
|
type: 'string',
|
|
value: 'hello',
|
|
},
|
|
}
|
|
|
|
const req = new NextRequest('http://localhost:3000/api/workflows/workflow-123/variables', {
|
|
method: 'POST',
|
|
body: JSON.stringify({ variables }),
|
|
})
|
|
const params = Promise.resolve({ id: 'workflow-123' })
|
|
|
|
const response = await POST(req, { params })
|
|
|
|
expect(response.status).toBe(403)
|
|
const data = await response.json()
|
|
expect(data.error).toBe('Unauthorized: Access denied to write this workflow')
|
|
})
|
|
|
|
it('should validate request data schema', async () => {
|
|
const mockWorkflow = {
|
|
id: 'workflow-123',
|
|
userId: 'user-123',
|
|
workspaceId: 'workspace-456',
|
|
variables: {},
|
|
}
|
|
|
|
hybridAuthMockFns.mockCheckSessionOrInternalAuth.mockResolvedValueOnce({
|
|
success: true,
|
|
userId: 'user-123',
|
|
authType: 'session',
|
|
})
|
|
workflowAuthzMockFns.mockAuthorizeWorkflowByWorkspacePermission.mockResolvedValueOnce({
|
|
allowed: true,
|
|
status: 200,
|
|
workflow: mockWorkflow,
|
|
workspacePermission: 'write',
|
|
})
|
|
|
|
const invalidData = { variables: [{ name: 'test' }] }
|
|
|
|
const req = new NextRequest('http://localhost:3000/api/workflows/workflow-123/variables', {
|
|
method: 'POST',
|
|
body: JSON.stringify(invalidData),
|
|
})
|
|
const params = Promise.resolve({ id: 'workflow-123' })
|
|
|
|
const response = await POST(req, { params })
|
|
|
|
expect(response.status).toBe(400)
|
|
const data = await response.json()
|
|
expect(data.error).toBe('Validation error')
|
|
})
|
|
})
|
|
|
|
describe('Error handling', () => {
|
|
it('should handle database errors gracefully', async () => {
|
|
hybridAuthMockFns.mockCheckSessionOrInternalAuth.mockResolvedValueOnce({
|
|
success: true,
|
|
userId: 'user-123',
|
|
authType: 'session',
|
|
})
|
|
workflowAuthzMockFns.mockAuthorizeWorkflowByWorkspacePermission.mockRejectedValueOnce(
|
|
new Error('Database connection failed')
|
|
)
|
|
|
|
const req = new NextRequest('http://localhost:3000/api/workflows/workflow-123/variables')
|
|
const params = Promise.resolve({ id: 'workflow-123' })
|
|
|
|
const response = await GET(req, { params })
|
|
|
|
expect(response.status).toBe(500)
|
|
const data = await response.json()
|
|
expect(data.error).toBe('Database connection failed')
|
|
})
|
|
})
|
|
})
|