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

220 lines
5.3 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
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)
}
}
flushTests()
.then(() => {
for (let j = 1; j <= totalServers; j++) {
runServer(j, configOverride).then(app => anotherServerDone(j, app))
2017-09-04 21:21:47 +02:00
}
})
})
}
function flushTests () {
return new Promise<void>((res, rej) => {
return exec('npm run clean:server:test', err => {
if (err) return rej(err)
return res()
})
})
}
2018-11-14 15:27:47 +01:00
function runServer (serverNumber: number, configOverride?: Object, args = []) {
2017-09-04 21:21:47 +02:00
const server: ServerInfo = {
app: null,
2017-09-07 15:27:35 +02:00
serverNumber: serverNumber,
2017-09-04 21:21:47 +02:00
url: `http://localhost:${9000 + serverNumber}`,
host: `localhost:${9000 + serverNumber}`,
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
}
const key = 'Database peertube_test' + serverNumber + ' is ready'
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
if (configOverride !== undefined) {
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 => {
server.app = fork(join(root(), 'dist', 'server.js'), args, options)
2017-09-04 21:21:47 +02:00
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)
2019-01-17 11:23:40 +01:00
process.on('exit', () => {
try {
process.kill(server.app.pid)
} catch { /* empty */ }
})
2017-09-04 21:21:47 +02:00
res(server)
})
2017-09-04 21:21:47 +02:00
})
}
async function reRunServer (server: ServerInfo, configOverride?: any) {
const newServer = await runServer(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)
}
}
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,
flushAndRunMultipleServers,
flushTests,
runServer,
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
}