PeerTube/shared/extra-utils/server/servers.ts

289 lines
7.2 KiB
TypeScript
Raw Normal View History

2018-12-11 09:16:41 +01:00
/* tslint:disable:no-unused-expression */
2017-09-04 21:21:47 +02:00
import { ChildProcess, exec, fork } from 'child_process'
import { join } from 'path'
2018-10-02 09:04:19 +02:00
import { root, wait } from '../miscs/miscs'
2018-12-11 09:16:41 +01:00
import { readdir, readFile } from 'fs-extra'
import { existsSync } from 'fs'
import { expect } from 'chai'
2019-03-05 10:58:44 +01:00
import { VideoChannel } from '../../models/videos'
2017-09-04 21:21:47 +02:00
interface ServerInfo {
app: ChildProcess,
url: string
host: string
2019-04-24 11:54:23 +02:00
port: number
parallel: boolean
internalServerNumber: number
2017-09-07 15:27:35 +02:00
serverNumber: number
2017-09-04 21:21:47 +02:00
client: {
id: string,
secret: string
}
user: {
username: string,
password: string,
email?: string
}
accessToken?: string
2019-03-05 10:58:44 +01:00
videoChannel?: VideoChannel
2017-09-04 21:21:47 +02:00
video?: {
id: number
uuid: string
2017-10-16 10:05:49 +02:00
name: string
2018-03-12 11:06:15 +01:00
account: {
name: string
}
2017-09-04 21:21:47 +02:00
}
remoteVideo?: {
id: number
uuid: string
}
2019-03-05 10:58:44 +01:00
videos?: { id: number, uuid: string }[]
2017-09-04 21:21:47 +02:00
}
2018-09-14 09:57:21 +02:00
function flushAndRunMultipleServers (totalServers: number, configOverride?: Object) {
2017-09-04 21:21:47 +02:00
let apps = []
let i = 0
return new Promise<ServerInfo[]>(res => {
function anotherServerDone (serverNumber, app) {
apps[serverNumber - 1] = app
i++
if (i === totalServers) {
return res(apps)
}
}
2019-04-24 10:53:40 +02:00
for (let j = 1; j <= totalServers; j++) {
flushAndRunServer(j, configOverride).then(app => anotherServerDone(j, app))
}
2017-09-04 21:21:47 +02:00
})
}
2019-04-24 10:53:40 +02:00
function flushTests (serverNumber?: number) {
2017-09-04 21:21:47 +02:00
return new Promise<void>((res, rej) => {
2019-04-24 10:53:40 +02:00
const suffix = serverNumber ? ` -- ${serverNumber}` : ''
return exec('npm run clean:server:test' + suffix, err => {
2017-09-04 21:21:47 +02:00
if (err) return rej(err)
return res()
})
})
}
2019-04-24 11:54:23 +02:00
function randomServer () {
const low = 10
const high = 10000
return Math.floor(Math.random() * (high - low) + low)
}
function flushAndRunServer (serverNumber: number, configOverrideArg?: Object, args = []) {
const parallel = process.env.MOCHA_PARALLEL === 'true'
const internalServerNumber = parallel ? randomServer() : serverNumber
const port = 9000 + internalServerNumber
2017-09-04 21:21:47 +02:00
const server: ServerInfo = {
app: null,
2019-04-24 11:54:23 +02:00
port,
internalServerNumber,
parallel,
serverNumber: internalServerNumber,
url: `http://localhost:${port}`,
host: `localhost:${port}`,
2017-09-04 21:21:47 +02:00
client: {
id: null,
secret: null
},
user: {
username: null,
password: null
}
}
// These actions are async so we need to be sure that they have both been done
const serverRunString = {
2018-04-18 15:27:33 +02:00
'Server listening': false
2017-09-04 21:21:47 +02:00
}
2019-04-24 11:54:23 +02:00
const key = 'Database peertube_test' + internalServerNumber + ' is ready'
2017-09-04 21:21:47 +02:00
serverRunString[key] = false
const regexps = {
client_id: 'Client id: (.+)',
client_secret: 'Client secret: (.+)',
user_username: 'Username: (.+)',
user_password: 'User password: (.+)'
}
// Share the environment
const env = Object.create(process.env)
env['NODE_ENV'] = 'test'
env['NODE_APP_INSTANCE'] = serverNumber.toString()
2017-09-07 15:27:35 +02:00
2019-04-24 11:54:23 +02:00
let configOverride: any = {}
if (parallel) {
configOverride = {
listen: {
port: port
},
webserver: {
port: port
},
database: {
suffix: '_test' + internalServerNumber
},
storage: {
tmp: `test${internalServerNumber}/tmp/`,
avatars: `test${internalServerNumber}/avatars/`,
videos: `test${internalServerNumber}/videos/`,
streaming_playlists: `test${internalServerNumber}/streaming-playlists/`,
redundancy: `test${internalServerNumber}/redundancy/`,
logs: `test${internalServerNumber}/logs/`,
previews: `test${internalServerNumber}/previews/`,
thumbnails: `test${internalServerNumber}/thumbnails/`,
torrents: `test${internalServerNumber}/torrents/`,
captions: `test${internalServerNumber}/captions/`,
cache: `test${internalServerNumber}/cache/`
},
admin: {
email: `admin${internalServerNumber}@example.com`
}
}
}
if (configOverrideArg !== undefined) {
Object.assign(configOverride, configOverrideArg)
2017-09-07 15:27:35 +02:00
}
2019-04-24 11:54:23 +02:00
env['NODE_CONFIG'] = JSON.stringify(configOverride)
2017-09-04 21:21:47 +02:00
const options = {
silent: true,
env: env,
detached: true
}
return new Promise<ServerInfo>(res => {
2019-04-24 11:54:23 +02:00
flushTests(internalServerNumber)
2019-04-24 10:53:40 +02:00
.then(() => {
2019-04-24 10:53:40 +02:00
server.app = fork(join(root(), 'dist', 'server.js'), args, options)
server.app.stdout.on('data', function onStdout (data) {
let dontContinue = false
// Capture things if we want to
for (const key of Object.keys(regexps)) {
const regexp = regexps[ key ]
const matches = data.toString().match(regexp)
if (matches !== null) {
if (key === 'client_id') server.client.id = matches[ 1 ]
else if (key === 'client_secret') server.client.secret = matches[ 1 ]
else if (key === 'user_username') server.user.username = matches[ 1 ]
else if (key === 'user_password') server.user.password = matches[ 1 ]
}
}
// Check if all required sentences are here
for (const key of Object.keys(serverRunString)) {
if (data.toString().indexOf(key) !== -1) serverRunString[ key ] = true
if (serverRunString[ key ] === false) dontContinue = true
}
// If no, there is maybe one thing not already initialized (client/user credentials generation...)
if (dontContinue === true) return
server.app.stdout.removeListener('data', onStdout)
process.on('exit', () => {
try {
process.kill(server.app.pid)
2019-04-24 11:54:23 +02:00
} catch { /* empty */ }
2019-04-24 10:53:40 +02:00
})
res(server)
})
2019-01-17 11:23:40 +01:00
})
2017-09-04 21:21:47 +02:00
})
}
async function reRunServer (server: ServerInfo, configOverride?: any) {
2019-04-24 10:53:40 +02:00
const newServer = await flushAndRunServer(server.serverNumber, configOverride)
2018-01-11 11:40:18 +01:00
server.app = newServer.app
return server
}
2018-12-11 09:16:41 +01:00
async function checkTmpIsEmpty (server: ServerInfo) {
2019-01-29 08:37:25 +01:00
return checkDirectoryIsEmpty(server, 'tmp')
}
async function checkDirectoryIsEmpty (server: ServerInfo, directory: string) {
2018-12-11 09:16:41 +01:00
const testDirectory = 'test' + server.serverNumber
2019-01-29 08:37:25 +01:00
const directoryPath = join(root(), testDirectory, directory)
2018-12-11 09:16:41 +01:00
const directoryExists = existsSync(directoryPath)
expect(directoryExists).to.be.true
const files = await readdir(directoryPath)
expect(files).to.have.lengthOf(0)
}
2017-09-04 21:21:47 +02:00
function killallServers (servers: ServerInfo[]) {
for (const server of servers) {
process.kill(-server.app.pid)
}
}
2019-04-24 11:54:23 +02:00
function cleanupTests (servers: ServerInfo[]) {
killallServers(servers)
const p: Promise<any>[] = []
for (const server of servers) {
if (server.parallel) {
p.push(flushTests(server.internalServerNumber))
}
}
return Promise.all(p)
}
2018-10-02 09:04:19 +02:00
async function waitUntilLog (server: ServerInfo, str: string, count = 1) {
const logfile = join(root(), 'test' + server.serverNumber, 'logs/peertube.log')
while (true) {
const buf = await readFile(logfile)
const matches = buf.toString().match(new RegExp(str, 'g'))
if (matches && matches.length === count) return
await wait(1000)
}
}
2017-09-04 21:21:47 +02:00
// ---------------------------------------------------------------------------
export {
2019-01-29 08:37:25 +01:00
checkDirectoryIsEmpty,
2018-12-11 09:16:41 +01:00
checkTmpIsEmpty,
2017-09-04 21:21:47 +02:00
ServerInfo,
2019-04-24 11:54:23 +02:00
cleanupTests,
2017-09-04 21:21:47 +02:00
flushAndRunMultipleServers,
flushTests,
2019-04-24 10:53:40 +02:00
flushAndRunServer,
2018-01-11 11:40:18 +01:00
killallServers,
2018-10-02 09:04:19 +02:00
reRunServer,
waitUntilLog
2017-09-04 21:21:47 +02:00
}