-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathstream.test.ts
247 lines (199 loc) · 7.22 KB
/
stream.test.ts
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
import { Streamer } from '../stream'
import type { Options } from '../types'
import { Event } from '../types'
import { getRandom } from '../utils'
import type { Emitter } from 'mitt'
import type Poller from "../poller";
jest.useFakeTimers()
jest.mock('../utils.ts', () => ({
getRandom: jest.fn()
}))
const mockEventBus: Emitter = {
emit: jest.fn(),
on: jest.fn(),
off: jest.fn(),
all: new Map()
}
const mockXHR = {
open: jest.fn(),
setRequestHeader: jest.fn(),
send: jest.fn(),
abort: jest.fn(),
status: 0,
responseText: '',
onload: null,
onerror: null,
onprogress: null,
onabort: null,
ontimeout: null
}
global.XMLHttpRequest = jest.fn(() => mockXHR) as unknown as jest.MockedClass<typeof XMLHttpRequest>
const logError = jest.fn()
const logDebug = jest.fn()
const getStreamer = (overrides: Partial<Options> = {}, maxRetries: number = Infinity): Streamer => {
const options: Options = {
baseUrl: 'http://test',
eventUrl: 'http://event',
pollingInterval: 60000,
debug: true,
pollingEnabled: true,
streamEnabled: true,
...overrides
}
return new Streamer(
mockEventBus,
options,
`${options.baseUrl}/stream`,
'test-api-key',
{ 'Test-Header': 'value' },
{ start: jest.fn(), stop: jest.fn(), isPolling: jest.fn() } as unknown as Poller,
logDebug,
logError,
jest.fn(),
maxRetries
)
}
describe('Streamer', () => {
beforeEach(() => {
jest.clearAllMocks()
})
it('should connect and emit CONNECTED event', () => {
const streamer = getStreamer({}, 3)
streamer.start()
expect(mockXHR.open).toHaveBeenCalledWith('GET', 'http://test/stream')
expect(mockXHR.send).toHaveBeenCalled()
mockXHR.onprogress({} as ProgressEvent)
expect(mockEventBus.emit).toHaveBeenCalledWith(Event.CONNECTED)
})
it('should reconnect successfully after multiple failures', () => {
const streamer = getStreamer({}, 5)
streamer.start()
expect(mockXHR.send).toHaveBeenCalled()
for (let i = 0; i < 3; i++) {
mockXHR.onerror({} as ProgressEvent)
jest.advanceTimersByTime(getRandom(1000, 10000))
}
// Simulate a successful connection on the next attempt
mockXHR.onprogress({} as ProgressEvent)
expect(mockEventBus.emit).toHaveBeenCalledWith(Event.CONNECTED)
expect(mockXHR.send).toHaveBeenCalledTimes(4) // Should attempt to reconnect 3 times before succeeding
})
it('should retry connecting on error and eventually fallback to polling', () => {
const streamer = getStreamer()
streamer.start()
expect(mockXHR.send).toHaveBeenCalled()
for (let i = 0; i < 3; i++) {
mockXHR.onerror({} as ProgressEvent)
jest.advanceTimersByTime(getRandom(1000, 10000))
}
expect(mockEventBus.emit).toHaveBeenCalledWith(Event.DISCONNECTED)
})
it('should not retry after max retries are exhausted', () => {
const streamer = getStreamer({}, 3)
streamer.start()
expect(mockXHR.send).toHaveBeenCalled()
for (let i = 0; i < 3; i++) {
mockXHR.onerror({} as ProgressEvent)
jest.advanceTimersByTime(getRandom(1000, 10000))
}
mockXHR.onerror({} as ProgressEvent)
expect(logError).toHaveBeenCalledWith('Streaming: Max streaming retries reached. Staying in polling mode.')
expect(mockEventBus.emit).toHaveBeenCalledWith(Event.DISCONNECTED)
expect(mockXHR.send).toHaveBeenCalledTimes(3) // Should not send after max retries
})
it('should fallback to polling on stream failure', () => {
const poller = { start: jest.fn(), stop: jest.fn(), isPolling: jest.fn() } as unknown as Poller
const streamer = new Streamer(
mockEventBus,
{ baseUrl: 'http://test', eventUrl: 'http://event', pollingEnabled: true, streamEnabled: true, debug: true },
'http://test/stream',
'test-api-key',
{ 'Test-Header': 'value' },
poller,
logDebug,
logError,
jest.fn(),
Infinity
)
streamer.start()
expect(mockXHR.send).toHaveBeenCalled()
mockXHR.onerror({} as ProgressEvent)
jest.advanceTimersByTime(getRandom(1000, 10000))
expect(poller.start).toHaveBeenCalled()
expect(logDebug).toHaveBeenCalledWith('Streaming: Falling back to polling mode while stream recovers')
})
it('should stop polling when close is called if in fallback polling mode', () => {
const poller = { start: jest.fn(), stop: jest.fn(), isPolling: jest.fn() } as unknown as Poller
;(poller.isPolling as jest.Mock)
.mockImplementationOnce(() => false)
.mockImplementationOnce(() => true)
const streamer = new Streamer(
mockEventBus,
{ baseUrl: 'http://test', eventUrl: 'http://event', pollingEnabled: true, streamEnabled: true, debug: true },
'http://test/stream',
'test-api-key',
{ 'Test-Header': 'value' },
poller,
logDebug,
logError,
jest.fn(),
3
)
streamer.start()
expect(mockXHR.send).toHaveBeenCalled()
// Simulate stream failure and fallback to polling
mockXHR.onerror({} as ProgressEvent)
jest.advanceTimersByTime(getRandom(1000, 10000))
// Ensure polling has started
expect(poller.start).toHaveBeenCalled()
// Now close the streamer
streamer.close()
expect(mockXHR.abort).toHaveBeenCalled()
expect(poller.stop).toHaveBeenCalled()
expect(mockEventBus.emit).toHaveBeenCalledWith(Event.STOPPED)
})
it('should stop streaming but not call poller.stop if not in fallback polling mode when close is called', () => {
const poller = { start: jest.fn(), stop: jest.fn(), isPolling: jest.fn().mockReturnValue(false) } as unknown as Poller
const streamer = new Streamer(
mockEventBus,
{ baseUrl: 'http://test', eventUrl: 'http://event', pollingEnabled: true, streamEnabled: true, debug: true },
'http://test/stream',
'test-api-key',
{ 'Test-Header': 'value' },
poller,
logDebug,
logError,
jest.fn(),
3
)
streamer.start()
streamer.close()
expect(mockXHR.abort).toHaveBeenCalled()
expect(poller.stop).not.toHaveBeenCalled()
expect(mockEventBus.emit).toHaveBeenCalledWith(Event.STOPPED)
})
it('should retry indefinitely if maxRetries is set to Infinity', () => {
const streamer = getStreamer()
streamer.start()
expect(mockXHR.send).toHaveBeenCalled()
for (let i = 0; i < 100; i++) {
mockXHR.onerror({} as ProgressEvent)
jest.advanceTimersByTime(getRandom(1000, 10000))
}
expect(logError).not.toHaveBeenCalledWith('Streaming: Max streaming retries reached. Staying in polling mode.')
expect(mockXHR.send).toHaveBeenCalledTimes(101)
})
it('should reconnect successfully after multiple failures', () => {
const streamer = getStreamer({}, 5)
streamer.start()
expect(mockXHR.send).toHaveBeenCalled()
for (let i = 0; i < 3; i++) {
mockXHR.onerror({} as ProgressEvent)
jest.advanceTimersByTime(getRandom(1000, 10000))
}
// Simulate a successful connection on the next attempt
mockXHR.onprogress({} as ProgressEvent)
expect(mockEventBus.emit).toHaveBeenCalledWith(Event.CONNECTED)
expect(mockXHR.send).toHaveBeenCalledTimes(4) // Should attempt to reconnect 3 times before succeeding
})
})