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

82 lines
2.4 KiB
TypeScript

/**
* @vitest-environment node
*/
import { describe, expect, it } from 'vitest'
import { normalizeExpenseDocuments } from '@/app/api/tools/textract/analyze-expense/route'
describe('normalizeExpenseDocuments', () => {
it('maps a documented AWS AnalyzeExpense response shape', () => {
const result = normalizeExpenseDocuments([
{
ExpenseIndex: 1,
SummaryFields: [
{
Type: { Text: 'VENDOR_NAME', Confidence: 98.1 },
ValueDetection: { Text: 'Acme Corp', Confidence: 97.5 },
LabelDetection: { Text: 'Vendor', Confidence: 90 },
PageNumber: 1,
Currency: { Code: 'USD', Confidence: 95 },
GroupProperties: [{ Id: 'g1', Types: ['VENDOR'] }],
},
],
LineItemGroups: [
{
LineItemGroupIndex: 1,
LineItems: [
{
LineItemExpenseFields: [
{
Type: { Text: 'ITEM', Confidence: 91 },
ValueDetection: { Text: 'Widget', Confidence: 93 },
},
],
},
],
},
],
},
])
expect(result).toEqual([
{
expenseIndex: 1,
summaryFields: [
{
type: { text: 'VENDOR_NAME', confidence: 98.1 },
valueDetection: { text: 'Acme Corp', confidence: 97.5 },
labelDetection: { text: 'Vendor', confidence: 90 },
pageNumber: 1,
currency: { code: 'USD', confidence: 95 },
groupProperties: [{ id: 'g1', types: ['VENDOR'] }],
},
],
lineItemGroups: [
{
lineItemGroupIndex: 1,
lineItems: [
{
lineItemExpenseFields: [
{
type: { text: 'ITEM', confidence: 91 },
valueDetection: { text: 'Widget', confidence: 93 },
labelDetection: undefined,
pageNumber: undefined,
currency: undefined,
groupProperties: undefined,
},
],
},
],
},
],
},
])
})
it('defaults missing arrays to empty arrays', () => {
expect(normalizeExpenseDocuments([{ ExpenseIndex: 0 }])).toEqual([
{ expenseIndex: 0, summaryFields: [], lineItemGroups: [] },
])
})
})