-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror-handling.ts
More file actions
428 lines (380 loc) · 12.6 KB
/
error-handling.ts
File metadata and controls
428 lines (380 loc) · 12.6 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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
/**
* Error handling examples demonstrating various error scenarios.
*
* Run with: npx tsx examples/error-handling.ts
* Or with Deno: deno run --allow-net examples/error-handling.ts
*/
import { ABORT_ERROR, FetchError, fetchT, TIMEOUT_ERROR } from '../src/mod.ts';
const API_BASE = 'https://jsonplaceholder.typicode.com';
/**
* Example 1: Handle HTTP errors (4xx, 5xx)
*/
async function handleHttpErrors() {
console.log('--- Example 1: HTTP Errors ---');
// Request a non-existent resource (404)
const result = await fetchT(`${API_BASE}/posts/99999`, {
responseType: 'json',
});
result
.inspect((data) => {
console.log('Got data:', data);
})
.inspectErr((err) => {
if (err instanceof FetchError) {
console.log(`HTTP Error: ${err.status} - ${err.message}`);
} else {
console.log('Other error:', err.message);
}
});
}
/**
* Example 2: Handle network errors
*/
async function handleNetworkErrors() {
console.log('\n--- Example 2: Network Errors ---');
// Request to invalid host
const result = await fetchT('https://this-domain-does-not-exist-12345.com/api', {
responseType: 'json',
timeout: 5000, // 5 second timeout to avoid hanging
});
result
.inspect(() => {
console.log('Request succeeded (unexpected)');
})
.inspectErr((err) => {
if (err.name === TIMEOUT_ERROR) {
console.log('Request timed out');
} else {
console.log('Network error:', err.message);
}
});
}
/**
* Example 3: Handle invalid JSON response
*/
async function handleInvalidJson() {
console.log('\n--- Example 3: Invalid JSON ---');
// Request HTML page but expect JSON
const result = await fetchT('https://example.com', {
responseType: 'json',
});
result
.inspect((data) => {
console.log('Got data:', data);
})
.inspectErr((err) => {
console.log('JSON parse error:', err.message);
});
}
/**
* Example 4: Comprehensive error handling with type guards
*/
async function comprehensiveErrorHandling() {
console.log('\n--- Example 4: Comprehensive Error Handling ---');
async function safeFetch(url: string) {
const result = await fetchT(url, {
responseType: 'json',
timeout: 10000,
});
if (result.isOk()) {
const data = result.unwrap();
if (data == null) {
return { success: false as const, errorType: 'no_body', message: 'Response has no body' };
}
return { success: true as const, data };
}
const err = result.unwrapErr();
// Categorize the error
if (err.name === ABORT_ERROR) {
return { success: false as const, errorType: 'abort', message: 'Request was cancelled' };
}
if (err.name === TIMEOUT_ERROR) {
return { success: false as const, errorType: 'timeout', message: 'Request timed out' };
}
if (err instanceof FetchError) {
return { success: false as const, errorType: 'http', status: err.status, message: err.message };
}
return { success: false as const, errorType: 'unknown', message: err.message };
}
// Test with valid URL
const result1 = await safeFetch(`${API_BASE}/posts/1`);
if (result1.success) {
console.log('Valid URL - Got post:', (result1.data as { id: number; }).id);
} else {
console.log('Valid URL - Error:', result1.message);
}
// Test with invalid URL (404)
const result2 = await safeFetch(`${API_BASE}/posts/99999`);
if (result2.success) {
console.log('Invalid URL - Got data (unexpected)');
} else {
console.log(`Invalid URL - ${result2.errorType} error:`, result2.message);
}
}
/**
* Example 5: Manual retry on failure (before built-in retry feature)
*/
async function manualRetryOnFailure() {
console.log('\n--- Example 5: Manual Retry on Failure ---');
async function fetchWithRetry(
url: string,
maxRetries = 3,
delayMs = 1000,
): Promise<unknown> {
for (let attempt = 1; attempt <= maxRetries; attempt++) {
console.log(`Attempt ${attempt}/${maxRetries}...`);
const result = await fetchT(url, {
responseType: 'json',
timeout: 5000,
});
if (result.isOk()) {
return result.unwrap();
}
const err = result.unwrapErr();
// Check if error is retryable
const isRetryable =
err.name === TIMEOUT_ERROR ||
(err instanceof FetchError && err.status >= 500);
if (!isRetryable) {
throw err;
}
if (attempt < maxRetries) {
console.log(`Retrying in ${delayMs}ms...`);
await new Promise((resolve) => setTimeout(resolve, delayMs));
}
}
throw new Error(`Failed after ${maxRetries} attempts`);
}
try {
const data = await fetchWithRetry(`${API_BASE}/posts/1`);
console.log('Success! Got post:', (data as { id: number; }).id);
} catch (err) {
console.error('All retries failed:', (err as Error).message);
}
}
/**
* Example 6: Built-in retry feature
* Demonstrates the retry option with retries, delay, when, and onRetry properties.
*/
async function builtInRetry() {
console.log('\n--- Example 6: Built-in Retry Feature ---');
interface Post {
id: number;
title: string;
}
// Basic retry - retries on network errors by default
console.log('\n6a. Basic retry (network errors only):');
const result1 = await fetchT<Post>(`${API_BASE}/posts/1`, {
retry: 3,
responseType: 'json',
});
result1
.inspect((post) => {
if (post == null) {
console.log(' No body');
return;
}
console.log(' Got post:', post.id);
})
.inspectErr((err) => console.log(' Error:', err.message));
// Retry with static delay
console.log('\n6b. Retry with 500ms delay:');
const result2 = await fetchT<Post>(`${API_BASE}/posts/2`, {
retry: {
retries: 2,
delay: 500,
},
responseType: 'json',
});
result2
.inspect((post) => {
if (post == null) {
console.log(' No body');
return;
}
console.log(' Got post:', post.id);
})
.inspectErr((err) => console.log(' Error:', err.message));
// Retry with exponential backoff
console.log('\n6c. Retry with exponential backoff:');
const result3 = await fetchT<Post>(`${API_BASE}/posts/3`, {
retry: {
retries: 3,
delay: (attempt) => {
const delay = Math.min(1000 * Math.pow(2, attempt - 1), 10000);
console.log(` Backoff delay for attempt ${attempt}: ${delay}ms`);
return delay;
},
},
responseType: 'json',
});
result3
.inspect((post) => {
if (post == null) {
console.log(' No body');
return;
}
console.log(' Got post:', post.id);
})
.inspectErr((err) => console.log(' Error:', err.message));
// Retry on specific HTTP status codes
console.log('\n6d. Retry on specific HTTP status codes (500, 502, 503, 504):');
const result4 = await fetchT<Post>(`${API_BASE}/posts/4`, {
retry: {
retries: 3,
when: [500, 502, 503, 504],
},
responseType: 'json',
});
result4
.inspect((post) => {
if (post == null) {
console.log(' No body');
return;
}
console.log(' Got post:', post.id);
})
.inspectErr((err) => console.log(' Error:', err.message));
// Retry with custom condition
console.log('\n6e. Retry with custom condition:');
const result5 = await fetchT<Post>(`${API_BASE}/posts/5`, {
retry: {
retries: 3,
when: (error, attempt) => {
console.log(` Checking retry condition for attempt ${attempt}`);
// Retry on network errors or 5xx status codes
if (error instanceof FetchError) {
return error.status >= 500;
}
// Retry on all non-abort errors
return error.name !== ABORT_ERROR;
},
},
responseType: 'json',
});
result5
.inspect((post) => {
if (post == null) {
console.log(' No body');
return;
}
console.log(' Got post:', post.id);
})
.inspectErr((err) => console.log(' Error:', err.message));
// Retry with onRetry callback for logging
console.log('\n6f. Retry with onRetry callback:');
const result6 = await fetchT<Post>(`${API_BASE}/posts/6`, {
retry: {
retries: 3,
delay: 100,
onRetry: (error, attempt) => {
console.log(` [onRetry] Attempt ${attempt} starting after error: ${error.message}`);
},
},
responseType: 'json',
});
result6
.inspect((post) => {
if (post == null) {
console.log(' No body');
return;
}
console.log(' Got post:', post.id);
})
.inspectErr((err) => console.log(' Error:', err.message));
// Retry with timeout per attempt
console.log('\n6g. Retry with per-attempt timeout:');
const result7 = await fetchT<Post>(`${API_BASE}/posts/7`, {
retry: {
retries: 2,
when: (error) => error.name === TIMEOUT_ERROR,
onRetry: (_error, attempt) => console.log(` Retrying after timeout, attempt ${attempt}`),
},
timeout: 5000, // 5 seconds per attempt
responseType: 'json',
});
result7
.inspect((post) => {
if (post == null) {
console.log(' No body');
return;
}
console.log(' Got post:', post.id);
})
.inspectErr((err) => console.log(' Error:', err.message));
}
/**
* Example 7: Using Result methods for chaining
*/
async function resultChaining() {
console.log('\n--- Example 6: Result Chaining ---');
interface Post {
id: number;
title: string;
body: string;
userId: number;
}
const result = await fetchT<Post>(`${API_BASE}/posts/1`, {
responseType: 'json',
});
// Chain operations on the result
const processed = result
.map((post) => {
if (post == null) {
throw new Error('Response has no body');
}
return {
id: post.id,
title: post.title.toUpperCase(),
preview: `${ post.body.substring(0, 50) }...`,
};
})
.mapErr((err) => new Error(`Failed to fetch post: ${err.message}`));
processed
.inspect((data) => {
console.log('Processed post:');
console.log(' ID:', data.id);
console.log(' Title:', data.title);
console.log(' Preview:', data.preview);
})
.inspectErr((err) => {
console.error(err.message);
});
}
/**
* Example 8: Unwrap with default value
*/
async function unwrapWithDefault() {
console.log('\n--- Example 7: Unwrap with Default ---');
interface Post {
id: number;
title: string;
}
const defaultPost: Post = {
id: 0,
title: 'Default Post',
};
// Try to fetch a non-existent post
const result = await fetchT<Post>(`${API_BASE}/posts/99999`, {
responseType: 'json',
});
// Use unwrapOr to get a default value on error
const post = result.unwrapOr(defaultPost) ?? defaultPost;
console.log('Post title:', post.title);
// Or use unwrapOrElse for lazy evaluation
const post2 = result.unwrapOrElse((err) => {
console.log('Using default because:', err.message);
return defaultPost;
}) ?? defaultPost;
console.log('Post2 title:', post2.title);
}
// Run all examples
console.log('=== Error Handling Examples ===\n');
await handleHttpErrors();
await handleNetworkErrors();
await handleInvalidJson();
await comprehensiveErrorHandling();
await manualRetryOnFailure();
await builtInRetry();
await resultChaining();
await unwrapWithDefault();