forked from Lilly-Protocol/lily-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfetch-coverage.test.ts
More file actions
237 lines (206 loc) · 6.4 KB
/
Copy pathfetch-coverage.test.ts
File metadata and controls
237 lines (206 loc) · 6.4 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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
import { describe, expect, it, vi } from 'vitest';
import {
LilyApiError,
LilyTransportError,
} from '../src/errors/sdk-error';
import { createFetchHttpClient } from '../src/http/fetch-http-client';
describe('fetch-http-client coverage', () => {
const baseConfig = {
baseUrl: new URL('https://api.lily.test/'),
timeoutMs: 5_000,
retry: {
retries: 2,
retryDelayMs: 1,
retryableStatusCodes: [408, 429, 500, 502, 503, 504],
},
defaultHeaders: {},
userAgent: 'lily-sdk/test',
};
it('retries on retryable status codes for GET requests', async () => {
let calls = 0;
const fetchSpy = vi.fn(() => {
calls += 1;
if (calls < 3) {
return Promise.resolve(
new Response(JSON.stringify({ error: 'unavailable' }), {
status: 503,
headers: { 'content-type': 'application/json' },
}),
);
}
return Promise.resolve(
new Response(JSON.stringify({ ok: true }), {
status: 200,
headers: { 'content-type': 'application/json' },
}),
);
});
const client = createFetchHttpClient({
...baseConfig,
fetch: fetchSpy,
});
const res = await client.request({ method: 'GET', path: '/test' });
expect(res.status).toBe(200);
expect(fetchSpy).toHaveBeenCalledTimes(3);
});
it('throws LilyApiError after retry exhaustion', async () => {
const fetchSpy = vi.fn(() =>
Promise.resolve(
new Response(JSON.stringify({ error: 'fail' }), {
status: 500,
headers: { 'content-type': 'application/json' },
}),
),
);
const client = createFetchHttpClient({
...baseConfig,
fetch: fetchSpy,
});
await expect(
client.request({ method: 'GET', path: '/test' }),
).rejects.toBeInstanceOf(LilyApiError);
expect(fetchSpy).toHaveBeenCalledTimes(3);
});
it('does not retry POST requests on server errors', async () => {
const fetchSpy = vi.fn(() =>
Promise.resolve(
new Response(JSON.stringify({ error: 'fail' }), {
status: 500,
headers: { 'content-type': 'application/json' },
}),
),
);
const client = createFetchHttpClient({
...baseConfig,
fetch: fetchSpy,
});
await expect(
client.request({ method: 'POST', path: '/test', body: { x: 1 } }),
).rejects.toBeInstanceOf(LilyApiError);
expect(fetchSpy).toHaveBeenCalledTimes(1);
});
it('retries on transport errors for safe methods', async () => {
let calls = 0;
const fetchSpy = vi.fn(() => {
calls += 1;
if (calls === 1) {
return Promise.reject(new TypeError('network failure'));
}
return Promise.resolve(
new Response(JSON.stringify({ ok: true }), {
status: 200,
headers: { 'content-type': 'application/json' },
}),
);
});
const client = createFetchHttpClient({
...baseConfig,
fetch: fetchSpy,
});
const res = await client.request({ method: 'GET', path: '/test' });
expect(res.status).toBe(200);
expect(fetchSpy).toHaveBeenCalledTimes(2);
});
it('throws LilyTransportError after transport retry exhaustion', async () => {
const fetchSpy = vi.fn(() =>
Promise.reject(new TypeError('network failure')),
);
const client = createFetchHttpClient({
...baseConfig,
fetch: fetchSpy,
});
await expect(
client.request({ method: 'GET', path: '/test' }),
).rejects.toBeInstanceOf(LilyTransportError);
expect(fetchSpy).toHaveBeenCalledTimes(3);
});
it('handles 204 No Content responses', async () => {
const fetchSpy = vi.fn(() =>
Promise.resolve(
new Response(null, {
status: 204,
headers: {},
}),
),
);
const client = createFetchHttpClient({
...baseConfig,
fetch: fetchSpy,
});
const res = await client.request({ method: 'DELETE', path: '/test' });
expect(res.status).toBe(204);
expect(res.data).toBeNull();
});
it('falls back to text parsing for non-JSON responses', async () => {
const fetchSpy = vi.fn(() =>
Promise.resolve(
new Response('plain text response', {
status: 200,
headers: { 'content-type': 'text/plain' },
}),
),
);
const client = createFetchHttpClient({
...baseConfig,
fetch: fetchSpy,
});
const res = await client.request({ method: 'GET', path: '/test' });
expect(res.data).toBe('plain text response');
});
it('serializes query parameters correctly in buildUrl', async () => {
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const fetchSpy = vi.fn((_input: unknown, _init?: unknown) =>
Promise.resolve(
new Response(JSON.stringify({}), {
status: 200,
headers: { 'content-type': 'application/json' },
}),
),
);
const client = createFetchHttpClient({
...baseConfig,
fetch: fetchSpy,
});
await client.request({
method: 'GET',
path: '/test',
query: {
str: 'hello world',
num: 42,
bool: true,
skip: undefined,
},
});
const url = fetchSpy.mock.calls[0]?.[0] as URL | undefined;
if (!(url instanceof URL)) throw new Error('fetch was not called with URL');
const calledUrl = url;
expect(calledUrl.searchParams.get('str')).toBe('hello world');
expect(calledUrl.searchParams.get('num')).toBe('42');
expect(calledUrl.searchParams.get('bool')).toBe('true');
expect(calledUrl.searchParams.has('skip')).toBe(false);
});
it('serializes request body as JSON', async () => {
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const fetchSpy = vi.fn((_input: unknown, init?: unknown) =>
Promise.resolve(
new Response(JSON.stringify({}), {
status: 200,
headers: { 'content-type': 'application/json' },
}),
),
);
const client = createFetchHttpClient({
...baseConfig,
fetch: fetchSpy,
});
await client.request({
method: 'POST',
path: '/test',
body: { key: 'value', nested: { a: 1 } },
});
const init = fetchSpy.mock.calls[0]?.[1] as RequestInit | undefined;
const body = init?.body;
if (typeof body !== 'string') throw new Error('fetch body was not a string');
expect(JSON.parse(body)).toEqual({ key: 'value', nested: { a: 1 } });
});
});