Files
cypress/packages/socket/lib/socket.ts
2021-12-06 15:31:25 -06:00

47 lines
1.3 KiB
TypeScript

import fs from 'fs'
import buffer from 'buffer'
import type http from 'http'
import server, { Server as SocketIOBaseServer, ServerOptions } from 'socket.io'
import { client } from './browser'
const { version } = require('socket.io-client/package.json')
const clientSource = require.resolve('socket.io-client/dist/socket.io.js')
export { ServerOptions }
// socket.io types are incorrect
type PatchedServerOptions = ServerOptions & { cookie: { name: string | boolean } }
class SocketIOServer extends SocketIOBaseServer {
constructor (srv: http.Server, opts?: Partial<PatchedServerOptions>) {
opts = opts ?? {}
// the maxHttpBufferSize is used to limit the message size sent over
// the socket. Small values can be used to mitigate exposure to
// denial of service attacks; the default as of v3.0 is 1MB.
// because our server is local, we do not need to arbitrarily limit
// the message size and can use the theoretical maximum value.
opts.maxHttpBufferSize = opts.maxHttpBufferSize ?? buffer.constants.MAX_LENGTH
super(srv, opts)
}
}
export {
client,
server,
SocketIOServer,
}
export const getPathToClientSource = () => {
return clientSource
}
export const getClientVersion = () => {
return version
}
export const getClientSource = () => {
return fs.readFileSync(getPathToClientSource(), 'utf8')
}