23 lines
885 B
JavaScript
23 lines
885 B
JavaScript
import { describe, expect, it } from 'vitest';
|
|||
|
|
|
||
|
|
import { resolveControlTimeoutMs } from './cli-control.js';
|
||
|
|
|
||
|
|
describe('resolveControlTimeoutMs', () => {
|
||
|
|
it('keeps the short default HTTP timeout for instant control calls', () => {
|
||
|
|
expect(resolveControlTimeoutMs({}, {})).toBeUndefined();
|
||
|
|
expect(resolveControlTimeoutMs({ wait: false, timeout: 30 }, {})).toBeUndefined();
|
||
|
|
});
|
||
|
|
|
||
|
|
it('outlives the default server wait window when wait is set', () => {
|
||
|
|
expect(resolveControlTimeoutMs({ wait: true }, {})).toBe(630_000);
|
||
|
|
});
|
||
|
|
|
||
|
|
it('derives the HTTP timeout from an explicit wait timeout in seconds', () => {
|
||
|
|
expect(resolveControlTimeoutMs({ wait: true, timeout: 30 }, {})).toBe(60_000);
|
||
|
|
});
|
||
|
|
|
||
|
|
it('never shrinks an explicitly requested HTTP timeout', () => {
|
||
|
|
expect(resolveControlTimeoutMs({ wait: true, timeout: 30 }, { timeoutMs: 5000 })).toBe(5000);
|
||
|
|
});
|
||
|
|
});
|