Files
discordeno/packages/gateway/tests/integration/connection.spec.ts
Fleny 919474069d chore: Migrate ESLint and prettier to Biome (#3634)
* Migrate eslint and prettier to biomejs

This does NOT include examples/bigbot as it has its own formatter

* Update to biome 1.8.0

* Readd dotenv dev dependency to rest

During a merge it got lost
2024-07-13 13:05:02 -05:00

184 lines
5.7 KiB
TypeScript

import { Intents } from '@discordeno/types'
import uWS from 'uWebSockets.js'
import { type GatewayManager, ShardSocketCloseCodes, createGatewayManager } from '../../src/index.js'
/**
* This value needs to be AT LEAST `1017`
*
* The reason for this is because the calculation in Shard.calculateSafeRequests will return 0 not allowing any sort of message to the websocket server.
* Discord uses a way higher number for this value, but during this test we lower it since it would be annoying and useless make the test last 40+ seconds to test the heartbeat, but to make this work it needs to be at least 1017 so that calculateSafeRequests return 2 allowing for the shard to send messages.
*/
const heartbeatInterval = 1050
function createGatewayManagerWithPort(port: number): GatewayManager {
return createGatewayManager({
connection: {
url: `ws://localhost:${port}`,
shards: 1,
sessionStartLimit: {
total: 1000,
remaining: 998,
resetAfter: 36579894,
maxConcurrency: 1,
},
},
token: ' ',
url: `ws://localhost:${port}`,
intents: Intents.Guilds,
events: {},
})
}
async function createUws(options: {
onOpen?: () => any
onMessage?: (message: any) => any
onClose?: (code: number, message: string) => any
closing?: boolean
}): Promise<{ port: number; uwsToken: uWS.us_listen_socket }> {
options.onOpen ??= () => {}
options.onMessage ??= (_message: any) => {}
options.onClose ??= (_code: number, _message: string) => {}
options.closing ??= false
return await new Promise<{ port: number; uwsToken: uWS.us_listen_socket }>((resolve, reject) => {
let port = 0
uWS
.App()
.ws('/*', {
compression: uWS.SHARED_COMPRESSOR,
maxPayloadLength: 16 * 1024 * 1024,
idleTimeout: 10,
open: async (ws) => {
if (options.closing) {
ws.end(3000)
return
}
ws.send(
JSON.stringify({
op: 10,
d: {
heartbeat_interval: heartbeatInterval,
},
}),
)
options.onOpen!()
},
message: async (ws, message, _isBinary) => {
const msg = JSON.parse(Buffer.from(message).toString())
options.onMessage!(msg)
if (msg.op === 1) {
ws.send(
JSON.stringify({
op: 11,
}),
)
return
}
if (msg.op === 2) {
ws.send(
JSON.stringify({
t: 'READY',
s: 1,
op: 0,
d: {
v: 10,
user_settings: {},
user: {
verified: true,
username: 'testing bot',
mfa_enabled: false,
id: '000000707882254000',
flags: 0,
email: null,
discriminator: '1687',
bot: true,
avatar: null,
},
shard: [0, 1],
session_type: 'normal',
session_id: '0dff79e1a6f2697388eb08924a0805c8',
resume_gateway_url: `ws://localhost:${port}`,
relationships: [],
private_channels: [],
presences: [],
guilds: [],
guild_join_requests: [],
geo_ordered_rtc_regions: [],
application: { id: '000000707882254000', flags: 27828224 },
},
}),
)
return
}
if (msg.op === 6) {
// resume
}
},
close: (_ws, code, message) => {
const msg = Buffer.from(message).toString()
options.onClose!(code, msg)
},
})
.listen(0, async (token) => {
if (!token) {
reject(new Error())
}
port = uWS.us_socket_local_port(token as uWS.us_listen_socket)
resolve({
port,
uwsToken: token,
})
})
})
}
describe('gateway', () => {
it('can connect to server', async function () {
this.timeout(15000)
let resolveConnected: () => void
const connected = new Promise<void>((resolve) => (resolveConnected = resolve))
const uwsOptions = { onOpen: resolveConnected!, closing: false }
const { port, uwsToken } = await createUws(uwsOptions)
const gateway = createGatewayManagerWithPort(port)
await gateway.spawnShards()
await connected
uwsOptions.closing = true
await gateway.shutdown(ShardSocketCloseCodes.Shutdown, 'User requested bot stop')
uWS.us_listen_socket_close(uwsToken)
})
it('will heartbeat', async function () {
this.timeout(15000)
let resolveHeartbeat: () => void
let resolveConnected: () => void
const connected = new Promise<void>((resolve) => (resolveConnected = resolve))
const heartbeated = new Promise<void>((resolve) => (resolveHeartbeat = resolve))
const uwsOptions = {
onOpen: resolveConnected!,
onMessage: (message: any) => {
if (message.op !== 1) return
resolveHeartbeat()
},
closing: false,
}
const { port, uwsToken } = await createUws(uwsOptions)
const gateway = createGatewayManagerWithPort(port)
await gateway.spawnShards()
await connected
const timeout = setTimeout(() => {
throw new Error('Not heartbeat in time')
}, heartbeatInterval)
await heartbeated
clearTimeout(timeout)
uwsOptions.closing = true
await gateway.shutdown(ShardSocketCloseCodes.Shutdown, 'User requested bot stop')
uWS.us_listen_socket_close(uwsToken)
})
})