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
163 lines
6.0 KiB
TypeScript
163 lines
6.0 KiB
TypeScript
/**
|
|
* @vitest-environment node
|
|
*/
|
|
import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest'
|
|
import { maskPIIBatch, validatePII } from '@/lib/guardrails/validate_pii'
|
|
|
|
interface Span {
|
|
entity_type: string
|
|
start: number
|
|
end: number
|
|
score: number
|
|
}
|
|
|
|
/** Mimic the Presidio anonymizer's default `replace`: each span → `<ENTITY_TYPE>`. */
|
|
function applyReplace(text: string, results: Span[]): string {
|
|
let out = text
|
|
for (const s of [...results].sort((a, b) => b.start - a.start)) {
|
|
out = `${out.slice(0, s.start)}<${s.entity_type}>${out.slice(s.end)}`
|
|
}
|
|
return out
|
|
}
|
|
|
|
/** Analyzer mock: flags `a@b.com` as EMAIL_ADDRESS when that entity is in scope. */
|
|
function emailSpans(text: string, entities: string[] | undefined): Span[] {
|
|
if (entities && !entities.includes('EMAIL_ADDRESS')) return []
|
|
const idx = text.indexOf('a@b.com')
|
|
return idx === -1 ? [] : [{ entity_type: 'EMAIL_ADDRESS', start: idx, end: idx + 7, score: 0.9 }]
|
|
}
|
|
|
|
describe('validate_pii (Presidio service)', () => {
|
|
let analyzeBodies: Array<{ text: string; language: string; entities?: string[] }>
|
|
let fetchMock: ReturnType<typeof vi.fn>
|
|
|
|
beforeEach(() => {
|
|
analyzeBodies = []
|
|
fetchMock = vi.fn(async (url: string, init: { body: string }) => {
|
|
const body = JSON.parse(init.body)
|
|
if (url.includes('/redact_batch')) {
|
|
for (const text of body.texts as string[]) {
|
|
analyzeBodies.push({ text, language: body.language, entities: body.entities })
|
|
}
|
|
const texts = (body.texts as string[]).map((t) =>
|
|
applyReplace(t, emailSpans(t, body.entities))
|
|
)
|
|
return new Response(JSON.stringify({ texts }), { status: 200 })
|
|
}
|
|
if (url.includes('/analyze_batch')) {
|
|
for (const text of body.texts as string[]) {
|
|
analyzeBodies.push({ text, language: body.language, entities: body.entities })
|
|
}
|
|
const spans = (body.texts as string[]).map((t) => emailSpans(t, body.entities))
|
|
return new Response(JSON.stringify(spans), { status: 200 })
|
|
}
|
|
if (url.includes('/anonymize_batch')) {
|
|
const texts = (body.items as Array<{ text: string; analyzer_results: Span[] }>).map((i) =>
|
|
applyReplace(i.text, i.analyzer_results)
|
|
)
|
|
return new Response(JSON.stringify({ texts }), { status: 200 })
|
|
}
|
|
if (url.includes('/analyze')) {
|
|
analyzeBodies.push({ text: body.text, language: body.language, entities: body.entities })
|
|
return new Response(JSON.stringify(emailSpans(body.text, body.entities)), { status: 200 })
|
|
}
|
|
// /anonymize
|
|
return new Response(
|
|
JSON.stringify({ text: applyReplace(body.text, body.analyzer_results) }),
|
|
{
|
|
status: 200,
|
|
}
|
|
)
|
|
})
|
|
vi.stubGlobal('fetch', fetchMock)
|
|
})
|
|
|
|
afterEach(() => vi.unstubAllGlobals())
|
|
|
|
describe('maskPIIBatch', () => {
|
|
it('masks detected entities, preserving input order', async () => {
|
|
const out = await maskPIIBatch(['email a@b.com', 'nothing here'], [])
|
|
expect(out[0]).toBe('email <EMAIL_ADDRESS>')
|
|
expect(out[1]).toBe('nothing here')
|
|
})
|
|
|
|
it('forwards entityTypes (and language) to the analyzer; empty ⇒ omitted (all)', async () => {
|
|
await maskPIIBatch(['mail a@b.com'], ['EMAIL_ADDRESS', 'PERSON'], 'es')
|
|
expect(analyzeBodies[0].entities).toEqual(['EMAIL_ADDRESS', 'PERSON'])
|
|
expect(analyzeBodies[0].language).toBe('es')
|
|
|
|
analyzeBodies.length = 0
|
|
await maskPIIBatch(['mail a@b.com'], [])
|
|
expect(analyzeBodies[0].entities).toBeUndefined()
|
|
})
|
|
|
|
it('returns [] for empty input and leaves empty strings untouched', async () => {
|
|
expect(await maskPIIBatch([], [])).toEqual([])
|
|
expect(await maskPIIBatch([''], [])).toEqual([''])
|
|
})
|
|
|
|
it('throws on a service failure so the caller can scrub', async () => {
|
|
fetchMock.mockResolvedValueOnce(new Response('boom', { status: 500 }))
|
|
await expect(maskPIIBatch(['email a@b.com'], [])).rejects.toThrow(
|
|
/Presidio redact_batch failed/
|
|
)
|
|
})
|
|
|
|
// Runs last: a 404 permanently flips the module's combined-endpoint flag off.
|
|
it('falls back to legacy analyze+anonymize when /redact_batch is absent (404)', async () => {
|
|
fetchMock.mockImplementation(async (url: string, init: { body: string }) => {
|
|
const body = JSON.parse(init.body)
|
|
if (url.includes('/redact_batch')) return new Response('Not Found', { status: 404 })
|
|
if (url.includes('/analyze_batch')) {
|
|
const spans = (body.texts as string[]).map((t) => emailSpans(t, body.entities))
|
|
return new Response(JSON.stringify(spans), { status: 200 })
|
|
}
|
|
// /anonymize_batch
|
|
const texts = (body.items as Array<{ text: string; analyzer_results: Span[] }>).map((i) =>
|
|
applyReplace(i.text, i.analyzer_results)
|
|
)
|
|
return new Response(JSON.stringify({ texts }), { status: 200 })
|
|
})
|
|
|
|
const out = await maskPIIBatch(['email a@b.com', 'clean'], [])
|
|
expect(out).toEqual(['email <EMAIL_ADDRESS>', 'clean'])
|
|
})
|
|
})
|
|
|
|
describe('validatePII', () => {
|
|
it('block mode fails with a summary when PII is detected', async () => {
|
|
const res = await validatePII({
|
|
text: 'reach me at a@b.com',
|
|
entityTypes: [],
|
|
mode: 'block',
|
|
requestId: 'r1',
|
|
})
|
|
expect(res.passed).toBe(false)
|
|
expect(res.error).toContain('EMAIL_ADDRESS')
|
|
expect(res.detectedEntities).toHaveLength(1)
|
|
})
|
|
|
|
it('mask mode returns masked text', async () => {
|
|
const res = await validatePII({
|
|
text: 'mail a@b.com',
|
|
entityTypes: [],
|
|
mode: 'mask',
|
|
requestId: 'r2',
|
|
})
|
|
expect(res.passed).toBe(true)
|
|
expect(res.maskedText).toBe('mail <EMAIL_ADDRESS>')
|
|
})
|
|
|
|
it('passes clean text', async () => {
|
|
const res = await validatePII({
|
|
text: 'nothing to see',
|
|
entityTypes: [],
|
|
mode: 'block',
|
|
requestId: 'r3',
|
|
})
|
|
expect(res.passed).toBe(true)
|
|
expect(res.detectedEntities).toHaveLength(0)
|
|
})
|
|
})
|
|
})
|