forked from AubaidFarrukh/smart-retry
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathretryManager.test.ts
More file actions
143 lines (117 loc) · 3.5 KB
/
Copy pathretryManager.test.ts
File metadata and controls
143 lines (117 loc) · 3.5 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
import { RetryManager } from '../src/retryManager';
import fs from 'fs';
import path from 'path';
const TEST_LOG_PATH = path.join(__dirname, 'retry-test.json');
describe('RetryManager', () => {
let manager: RetryManager;
let callCount: number;
beforeEach(() => {
if (fs.existsSync(TEST_LOG_PATH)) {
fs.unlinkSync(TEST_LOG_PATH);
}
manager = new RetryManager({ maxRetries: 3, delay: 50 }, TEST_LOG_PATH);
callCount = 0;
});
afterEach(() => {
if (fs.existsSync(TEST_LOG_PATH)) {
fs.unlinkSync(TEST_LOG_PATH);
}
});
it('should succeed on first attempt', async () => {
const fn = async () => {
callCount++;
return 'success';
};
const result = await manager.execute(fn);
expect(result.success).toBe(true);
expect(result.data).toBe('success');
expect(result.attempts).toBe(1);
expect(callCount).toBe(1);
});
it('should retry on failure and eventually succeed', async () => {
const fn = async () => {
callCount++;
if (callCount < 3) {
const error: any = new Error('Temporary failure');
error.response = { status: 503 };
throw error;
}
return 'success';
};
const result = await manager.execute(fn);
expect(result.success).toBe(true);
expect(result.data).toBe('success');
expect(result.attempts).toBe(3);
expect(callCount).toBe(3);
});
it('should fail after max retries', async () => {
const fn = async () => {
callCount++;
const error: any = new Error('Persistent failure');
error.response = { status: 503 };
throw error;
};
const result = await manager.execute(fn);
expect(result.success).toBe(false);
expect(result.error.message).toBe('Persistent failure');
expect(result.attempts).toBe(3);
expect(callCount).toBe(3);
});
it('should not retry non-retryable errors', async () => {
const fn = async () => {
callCount++;
const error: any = new Error('Not found');
error.response = { status: 404 };
throw error;
};
const result = await manager.execute(fn);
expect(result.success).toBe(false);
expect(result.attempts).toBe(1);
expect(callCount).toBe(1);
});
it('should call onRetry hook', async () => {
const retryAttempts: number[] = [];
const managerWithHook = new RetryManager(
{
maxRetries: 3,
delay: 50,
onRetry: (attempt) => retryAttempts.push(attempt),
},
TEST_LOG_PATH
);
const fn = async () => {
callCount++;
if (callCount < 3) {
const error: any = new Error('Retry me');
error.response = { status: 503 };
throw error;
}
return 'success';
};
await managerWithHook.execute(fn);
expect(retryAttempts).toEqual([1, 2]);
});
it('should track total duration', async () => {
const fn = async () => {
callCount++;
if (callCount < 2) {
const error: any = new Error('Retry');
error.response = { status: 503 };
throw error;
}
return 'success';
};
const result = await manager.execute(fn);
expect(result.success).toBe(true);
expect(result.totalDuration).toBeGreaterThan(50);
});
it('should clear failed requests', async () => {
const fn = async () => {
throw new Error('Fail');
};
await manager.execute(fn);
expect(await manager.getFailedRequestCount()).toBe(1);
await manager.clearFailedRequests();
expect(await manager.getFailedRequestCount()).toBe(0);
});
});