forked from Lilly-Protocol/lily-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequest-timeout-validation.test.ts
More file actions
195 lines (170 loc) · 5.16 KB
/
Copy pathrequest-timeout-validation.test.ts
File metadata and controls
195 lines (170 loc) · 5.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
import { describe, it, expect } from 'vitest';
import { createFetchHttpClient } from '../src/http/fetch-http-client';
import { LilyConfigError } from '../src/errors/sdk-error';
describe('request timeoutMs validation', () => {
it('rejects negative timeoutMs with LilyConfigError', async () => {
const mockFetch = async () => new Response();
const config = {
baseUrl: new URL('https://api.example.com'),
timeoutMs: 10000,
retry: { retries: 0, retryDelayMs: 100, retryableStatusCodes: [] },
defaultHeaders: {},
userAgent: 'test',
fetch: mockFetch,
toHeaders: () => ({}),
};
const client = createFetchHttpClient(config);
await expect(
client.request({
method: 'GET',
path: '/test',
timeoutMs: -1,
}),
).rejects.toThrow(LilyConfigError);
await expect(
client.request({
method: 'GET',
path: '/test',
timeoutMs: -1,
}),
).rejects.toThrow('`timeoutMs` must be a non-negative number.');
});
it('rejects NaN timeoutMs with LilyConfigError', async () => {
const mockFetch = async () => new Response();
const config = {
baseUrl: new URL('https://api.example.com'),
timeoutMs: 10000,
retry: { retries: 0, retryDelayMs: 100, retryableStatusCodes: [] },
defaultHeaders: {},
userAgent: 'test',
fetch: mockFetch,
toHeaders: () => ({}),
};
const client = createFetchHttpClient(config);
await expect(
client.request({
method: 'GET',
path: '/test',
timeoutMs: NaN,
}),
).rejects.toThrow(LilyConfigError);
});
it('rejects Infinity timeoutMs with LilyConfigError', async () => {
const mockFetch = async () => new Response();
const config = {
baseUrl: new URL('https://api.example.com'),
timeoutMs: 10000,
retry: { retries: 0, retryDelayMs: 100, retryableStatusCodes: [] },
defaultHeaders: {},
userAgent: 'test',
fetch: mockFetch,
toHeaders: () => ({}),
};
const client = createFetchHttpClient(config);
await expect(
client.request({
method: 'GET',
path: '/test',
timeoutMs: Infinity,
}),
).rejects.toThrow(LilyConfigError);
});
it('rejects string timeoutMs with LilyConfigError', async () => {
const mockFetch = async () => new Response();
const config = {
baseUrl: new URL('https://api.example.com'),
timeoutMs: 10000,
retry: { retries: 0, retryDelayMs: 100, retryableStatusCodes: [] },
defaultHeaders: {},
userAgent: 'test',
fetch: mockFetch,
toHeaders: () => ({}),
};
const client = createFetchHttpClient(config);
await expect(
client.request({
method: 'GET',
path: '/test',
// @ts-expect-error - testing runtime validation
timeoutMs: '1000',
}),
).rejects.toThrow(LilyConfigError);
});
it('accepts 0 timeoutMs (opt-out)', async () => {
let fetchCalled = false;
const mockFetch = async () => {
fetchCalled = true;
return new Response(null, { status: 200 });
};
const config = {
baseUrl: new URL('https://api.example.com'),
timeoutMs: 10000,
retry: { retries: 0, retryDelayMs: 100, retryableStatusCodes: [] },
defaultHeaders: {},
userAgent: 'test',
fetch: mockFetch,
toHeaders: () => ({}),
};
const client = createFetchHttpClient(config);
// Should not throw
await expect(
client.request({
method: 'GET',
path: '/test',
timeoutMs: 0,
}),
).resolves.toBeDefined();
expect(fetchCalled).toBe(true);
});
it('accepts positive timeoutMs', async () => {
let fetchCalled = false;
const mockFetch = async () => {
fetchCalled = true;
return new Response(null, { status: 200 });
};
const config = {
baseUrl: new URL('https://api.example.com'),
timeoutMs: 10000,
retry: { retries: 0, retryDelayMs: 100, retryableStatusCodes: [] },
defaultHeaders: {},
userAgent: 'test',
fetch: mockFetch,
toHeaders: () => ({}),
};
const client = createFetchHttpClient(config);
// Should not throw
await expect(
client.request({
method: 'GET',
path: '/test',
timeoutMs: 5000,
}),
).resolves.toBeDefined();
expect(fetchCalled).toBe(true);
});
it('uses config timeoutMs when request timeoutMs is undefined', async () => {
let fetchCalled = false;
const mockFetch = async () => {
fetchCalled = true;
return new Response(null, { status: 200 });
};
const config = {
baseUrl: new URL('https://api.example.com'),
timeoutMs: 10000,
retry: { retries: 0, retryDelayMs: 100, retryableStatusCodes: [] },
defaultHeaders: {},
userAgent: 'test',
fetch: mockFetch,
toHeaders: () => ({}),
};
const client = createFetchHttpClient(config);
// Should not throw
await expect(
client.request({
method: 'GET',
path: '/test',
}),
).resolves.toBeDefined();
expect(fetchCalled).toBe(true);
});
});