-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathinstance.test.ts
343 lines (288 loc) · 7.43 KB
/
instance.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
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
import { expect, test } from 'vitest'
import { defineInstance } from './instance.js'
test('default', async () => {
let started = false
const foo = defineInstance(() => {
return {
name: 'foo',
host: 'localhost',
port: 3000,
async start() {
started = true
},
async stop() {
started = false
},
}
})
const instance = foo()
expect(started).toEqual(false)
await instance.start()
expect(started).toEqual(true)
await instance.stop()
expect(started).toEqual(false)
})
test('behavior: parameters', async () => {
let started = [false, {}]
const foo = defineInstance((parameters: { bar: string }) => {
return {
name: 'foo',
host: 'localhost',
port: 3000,
async start() {
started = [true, parameters]
},
async stop() {
started = [false, {}]
},
}
})
const instance = foo({ bar: 'baz' })
expect(started).toEqual([false, {}])
await instance.start()
expect(started).toEqual([true, { bar: 'baz' }])
await instance.stop()
expect(started).toEqual([false, {}])
})
test('behavior: start', async () => {
let count = 0
const foo = defineInstance(() => {
return {
name: 'foo',
host: 'localhost',
port: 3000,
async start() {
count++
},
async stop() {},
}
})
const instance = foo()
expect(instance.status).toEqual('idle')
const promise_1 = instance.start()
expect(instance.status).toEqual('starting')
const promise_2 = instance.start()
expect(instance.status).toEqual('starting')
expect(promise_1).toStrictEqual(promise_2)
expect(count).toEqual(1)
await promise_1
expect(instance.status).toEqual('started')
instance.stop()
expect(instance.status).toEqual('stopping')
expect(() => instance.start()).rejects.toThrowErrorMatchingInlineSnapshot(
`[Error: Instance "foo" is not in an idle or stopped state. Status: stopping]`,
)
})
test('behavior: start (error)', async () => {
const foo = defineInstance(() => {
return {
name: 'foo',
host: 'localhost',
port: 3000,
async start() {
throw new Error('oh no')
},
async stop() {},
}
})
const instance = foo()
expect(instance.status).toEqual('idle')
await expect(instance.start()).rejects.toThrowErrorMatchingInlineSnapshot(
'[Error: oh no]',
)
expect(instance.status).toEqual('idle')
})
test('behavior: stop', async () => {
let count = 0
const foo = defineInstance(() => {
return {
name: 'foo',
host: 'localhost',
port: 3000,
async start() {},
async stop() {
count++
},
}
})
const instance = foo()
await instance.start()
const promise_1 = instance.stop()
expect(instance.status).toEqual('stopping')
const promise_2 = instance.stop()
expect(instance.status).toEqual('stopping')
expect(promise_1).toStrictEqual(promise_2)
expect(count).toEqual(1)
await promise_1
expect(instance.status).toEqual('stopped')
instance.start()
expect(instance.status).toEqual('starting')
expect(() => instance.stop()).rejects.toThrowErrorMatchingInlineSnapshot(
`[Error: Instance "foo" is starting.]`,
)
})
test('behavior: stop (error)', async () => {
const foo = defineInstance(() => {
return {
name: 'foo',
host: 'localhost',
port: 3000,
async start() {},
async stop() {
throw new Error('oh no')
},
}
})
const instance = foo()
await instance.start()
expect(instance.status).toEqual('started')
await expect(instance.stop()).rejects.toThrowErrorMatchingInlineSnapshot(
'[Error: oh no]',
)
expect(instance.status).toEqual('started')
})
test('behavior: restart', async () => {
let count = 0
const foo = defineInstance(() => {
return {
name: 'foo',
host: 'localhost',
port: 3000,
async start() {
count++
},
async stop() {},
}
})
const instance = foo()
await instance.start()
expect(instance.status).toEqual('started')
const promise_1 = instance.restart()
expect(instance.status).toEqual('restarting')
const promise_2 = instance.restart()
expect(instance.status).toEqual('restarting')
expect(promise_1).toStrictEqual(promise_2)
await promise_1
await promise_2
expect(instance.status).toEqual('started')
expect(count).toEqual(2)
})
test('behavior: events', async () => {
const foo = defineInstance(() => {
let count = 0
return {
name: 'foo',
host: 'localhost',
port: 3000,
async start(_, { emitter }) {
emitter.emit('message', count.toString())
emitter.emit('listening')
if (count > 0) emitter.emit('stderr', 'stderr')
else emitter.emit('stdout', 'stdout')
count++
},
async stop({ emitter }) {
emitter.emit('exit', 0, 'SIGTERM')
emitter.emit('message', 'goodbye')
},
}
})
const listening = Promise.withResolvers<void>()
const message_1 = Promise.withResolvers<string>()
const stdout = Promise.withResolvers<string>()
const stderr = Promise.withResolvers<string>()
const exit = Promise.withResolvers<unknown>()
const instance = foo()
instance.once('listening', listening.resolve)
instance.once('message', message_1.resolve)
instance.once('stdout', stdout.resolve)
instance.once('stderr', stderr.resolve)
instance.once('exit', exit.resolve)
await instance.start()
await listening.promise
expect(await message_1.promise).toEqual('0')
expect(await stdout.promise).toEqual('stdout')
const message_2 = Promise.withResolvers()
instance.once('message', message_2.resolve)
await instance.stop()
expect(await message_2.promise).toEqual('goodbye')
await exit.promise
const message_3 = Promise.withResolvers()
instance.once('message', message_3.resolve)
await instance.start()
expect(await message_3.promise).toEqual('1')
expect(await stderr.promise).toEqual('stderr')
})
test('behavior: messages', async () => {
const foo = defineInstance(() => {
return {
name: 'foo',
host: 'localhost',
port: 3000,
async start(_, { emitter }) {
for (let i = 0; i < 50; i++) emitter.emit('message', i.toString())
},
async stop() {},
}
})
const instance = foo()
expect(instance.messages.get()).toEqual([])
await instance.start()
expect(instance.messages.get()).toMatchInlineSnapshot(`
[
"30",
"31",
"32",
"33",
"34",
"35",
"36",
"37",
"38",
"39",
"40",
"41",
"42",
"43",
"44",
"45",
"46",
"47",
"48",
"49",
]
`)
})
test('options: timeout', async () => {
const foo = defineInstance(() => {
return {
name: 'foo',
host: 'localhost',
port: 3000,
async start() {
await new Promise((resolve) => setTimeout(resolve, 200))
},
async stop() {},
}
})
const instance_1 = foo({ timeout: 100 })
await expect(() => instance_1.start()).rejects.toThrow(
'Instance "foo" failed to start in time',
)
const bar = defineInstance(() => {
return {
name: 'bar',
host: 'localhost',
port: 3000,
async start() {},
async stop() {
await new Promise((resolve) => setTimeout(resolve, 200))
},
}
})
const instance_2 = bar({ timeout: 100 })
await instance_2.start()
await expect(() => instance_2.stop()).rejects.toThrow(
'Instance "bar" failed to stop in time',
)
})