Files
simstudioai--sim/apps/sim/app/api/table/import-csv/route.test.ts
T
wehub-resource-sync 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
chore: import upstream snapshot with attribution
2026-07-13 13:20:55 +08:00

219 lines
7.6 KiB
TypeScript

/**
* @vitest-environment node
*/
import { hybridAuthMockFns, permissionsMock, permissionsMockFns } from '@sim/testing'
import { getErrorMessage } from '@sim/utils/errors'
import type { NextRequest } from 'next/server'
import { beforeEach, describe, expect, it, vi } from 'vitest'
const { mockCreateTable, mockBatchInsertRows, mockDeleteTable, mockGetLimits } = vi.hoisted(() => ({
mockCreateTable: vi.fn(),
mockBatchInsertRows: vi.fn(),
mockDeleteTable: vi.fn(),
mockGetLimits: vi.fn(),
}))
vi.mock('@sim/utils/id', () => ({
generateId: vi.fn().mockReturnValue('deadbeefcafef00d'),
generateShortId: vi.fn().mockReturnValue('short-id'),
}))
// Mock only the DB-backed service/billing functions; the real `./import` helpers
// (createCsvParser, inferSchemaFromCsv, coerceRowsForTable, …) run for real so the
// streaming multipart + CSV pipeline is exercised end-to-end.
vi.mock('@/lib/table/service', () => ({
createTable: mockCreateTable,
deleteTable: mockDeleteTable,
}))
vi.mock('@/lib/table/rows/service', () => ({
batchInsertRows: mockBatchInsertRows,
}))
vi.mock('@/lib/table/billing', () => ({ getWorkspaceTableLimits: mockGetLimits }))
vi.mock('@/app/api/table/utils', async () => {
const { NextResponse } = await import('next/server')
return {
normalizeColumn: (column: unknown) => column,
csvProxyBodyCapResponse: () => null,
multipartErrorResponse: (error: { code: string; message: string }) =>
NextResponse.json(
{ error: error.message },
{ status: error.code === 'FILE_TOO_LARGE' ? 413 : 400 }
),
rowWriteErrorResponse: (error: unknown) => {
const message = getErrorMessage(error)
return message.includes('row limit')
? NextResponse.json({ error: message }, { status: 400 })
: null
},
}
})
vi.mock('@/lib/workspaces/permissions/utils', () => permissionsMock)
import { POST } from '@/app/api/table/import-csv/route'
type Part =
| { name: string; value: string }
| { name: string; filename: string; value: string; contentType?: string }
const BOUNDARY = '----testboundaryCSV'
function buildBody(parts: Part[]): Buffer {
const segments: Buffer[] = []
for (const part of parts) {
let header = `--${BOUNDARY}\r\nContent-Disposition: form-data; name="${part.name}"`
if ('filename' in part) {
header += `; filename="${part.filename}"\r\nContent-Type: ${part.contentType ?? 'text/csv'}`
}
header += '\r\n\r\n'
segments.push(Buffer.from(header, 'utf8'), Buffer.from(part.value, 'utf8'), Buffer.from('\r\n'))
}
segments.push(Buffer.from(`--${BOUNDARY}--\r\n`, 'utf8'))
return Buffer.concat(segments)
}
function makeRequest(parts: Part[], chunkSize?: number): NextRequest {
const body = buildBody(parts)
const stream = new ReadableStream<Uint8Array>({
start(controller) {
if (chunkSize) {
for (let i = 0; i < body.length; i += chunkSize) {
controller.enqueue(new Uint8Array(body.subarray(i, i + chunkSize)))
}
} else {
controller.enqueue(new Uint8Array(body))
}
controller.close()
},
})
return {
headers: new Headers({ 'content-type': `multipart/form-data; boundary=${BOUNDARY}` }),
body: stream,
signal: undefined,
} as unknown as NextRequest
}
function csvWithRows(count: number): string {
const lines = ['name,age']
for (let i = 0; i < count; i++) lines.push(`Person${i},${20 + (i % 50)}`)
return `${lines.join('\n')}\n`
}
function uploadParts(csv: string): Part[] {
return [
{ name: 'workspaceId', value: 'workspace-1' },
{ name: 'file', filename: 'data.csv', value: csv },
]
}
describe('POST /api/table/import-csv', () => {
beforeEach(() => {
vi.clearAllMocks()
hybridAuthMockFns.mockCheckSessionOrInternalAuth.mockResolvedValue({
success: true,
userId: 'user-1',
authType: 'session',
})
permissionsMockFns.mockGetUserEntityPermissions.mockResolvedValue('write')
mockGetLimits.mockResolvedValue({ maxRowsPerTable: 1_000_000, maxTables: 50 })
mockCreateTable.mockImplementation(async (data) => ({
id: 'tbl_1',
name: data.name,
description: data.description ?? null,
schema: data.schema,
workspaceId: data.workspaceId,
maxRows: data.maxRows,
rowCount: 0,
createdBy: 'user-1',
archivedAt: null,
createdAt: new Date(),
updatedAt: new Date(),
}))
mockBatchInsertRows.mockImplementation(async ({ rows }: { rows: unknown[] }) =>
rows.map((_, i) => ({ id: `row-${i}` }))
)
mockDeleteTable.mockResolvedValue(undefined)
})
it('streams a CSV upload into a new table and reports the row count', async () => {
const response = await POST(makeRequest(uploadParts(csvWithRows(250))))
const data = await response.json()
expect(response.status).toBe(200)
expect(mockCreateTable).toHaveBeenCalledTimes(1)
expect(data.data.table.id).toBe('tbl_1')
expect(data.data.table.rowCount).toBe(250)
// 250 rows = a 100-row schema-sample batch + a 150-row remainder batch.
expect(mockBatchInsertRows).toHaveBeenCalledTimes(2)
})
it('parses a body delivered in tiny chunks (regression: missing final boundary)', async () => {
const response = await POST(makeRequest(uploadParts(csvWithRows(5)), 7))
const data = await response.json()
expect(response.status).toBe(200)
expect(data.data.table.rowCount).toBe(5)
})
it('returns 400 for a CSV with no data rows', async () => {
const response = await POST(makeRequest(uploadParts('name,age\n')))
const data = await response.json()
expect(response.status).toBe(400)
expect(data.error).toMatch(/no data rows/i)
expect(mockCreateTable).not.toHaveBeenCalled()
})
it('returns 400 when the file precedes required fields', async () => {
const response = await POST(
makeRequest([
{ name: 'file', filename: 'data.csv', value: csvWithRows(3) },
{ name: 'workspaceId', value: 'workspace-1' },
])
)
expect(response.status).toBe(400)
expect(mockCreateTable).not.toHaveBeenCalled()
})
it('returns 400 when no file part is present', async () => {
const response = await POST(makeRequest([{ name: 'workspaceId', value: 'workspace-1' }]))
expect(response.status).toBe(400)
expect(mockCreateTable).not.toHaveBeenCalled()
})
it('returns 400 with the reason when an insert exceeds the plan row limit', async () => {
mockBatchInsertRows.mockRejectedValueOnce(
new Error('This table has reached its row limit (1,000 rows) on your current plan.')
)
const response = await POST(makeRequest(uploadParts(csvWithRows(250))))
const data = await response.json()
expect(response.status).toBe(400)
expect(data.error).toMatch(/row limit/)
})
it('rolls back the created table when a batch insert fails mid-stream', async () => {
mockBatchInsertRows
.mockResolvedValueOnce(Array.from({ length: 100 }, () => ({ id: 'row' })))
.mockRejectedValueOnce(new Error('insert boom'))
const response = await POST(makeRequest(uploadParts(csvWithRows(250))))
expect(response.status).toBe(500)
expect(mockDeleteTable).toHaveBeenCalledWith('tbl_1', expect.any(String))
})
it('returns 401 when unauthenticated', async () => {
hybridAuthMockFns.mockCheckSessionOrInternalAuth.mockResolvedValue({ success: false })
const response = await POST(makeRequest(uploadParts(csvWithRows(3))))
expect(response.status).toBe(401)
})
it('returns 403 without write permission', async () => {
permissionsMockFns.mockGetUserEntityPermissions.mockResolvedValue('read')
const response = await POST(makeRequest(uploadParts(csvWithRows(3))))
expect(response.status).toBe(403)
})
})