import { describe, it, expect } from 'vitest' import { applyInterceptWarmup } from '../credentialsBuilder' describe('applyInterceptWarmup', () => { it('create + enabled=true: should set intercept_warmup_requests to true', () => { const creds: Record = { access_token: 'tok' } applyInterceptWarmup(creds, true, 'create') expect(creds.intercept_warmup_requests).toBe(true) }) it('create + enabled=false: should not add the field', () => { const creds: Record = { access_token: 'tok' } applyInterceptWarmup(creds, false, 'create') expect('intercept_warmup_requests' in creds).toBe(false) }) it('edit + enabled=true: should set intercept_warmup_requests to true', () => { const creds: Record = { api_key: 'sk' } applyInterceptWarmup(creds, true, 'edit') expect(creds.intercept_warmup_requests).toBe(true) }) it('edit + enabled=false + field exists: should delete the field', () => { const creds: Record = { api_key: 'sk', intercept_warmup_requests: true } applyInterceptWarmup(creds, false, 'edit') expect('intercept_warmup_requests' in creds).toBe(false) }) it('edit + enabled=false + field absent: should not throw', () => { const creds: Record = { api_key: 'sk' } applyInterceptWarmup(creds, false, 'edit') expect('intercept_warmup_requests' in creds).toBe(false) }) it('should not affect other fields', () => { const creds: Record = { api_key: 'sk', base_url: 'url', intercept_warmup_requests: true } applyInterceptWarmup(creds, false, 'edit') expect(creds.api_key).toBe('sk') expect(creds.base_url).toBe('url') expect('intercept_warmup_requests' in creds).toBe(false) }) })