Files
simstudioai--sim/apps/sim/tools/dropcontact-hosting.test.ts
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

182 lines
6.0 KiB
TypeScript

/**
* @vitest-environment node
*/
import { afterEach, describe, expect, it, vi } from 'vitest'
import { dropcontactEnrichContactTool } from '@/tools/dropcontact/enrich_contact'
import { DROPCONTACT_CREDIT_USD } from '@/tools/dropcontact/hosting'
import type { ToolConfig } from '@/tools/types'
afterEach(() => {
vi.useRealTimers()
vi.unstubAllGlobals()
})
function cost(tool: ToolConfig<any, any>, params: any, output: Record<string, unknown>) {
const pricing = tool.hosting?.pricing
if (!pricing || pricing.type !== 'custom') throw new Error('Expected custom pricing')
const result = pricing.getCost(params, output)
return typeof result === 'number' ? { cost: result } : result
}
describe('Dropcontact hosted key config', () => {
it('declares hosting with the correct env prefix and BYOK provider ID', () => {
expect(dropcontactEnrichContactTool.hosting?.envKeyPrefix).toBe('DROPCONTACT_API_KEY')
expect(dropcontactEnrichContactTool.hosting?.byokProviderId).toBe('dropcontact')
})
})
describe('Dropcontact hosted key pricing', () => {
it('charges 1 credit when email_found is true', () => {
expect(
cost(dropcontactEnrichContactTool, {}, { email_found: true, email: 'a@b.com' }).cost
).toBeCloseTo(DROPCONTACT_CREDIT_USD)
})
it('charges 0 credits when email_found is false', () => {
expect(cost(dropcontactEnrichContactTool, {}, { email_found: false, email: null }).cost).toBe(0)
})
it('charges 0 credits when email_found is undefined/missing', () => {
expect(cost(dropcontactEnrichContactTool, {}, {}).cost).toBe(0)
})
})
describe('Dropcontact postProcess polls to completion', () => {
it('polls the enrich endpoint until success:true and resolves the final output', async () => {
vi.useFakeTimers()
// Mock: first call returns success:false (pending), second returns success:true (ready)
const fetchMock = vi
.fn()
.mockResolvedValueOnce(
new Response(
JSON.stringify({
error: false,
success: false,
reason: 'Request not ready yet, try again in 30 seconds',
}),
{ status: 200, headers: { 'Content-Type': 'application/json' } }
)
)
.mockResolvedValueOnce(
new Response(
JSON.stringify({
error: false,
success: true,
data: [
{
civility: 'Mr',
first_name: 'John',
last_name: 'Doe',
full_name: 'John Doe',
email: [{ email: 'john.doe@acme.com', qualification: 'nominative@pro' }],
phone: null,
mobile_phone: null,
company: 'Acme Corp',
website: 'acme.com',
company_linkedin: null,
linkedin: 'https://linkedin.com/in/johndoe',
siren: null,
siret: null,
siret_address: null,
vat: null,
nb_employees: '50-100',
naf5_code: null,
naf5_des: null,
industry: 'Software',
job: 'Software Engineer',
job_level: 'Senior',
job_function: 'Engineering',
company_turnover: null,
company_results: null,
},
],
}),
{ status: 200, headers: { 'Content-Type': 'application/json' } }
)
)
vi.stubGlobal('fetch', fetchMock)
const initial = {
success: true as const,
output: { request_id: 'req_abc123' } as any,
}
const promise = dropcontactEnrichContactTool.postProcess!(
initial as any,
{ apiKey: 'test-key' } as any,
vi.fn()
)
// Advance past two poll intervals
await vi.advanceTimersByTimeAsync(5000)
await vi.advanceTimersByTimeAsync(5000)
const result = await promise
expect(fetchMock).toHaveBeenCalledWith(
'https://api.dropcontact.com/v1/enrich/all/req_abc123',
expect.objectContaining({
headers: expect.objectContaining({ 'X-Access-Token': 'test-key' }),
})
)
expect(fetchMock).toHaveBeenCalledTimes(2)
expect(result.success).toBe(true)
expect((result.output as any).email).toBe('john.doe@acme.com')
expect((result.output as any).email_found).toBe(true)
expect((result.output as any).qualification).toBe('nominative@pro')
expect((result.output as any).first_name).toBe('John')
expect((result.output as any).company).toBe('Acme Corp')
expect((result.output as any).request_id).toBe('req_abc123')
})
it('throws if no request_id is present in the initial result', async () => {
const initial = {
success: true as const,
output: { request_id: null } as any,
}
await expect(
dropcontactEnrichContactTool.postProcess!(initial as any, { apiKey: 'k' } as any, vi.fn())
).rejects.toThrow('request_id')
})
it('throws if enrichment does not complete within the polling window', async () => {
vi.useFakeTimers()
// Always returns pending — use a factory so each call gets a fresh Response body
const fetchMock = vi.fn().mockImplementation(() =>
Promise.resolve(
new Response(
JSON.stringify({
error: false,
success: false,
reason: 'Request not ready yet, try again in 30 seconds',
}),
{ status: 200, headers: { 'Content-Type': 'application/json' } }
)
)
)
vi.stubGlobal('fetch', fetchMock)
const initial = {
success: true as const,
output: { request_id: 'req_timeout' } as any,
}
let rejection: unknown
const promise = dropcontactEnrichContactTool.postProcess!(
initial as any,
{ apiKey: 'k' } as any,
vi.fn()
).catch((err) => {
rejection = err
})
// Advance past MAX_POLL_TIME_MS (120000ms)
await vi.advanceTimersByTimeAsync(125000)
await promise
expect(rejection).toBeInstanceOf(Error)
expect((rejection as Error).message).toMatch(/polling window/)
})
})