mirror of
https://gitee.com/wanwujie/sub2api
synced 2026-04-22 23:54:45 +08:00
47 lines
1.8 KiB
TypeScript
47 lines
1.8 KiB
TypeScript
|
|
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<string, unknown> = { 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<string, unknown> = { 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<string, unknown> = { 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<string, unknown> = { 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<string, unknown> = { api_key: 'sk' }
|
||
|
|
applyInterceptWarmup(creds, false, 'edit')
|
||
|
|
expect('intercept_warmup_requests' in creds).toBe(false)
|
||
|
|
})
|
||
|
|
|
||
|
|
it('should not affect other fields', () => {
|
||
|
|
const creds: Record<string, unknown> = {
|
||
|
|
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)
|
||
|
|
})
|
||
|
|
})
|