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
202 lines (166 loc) · 5.13 KB
/
Copy pathretryManager.test.ts
File metadata and controls
202 lines (166 loc) · 5.13 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
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).toBeGreaterThanOrEqual(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);
});
describe('idempotent config', () => {
it('does not retry a POST by default, even on a retryable status', async () => {
const fn = async () => {
callCount++;
const error: any = new Error('Server error');
error.response = { status: 503 };
error.config = { method: 'post' };
throw error;
};
const result = await manager.execute(fn);
expect(result.success).toBe(false);
expect(result.attempts).toBe(1);
expect(callCount).toBe(1);
});
it('retries a POST when idempotent: true is set', async () => {
const idempotentManager = new RetryManager(
{ maxRetries: 3, delay: 50, idempotent: true },
TEST_LOG_PATH
);
const fn = async () => {
callCount++;
if (callCount < 2) {
const error: any = new Error('Server error');
error.response = { status: 503 };
error.config = { method: 'post' };
throw error;
}
return 'success';
};
const result = await idempotentManager.execute(fn);
expect(result.success).toBe(true);
expect(callCount).toBe(2);
});
it('still retries GET/PUT/DELETE by default', async () => {
const fn = async () => {
callCount++;
if (callCount < 2) {
const error: any = new Error('Server error');
error.response = { status: 503 };
error.config = { method: 'get' };
throw error;
}
return 'success';
};
const result = await manager.execute(fn);
expect(result.success).toBe(true);
expect(callCount).toBe(2);
});
});
});