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
189 lines
6.7 KiB
TypeScript
189 lines
6.7 KiB
TypeScript
/**
|
|
* @vitest-environment node
|
|
*/
|
|
import { beforeEach, describe, expect, it, vi } from 'vitest'
|
|
|
|
const {
|
|
mockDb,
|
|
mockSelectExportRowPage,
|
|
mockCreateMultipartUpload,
|
|
mockHeadObject,
|
|
mockDeleteFile,
|
|
} = vi.hoisted(() => {
|
|
const limit = vi.fn()
|
|
return {
|
|
mockDb: { limit, select: () => ({ from: () => ({ where: () => ({ limit }) }) }) },
|
|
mockSelectExportRowPage: vi.fn(),
|
|
mockCreateMultipartUpload: vi.fn(),
|
|
mockHeadObject: vi.fn(),
|
|
mockDeleteFile: vi.fn(),
|
|
}
|
|
})
|
|
|
|
vi.mock('@sim/db', () => ({ db: mockDb }))
|
|
vi.mock('@/lib/table/jobs/service', () => ({ selectExportRowPage: mockSelectExportRowPage }))
|
|
vi.mock('@/lib/uploads/core/storage-service', () => ({
|
|
createMultipartUpload: mockCreateMultipartUpload,
|
|
headObject: mockHeadObject,
|
|
deleteFile: mockDeleteFile,
|
|
}))
|
|
|
|
import { getOrCreateTableSnapshot, TableSnapshotTooLargeError } from '@/lib/table/snapshot-cache'
|
|
|
|
const table = {
|
|
id: 'tbl_1',
|
|
workspaceId: 'ws_1',
|
|
schema: { columns: [{ id: 'col_name', name: 'name', type: 'string' }] },
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
} as any
|
|
|
|
let lastHandle: {
|
|
content: string
|
|
complete: ReturnType<typeof vi.fn>
|
|
abort: ReturnType<typeof vi.fn>
|
|
} | null
|
|
|
|
/** Queue the values successive `readRowsVersion` calls return. */
|
|
function versions(...values: number[]) {
|
|
for (const v of values) mockDb.limit.mockResolvedValueOnce([{ rowsVersion: v }])
|
|
}
|
|
|
|
describe('getOrCreateTableSnapshot', () => {
|
|
beforeEach(() => {
|
|
vi.clearAllMocks()
|
|
lastHandle = null
|
|
mockDeleteFile.mockResolvedValue(undefined)
|
|
mockSelectExportRowPage.mockResolvedValueOnce([
|
|
{ id: 'r1', data: { col_name: 'Ada' }, orderKey: 'a0' },
|
|
])
|
|
mockSelectExportRowPage.mockResolvedValue([])
|
|
mockCreateMultipartUpload.mockImplementation(({ key }: { key: string }) => {
|
|
const chunks: string[] = []
|
|
const handle = {
|
|
content: '',
|
|
write: vi.fn((chunk: Buffer | string) => {
|
|
chunks.push(typeof chunk === 'string' ? chunk : chunk.toString('utf8'))
|
|
return Promise.resolve()
|
|
}),
|
|
complete: vi.fn(() => {
|
|
handle.content = chunks.join('')
|
|
return Promise.resolve({ key, size: Buffer.byteLength(handle.content) })
|
|
}),
|
|
abort: vi.fn(() => Promise.resolve()),
|
|
}
|
|
lastHandle = handle
|
|
return Promise.resolve(handle)
|
|
})
|
|
})
|
|
|
|
it('returns the cached snapshot on a hit without reading rows', async () => {
|
|
versions(3)
|
|
mockHeadObject.mockResolvedValue({ size: 42 })
|
|
|
|
const ref = await getOrCreateTableSnapshot(table, 'req')
|
|
|
|
expect(ref).toEqual({
|
|
key: expect.stringMatching(/^table-snapshots\/ws_1\/tbl_1\/v3-[0-9a-f]{12}\.csv$/),
|
|
size: 42,
|
|
version: 3,
|
|
})
|
|
expect(mockCreateMultipartUpload).not.toHaveBeenCalled()
|
|
expect(mockSelectExportRowPage).not.toHaveBeenCalled()
|
|
})
|
|
|
|
it('materializes and stores on a miss, then cleans up the previous version', async () => {
|
|
versions(3, 3) // initial read, then unchanged recheck
|
|
mockHeadObject.mockResolvedValue(null)
|
|
|
|
const ref = await getOrCreateTableSnapshot(table, 'req')
|
|
|
|
expect(mockCreateMultipartUpload).toHaveBeenCalledWith(
|
|
expect.objectContaining({
|
|
key: expect.stringMatching(/^table-snapshots\/ws_1\/tbl_1\/v3-[0-9a-f]{12}\.csv$/),
|
|
context: 'execution',
|
|
})
|
|
)
|
|
expect(lastHandle?.content).toBe('name\nAda\n')
|
|
expect(ref).toEqual({
|
|
key: expect.stringMatching(/^table-snapshots\/ws_1\/tbl_1\/v3-[0-9a-f]{12}\.csv$/),
|
|
size: Buffer.byteLength('name\nAda\n'),
|
|
version: 3,
|
|
})
|
|
// Best-effort prune of v2.
|
|
expect(mockDeleteFile).toHaveBeenCalledWith(
|
|
expect.objectContaining({
|
|
key: expect.stringMatching(/^table-snapshots\/ws_1\/tbl_1\/v2-[0-9a-f]{12}\.csv$/),
|
|
context: 'execution',
|
|
})
|
|
)
|
|
})
|
|
|
|
it('keys the snapshot by tenant — the same table id in another workspace gets a different key', async () => {
|
|
versions(1)
|
|
mockHeadObject.mockResolvedValue({ size: 1 })
|
|
const ref = await getOrCreateTableSnapshot({ ...table, workspaceId: 'ws_2' }, 'req')
|
|
expect(ref.key).toMatch(/^table-snapshots\/ws_2\/tbl_1\/v1-[0-9a-f]{12}\.csv$/)
|
|
})
|
|
|
|
it('changes the key when the column shape changes (schema edits invalidate the cache)', async () => {
|
|
versions(7, 7)
|
|
mockHeadObject.mockResolvedValue({ size: 1 })
|
|
|
|
const a = await getOrCreateTableSnapshot(table, 'req')
|
|
const b = await getOrCreateTableSnapshot(
|
|
{
|
|
...table,
|
|
schema: { columns: [{ id: 'col_name', name: 'renamed', type: 'string' }] },
|
|
} as never,
|
|
'req'
|
|
)
|
|
|
|
// Same workspace/table/row-version, but a renamed column flips the shape hash → different key.
|
|
expect(a.key).not.toBe(b.key)
|
|
expect(a.key).toMatch(/\/v7-[0-9a-f]{12}\.csv$/)
|
|
expect(b.key).toMatch(/\/v7-[0-9a-f]{12}\.csv$/)
|
|
})
|
|
|
|
it('re-keys and rebuilds when rows_version advances mid-scan', async () => {
|
|
versions(3, 4) // read v3, materialize, recheck sees v4
|
|
mockHeadObject.mockResolvedValueOnce(null) // v3 miss
|
|
mockHeadObject.mockResolvedValueOnce(null) // v4 miss → rebuild
|
|
// second materialize needs its own page sequence
|
|
mockSelectExportRowPage.mockReset()
|
|
mockSelectExportRowPage
|
|
.mockResolvedValueOnce([{ id: 'r1', data: { col_name: 'Ada' }, orderKey: 'a0' }])
|
|
.mockResolvedValueOnce([])
|
|
.mockResolvedValueOnce([{ id: 'r1', data: { col_name: 'Ada' }, orderKey: 'a0' }])
|
|
.mockResolvedValueOnce([])
|
|
|
|
const ref = await getOrCreateTableSnapshot(table, 'req')
|
|
|
|
expect(ref.version).toBe(4)
|
|
expect(ref.key).toMatch(/^table-snapshots\/ws_1\/tbl_1\/v4-[0-9a-f]{12}\.csv$/)
|
|
expect(mockCreateMultipartUpload).toHaveBeenCalledTimes(2)
|
|
// the stale v3 object is dropped
|
|
expect(mockDeleteFile).toHaveBeenCalledWith(
|
|
expect.objectContaining({
|
|
key: expect.stringMatching(/^table-snapshots\/ws_1\/tbl_1\/v3-[0-9a-f]{12}\.csv$/),
|
|
})
|
|
)
|
|
})
|
|
|
|
it('aborts and throws when the CSV exceeds the size cap', async () => {
|
|
versions(1)
|
|
mockHeadObject.mockResolvedValue(null)
|
|
mockSelectExportRowPage.mockReset()
|
|
// A full batch of wide rows on every page → the materialize loop keeps paging until the running
|
|
// byte count crosses the cap, then aborts. Peak memory stays at one page (~MBs), not the cap.
|
|
const wideRow = { id: 'r', data: { col_name: 'x'.repeat(1000) }, orderKey: 'a0' }
|
|
const fullPage = Array.from({ length: 10000 }, () => wideRow)
|
|
mockSelectExportRowPage.mockResolvedValue(fullPage)
|
|
|
|
await expect(getOrCreateTableSnapshot(table, 'req')).rejects.toBeInstanceOf(
|
|
TableSnapshotTooLargeError
|
|
)
|
|
expect(lastHandle?.abort).toHaveBeenCalledTimes(1)
|
|
expect(lastHandle?.complete).not.toHaveBeenCalled()
|
|
})
|
|
})
|