-
Notifications
You must be signed in to change notification settings - Fork 22
/
cluster.test.ts
executable file
·409 lines (335 loc) · 12.6 KB
/
cluster.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
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
/* eslint @stylistic/js/semi: ["error", "never"] */
/* eslint @stylistic/js/quotes: ["error", "double"] */
/* eslint-disable @typescript-eslint/no-unused-expressions */
import { writeFile, rm } from "node:fs/promises"
import { existsSync } from "node:fs"
import { text } from "node:stream/consumers"
import cp, { ChildProcess } from "node:child_process"
import { describe, beforeAll, afterAll, test, expect, assert, beforeEach, afterEach } from "vitest"
import { Stream } from "./web/shared/api"
async function sleep(ms: number): Promise<void> {
return new Promise(resolve => {
setTimeout(resolve, ms)
})
}
interface ExitedProcess {
exitCode: number;
stdout: string;
stderr: string;
}
interface SpawnOptions {
env?: Record<string, string>;
stdin?: null;
stdout?: null;
stderr?: null;
onExit?: (e: ExitedProcess) => void;
}
function toNodeSpawnOptions(o: SpawnOptions = {}): cp.SpawnOptions {
return {
env: o.env,
stdio: [o.stdin ?? "pipe", o.stdout ?? "pipe", o.stderr ?? "pipe"]
}
}
function spawn(command: string | string[], options?: SpawnOptions) {
const cmd = Array.isArray(command) ? command[0] : command
const arg = Array.isArray(command) ? command.slice(1) : []
const process = cp.spawn(cmd, arg, toNodeSpawnOptions(options))
process[Symbol.dispose] = () => {
process.kill()
}
process.on("exit", async () => {
const exitCode = process.exitCode ?? 0
const stdout = (process.stdout && await text(process.stdout)) ?? ""
const stderr = (process.stderr && await text(process.stderr)) ?? ""
options?.onExit?.({ exitCode, stdout, stderr })
})
return process
}
function spawnSync(command: string | string[]) {
const cmd = Array.isArray(command) ? command[0] : command
const arg = Array.isArray(command) ? command.slice(1) : []
return cp.spawnSync(cmd, arg)
}
async function tempFile(path: string, content: string) {
await writeFile(path, content)
return {
async [Symbol.asyncDispose]() {
await rm(path)
}
}
}
function rmTempFile(path: string) {
return {
async [Symbol.dispose]() {
await rm(path)
}
}
}
async function until<T>(
fn: () => Promise<T> | T,
predicate: (t: T) => boolean = t => t as boolean,
interval = 100
): Promise<void> {
do {
await sleep(interval)
} while (!predicate(await fn()))
}
async function untilHttpOk(host: string): Promise<void> {
await until(() => fetch(host).then(r => r.ok).catch(() => false), ok => ok)
}
async function getStreams(server: string): Promise<Stream[]> {
return (await fetch(`${server}/api/streams/`)).json()
}
async function hasPublishStreams(server: string): Promise<boolean> {
return (await getStreams(server))[0]?.publish.sessions.length > 0
}
async function hasSubscribeStreams(server: string): Promise<boolean> {
return (await getStreams(server))[0]?.subscribe.sessions.length > 0
}
async function cascade(server: string, streamId: string, url: string) {
return fetch(`${server}/api/cascade/${streamId}`, {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
targetUrl: url,
}),
})
}
interface ServerOptions {
name: string;
cmd: string[];
env: Record<string, string>;
}
class UpCluster {
srvs: ChildProcess[]
constructor(servers: ServerOptions[]) {
this.srvs = servers.map(s => spawn(s.cmd, {
env: s.env,
stderr: null,
onExit: e => {
e.exitCode && console.log(`${s.name}: ${e.stderr}`)
this.down()
},
}))
}
down() {
this.srvs.forEach(s => s.kill())
}
[Symbol.dispose]() {
this.down()
}
}
describe("test single live777", () => {
const localhost = "127.0.0.1"
const appRust = "target/release/"
const appLive777 = appRust + "live777"
const live777Port = "7777"
const live777Host = `http://${localhost}:${live777Port}`
let live777: ChildProcess | null = null
beforeEach(async () => {
live777 = spawn([appLive777], {
env: { PORT: live777Port },
onExit: e => { e.exitCode && console.log(e.stderr) }
})
await untilHttpOk(live777Host)
})
afterEach(async () => {
live777?.kill()
})
test("minimum", async () => {
const res = await getStreams(live777Host)
expect(res).toHaveLength(0)
})
test("create stream", async () => {
const live777Stream = "888"
const resCreate = await fetch(`${live777Host}/api/streams/${live777Stream}`, {
method: "POST",
})
expect(resCreate.status).toBe(204)
const streams = await getStreams(live777Host)
expect(streams).toHaveLength(1)
})
test("create stream connect", async () => {
const live777Stream = "888"
const appWhipinto = appRust + "whipinto"
const tmpFileSdpWhipinto = "test_whipinto_stream.sdp"
const resCreate = await fetch(`${live777Host}/api/streams/${live777Stream}`, {
method: "POST",
})
expect(resCreate.status).toBe(204)
await using _ = await tempFile(tmpFileSdpWhipinto, `
v=0
m=video 5002 RTP/AVP 96
c=IN IP4 127.0.0.1
a=rtpmap:96 VP8/90000
`)
using _whipinto = spawn([
appWhipinto,
"-i", tmpFileSdpWhipinto,
"-w", `${live777Host}/whip/${live777Stream}`,
], { onExit: e => { e.exitCode && console.log(e.stderr) } })
await until(() => hasPublishStreams(live777Host))
const resIndex = (await getStreams(live777Host)).find(r => r.id === live777Stream)
expect(resIndex?.publish.sessions).toHaveLength(1)
expect(resIndex?.publish.sessions[0].state).toBe("connected")
})
})
describe("test cluster", () => {
const localhost = "127.0.0.1"
const appRust = "target/release/"
const appLiveman = appRust + "liveman"
const appLive777 = appRust + "live777"
const appWhipinto = appRust + "whipinto"
const appWhepfrom = appRust + "whepfrom"
const tmpFileConfigVerge = "test_config-verge.toml"
const tmpFileConfigCloud = "test_config-cloud.toml"
const tmpFileConfigMan = "test_config-man.toml"
const tmpFileSdpWhipinto = "test_whipinto_stream.sdp"
const tmpFileSdpWhepfrom = "test_whepfrom_stream.sdp"
const live777VergePort = "7778"
const live777VergeHost = `http://${localhost}:${live777VergePort}`
const live777VergeStream = "888"
const live777CloudPort = "7779"
const live777CloudHost = `http://${localhost}:${live777CloudPort}`
const live777CloudStream = "999"
const live777LivemanPort = "8080"
const live777LivemanHost = `http://${localhost}:${live777LivemanPort}`
const live777LivemanStream = "888"
let serv: UpCluster | null
beforeAll(async () => {
const fileContentVerge = `
[strategy]
cascade_push_close_sub = true
each_stream_max_sub = 1
`
const fileContentCloud = `
[strategy]
cascade_push_close_sub = true
`
const fileContentMan = `
[cascade]
close_other_sub = true
[[nodes]]
alias = "test-verge"
url = "http://${localhost}:${live777VergePort}"
[[nodes]]
alias = "test-cloud"
url = "http://${localhost}:${live777CloudPort}"
`
await writeFile(tmpFileConfigVerge, fileContentVerge)
await writeFile(tmpFileConfigCloud, fileContentCloud)
await writeFile(tmpFileConfigMan, fileContentMan)
serv = new UpCluster([
{
name: "live777Verge",
cmd: [appLive777, "--config", tmpFileConfigVerge],
env: { PORT: live777VergePort },
}, {
name: "live777Cloud",
cmd: [appLive777, "--config", tmpFileConfigCloud],
env: { PORT: live777CloudPort },
}, {
name: "live777Liveman",
cmd: [appLiveman, "--config", tmpFileConfigMan],
env: { PORT: live777LivemanPort },
}
])
await Promise.all([live777VergeHost, live777CloudHost, live777LivemanHost].map(untilHttpOk))
})
beforeEach(async () => {
await until(() => getStreams(live777LivemanHost), s => s.length === 0)
})
test("cascade", { timeout: 60 * 1000 }, async () => {
const width = 320, height = 240
const whipintoPort = "5002"
using _ffmpeg = spawn([
"ffmpeg", "-hide_banner", "-re", "-f", "lavfi",
"-i", `testsrc=size=${width}x${height}:rate=30`,
"-vcodec", "libvpx",
"-f", "rtp", `rtp://127.0.0.1:${whipintoPort}`,
"-sdp_file", tmpFileSdpWhipinto
], {
stderr: null,
onExit: e => { e.exitCode && console.log(e.stderr) },
})
using _ = rmTempFile(tmpFileSdpWhipinto)
await until(() => existsSync(tmpFileSdpWhipinto))
using _whipinto = spawn([
appWhipinto,
"-i", tmpFileSdpWhipinto,
"-w", `${live777VergeHost}/whip/${live777VergeStream}`,
], { onExit: e => { e.exitCode && console.log(e.stderr) } })
await until(() => hasPublishStreams(live777VergeHost))
const resCascade = await cascade(`http://127.0.0.1:${live777VergePort}`, live777VergeStream, `${live777CloudHost}/whip/${live777CloudStream}`)
assert(resCascade.ok)
await until(() => hasPublishStreams(live777CloudHost))
using _whepfrom = spawn([
appWhepfrom,
"-o", tmpFileSdpWhepfrom,
"-w", `${live777CloudHost}/whep/${live777CloudStream}`,
], {
onExit: e => { e.exitCode && console.log(e.stderr) },
})
await until(() => existsSync(tmpFileSdpWhepfrom))
const res = spawnSync(["ffprobe", "-v", "error", "-hide_banner",
"-protocol_whitelist", "file,rtp,udp", "-i", tmpFileSdpWhepfrom,
"-show_format", "-show_streams", "-of", "json"])
expect(res.status).toEqual(0)
const ffprobe = JSON.parse(res.stdout.toString())
expect(ffprobe.streams.length).toEqual(1)
expect(ffprobe.streams[0].width).toEqual(width)
expect(ffprobe.streams[0].height).toEqual(height)
await until(() => hasSubscribeStreams(live777CloudHost))
const streams = await getStreams(live777CloudHost)
expect(streams).toHaveLength(1)
expect(streams[0].subscribe.sessions).toHaveLength(1)
})
test("p2p to sfu", { timeout: 60 * 1000 }, async () => {
const whipintoPort = "5006"
using _ffmpeg = spawn([
"ffmpeg", "-hide_banner", "-re", "-f", "lavfi",
"-i", "testsrc=size=320x240:rate=30",
"-vcodec", "libvpx",
"-f", "rtp", `rtp://127.0.0.1:${whipintoPort}`,
"-sdp_file", tmpFileSdpWhipinto
], { onExit: e => { e.exitCode && console.log(e.stderr) } })
using _ = rmTempFile(tmpFileSdpWhipinto)
await until(() => existsSync(tmpFileSdpWhipinto))
using _whipinto = spawn([
appWhipinto,
"-i", tmpFileSdpWhipinto,
"-w", `${live777VergeHost}/whip/${live777VergeStream}`,
], { onExit: e => { e.exitCode && console.log("whipinto", e.stderr) } })
await until(() => hasPublishStreams(live777VergeHost))
await until(() => hasPublishStreams(live777LivemanHost))
using _whepfrom1 = spawn([
appWhepfrom,
"-o", tmpFileSdpWhepfrom,
"-w", `${live777LivemanHost}/whep/${live777LivemanStream}`,
], { onExit: e => { e.exitCode && console.log("whepfrom 1", e.stderr) } })
await until(() => hasSubscribeStreams(live777VergeHost))
using _whepfrom2 = spawn([
appWhepfrom,
"-o", tmpFileSdpWhepfrom,
"-w", `${live777LivemanHost}/whep/${live777LivemanStream}`,
], { onExit: e => { e.exitCode && console.log("whepfrom 2", e.stderr) } })
await Promise.all([
until(() => hasSubscribeStreams(live777VergeHost)),
until(() => hasSubscribeStreams(live777CloudHost)),
])
const res1 = (await getStreams(live777VergeHost)).find(r => r.id === live777LivemanStream)
const res2 = (await getStreams(live777CloudHost)).find(r => r.id === live777LivemanStream)
expect(res1).toBeTruthy()
expect(res1?.subscribe.sessions.length).toEqual(1)
expect(res2).toBeTruthy()
expect(res2?.subscribe.sessions.length).toEqual(1)
})
afterAll(async () => {
await rm(tmpFileConfigVerge)
await rm(tmpFileConfigCloud)
await rm(tmpFileConfigMan)
serv?.down()
}, 60 * 1000)
})