2021-01-14 15:55:19 +00:00
|
|
|
import * as express from "express"
|
2021-01-14 15:53:58 +00:00
|
|
|
import { createApp } from "../src/node/app"
|
2021-01-14 15:55:19 +00:00
|
|
|
import { parse, setDefaults, parseConfigFile, DefaultedArgs } from "../src/node/cli"
|
2021-01-14 15:53:58 +00:00
|
|
|
import { register } from "../src/node/routes"
|
|
|
|
import * as httpserver from "./httpserver"
|
|
|
|
|
2021-01-14 15:55:19 +00:00
|
|
|
export async function setup(
|
|
|
|
argv: string[],
|
|
|
|
configFile?: string,
|
|
|
|
): Promise<[express.Application, express.Application, httpserver.HttpServer, DefaultedArgs]> {
|
heart.ts: Fix leak when server closes
This had me very confused for quite a while until I did a binary search
inspection on route/index.ts. Only with the heart.beat line commented
out did my tests pass without leaking.
They weren't leaking fds but just this heartbeat timer and node of
course prints just fds that are active when it detects some sort of leak
I guess and that made the whole thing very confusing. These fds are not
leaked and will close when node's event loop detects there are no more
callbacks to run.
no of handles 3
tcp stream {
fd: 20,
readable: false,
writable: true,
address: {},
serverAddr: null
}
tcp stream {
fd: 22,
readable: false,
writable: true,
address: {},
serverAddr: null
}
tcp stream {
fd: 23,
readable: true,
writable: false,
address: {},
serverAddr: null
}
It kept printing the above text again and again for 60s and then the
test binary times out I think. I'm not sure if it was node printing the
stuff above or if it was a mocha thing. But it was really confusing...
cc @code-asher for thoughts on what was going on.
edit: It was the leaked-handles import in socket.test.ts!!!
Not sure if we should keep it, this was really confusing and misleading.
2021-01-18 13:30:00 +00:00
|
|
|
argv = ["--bind-addr=localhost:0", ...argv]
|
|
|
|
|
2021-01-14 15:53:58 +00:00
|
|
|
const cliArgs = parse(argv)
|
2021-01-14 15:55:19 +00:00
|
|
|
const configArgs = parseConfigFile(configFile || "", "test/integration.ts")
|
2021-01-14 15:53:58 +00:00
|
|
|
const args = await setDefaults(cliArgs, configArgs)
|
|
|
|
|
|
|
|
const [app, wsApp, server] = await createApp(args)
|
|
|
|
await register(app, wsApp, server, args)
|
|
|
|
|
|
|
|
return [app, wsApp, new httpserver.HttpServer(server), args]
|
|
|
|
}
|