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

414 lines
12 KiB
TypeScript
Raw Normal View History

2020-01-31 09:56:52 -06:00
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/no-floating-promises */
2018-12-11 02:16:41 -06:00
2021-07-13 02:43:59 -05:00
import { ChildProcess, fork } from 'child_process'
import { copy, ensureDir } from 'fs-extra'
2020-11-06 09:43:43 -06:00
import { join } from 'path'
2021-07-13 02:43:59 -05:00
import { root } from '@server/helpers/core-utils'
2019-04-24 08:10:37 -05:00
import { randomInt } from '../../core-utils/miscs/miscs'
2021-02-16 01:50:40 -06:00
import { VideoChannel } from '../../models/videos'
2021-07-05 09:37:50 -05:00
import { BulkCommand } from '../bulk'
import { CLICommand } from '../cli'
2021-07-06 02:55:05 -05:00
import { CustomPagesCommand } from '../custom-pages'
2021-07-06 03:21:35 -05:00
import { FeedCommand } from '../feeds'
2021-07-06 03:34:29 -05:00
import { LogsCommand } from '../logs'
2021-07-13 02:43:59 -05:00
import { isGithubCI, parallelTests, SQLCommand } from '../miscs'
2021-07-06 05:01:59 -05:00
import { AbusesCommand } from '../moderation'
2021-07-06 07:30:20 -05:00
import { OverviewsCommand } from '../overviews'
2021-07-06 08:22:51 -05:00
import { SearchCommand } from '../search'
2021-07-07 04:55:16 -05:00
import { SocketIOCommand } from '../socket'
2021-07-13 07:23:01 -05:00
import { AccountsCommand, BlocklistCommand, LoginCommand, NotificationsCommand, SubscriptionsCommand, UsersCommand } from '../users'
2021-07-08 09:49:51 -05:00
import {
BlacklistCommand,
CaptionsCommand,
ChangeOwnershipCommand,
2021-07-09 04:21:30 -05:00
ChannelsCommand,
2021-07-08 09:49:51 -05:00
HistoryCommand,
ImportsCommand,
LiveCommand,
PlaylistsCommand,
2021-07-09 03:21:10 -05:00
ServicesCommand,
2021-07-15 03:02:54 -05:00
StreamingPlaylistsCommand,
VideosCommand
2021-07-08 09:49:51 -05:00
} from '../videos'
2021-07-09 07:15:11 -05:00
import { CommentsCommand } from '../videos/comments-command'
2021-07-07 04:51:09 -05:00
import { ConfigCommand } from './config-command'
2021-07-06 08:53:25 -05:00
import { ContactFormCommand } from './contact-form-command'
2021-07-06 09:02:11 -05:00
import { DebugCommand } from './debug-command'
2021-07-07 02:16:40 -05:00
import { FollowsCommand } from './follows-command'
2021-07-07 02:34:56 -05:00
import { JobsCommand } from './jobs-command'
2021-07-07 03:33:49 -05:00
import { PluginsCommand } from './plugins-command'
2021-07-07 03:56:45 -05:00
import { RedundancyCommand } from './redundancy-command'
2021-07-13 02:43:59 -05:00
import { ServersCommand } from './servers-command'
2021-07-07 04:07:12 -05:00
import { StatsCommand } from './stats-command'
2017-09-04 14:21:47 -05:00
interface ServerInfo {
2021-07-09 08:03:44 -05:00
app?: ChildProcess
2020-11-02 08:43:44 -06:00
2017-09-04 14:21:47 -05:00
url: string
2021-07-09 08:03:44 -05:00
host?: string
hostname?: string
port?: number
2020-11-02 08:43:44 -06:00
2021-07-09 08:03:44 -05:00
rtmpPort?: number
2020-11-06 09:43:43 -06:00
2021-07-09 08:03:44 -05:00
parallel?: boolean
2019-04-24 04:54:23 -05:00
internalServerNumber: number
2021-07-16 02:04:35 -05:00
2021-07-09 08:03:44 -05:00
serverNumber?: number
2021-07-16 02:04:35 -05:00
customConfigFile?: string
2017-09-04 14:21:47 -05:00
2021-07-16 02:04:35 -05:00
store?: {
client?: {
id?: string
secret?: string
}
2017-09-04 14:21:47 -05:00
2021-07-16 02:04:35 -05:00
user?: {
username: string
password: string
email?: string
}
2017-09-04 14:21:47 -05:00
2021-07-16 02:04:35 -05:00
channel?: VideoChannel
2019-04-24 08:10:37 -05:00
2021-07-16 02:04:35 -05:00
video?: {
id: number
uuid: string
shortUUID: string
name?: string
url?: string
2017-09-04 14:21:47 -05:00
2021-07-16 02:04:35 -05:00
account?: {
name: string
}
2021-05-14 05:04:44 -05:00
2021-07-16 02:04:35 -05:00
embedPath?: string
2018-03-12 05:06:15 -05:00
}
2021-05-14 05:04:44 -05:00
2021-07-16 02:04:35 -05:00
videos?: { id: number, uuid: string }[]
2017-09-04 14:21:47 -05:00
}
2021-07-16 02:04:35 -05:00
accessToken?: string
refreshToken?: string
2019-03-05 03:58:44 -06:00
2021-07-16 02:04:35 -05:00
bulk?: BulkCommand
cli?: CLICommand
customPage?: CustomPagesCommand
feed?: FeedCommand
logs?: LogsCommand
abuses?: AbusesCommand
overviews?: OverviewsCommand
search?: SearchCommand
contactForm?: ContactFormCommand
debug?: DebugCommand
follows?: FollowsCommand
jobs?: JobsCommand
plugins?: PluginsCommand
redundancy?: RedundancyCommand
stats?: StatsCommand
config?: ConfigCommand
socketIO?: SocketIOCommand
accounts?: AccountsCommand
blocklist?: BlocklistCommand
subscriptions?: SubscriptionsCommand
live?: LiveCommand
services?: ServicesCommand
blacklist?: BlacklistCommand
captions?: CaptionsCommand
changeOwnership?: ChangeOwnershipCommand
playlists?: PlaylistsCommand
history?: HistoryCommand
imports?: ImportsCommand
streamingPlaylists?: StreamingPlaylistsCommand
channels?: ChannelsCommand
comments?: CommentsCommand
sql?: SQLCommand
notifications?: NotificationsCommand
servers?: ServersCommand
login?: LoginCommand
users?: UsersCommand
videos?: VideosCommand
2019-04-24 08:10:37 -05:00
}
2018-09-14 02:57:21 -05:00
function flushAndRunMultipleServers (totalServers: number, configOverride?: Object) {
2020-01-31 09:56:52 -06:00
const apps = []
2017-09-04 14:21:47 -05:00
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 03:53:40 -05:00
for (let j = 1; j <= totalServers; j++) {
flushAndRunServer(j, configOverride).then(app => anotherServerDone(j, app))
}
2017-09-04 14:21:47 -05:00
})
}
2019-04-24 04:54:23 -05:00
function randomServer () {
const low = 10
const high = 10000
2019-04-24 08:10:37 -05:00
return randomInt(low, high)
2019-04-24 04:54:23 -05:00
}
2020-11-06 09:43:43 -06:00
function randomRTMP () {
const low = 1900
const high = 2100
return randomInt(low, high)
}
2020-11-30 07:47:54 -06:00
type RunServerOptions = {
hideLogs?: boolean
execArgv?: string[]
}
async function flushAndRunServer (serverNumber: number, configOverride?: Object, args = [], options: RunServerOptions = {}) {
2019-04-24 08:10:37 -05:00
const parallel = parallelTests()
2019-04-24 04:54:23 -05:00
const internalServerNumber = parallel ? randomServer() : serverNumber
2020-11-17 09:14:11 -06:00
const rtmpPort = parallel ? randomRTMP() : 1936
2019-04-24 04:54:23 -05:00
const port = 9000 + internalServerNumber
2021-07-13 02:43:59 -05:00
await ServersCommand.flushTests(internalServerNumber)
2019-04-24 05:02:04 -05:00
2017-09-04 14:21:47 -05:00
const server: ServerInfo = {
app: null,
2019-04-24 04:54:23 -05:00
port,
internalServerNumber,
2020-11-06 09:43:43 -06:00
rtmpPort,
2019-04-24 04:54:23 -05:00
parallel,
2019-04-24 08:10:37 -05:00
serverNumber,
2019-04-24 04:54:23 -05:00
url: `http://localhost:${port}`,
host: `localhost:${port}`,
2020-11-02 08:43:44 -06:00
hostname: 'localhost',
2021-07-16 02:04:35 -05:00
store: {
client: {
id: null,
secret: null
},
user: {
username: null,
password: null
}
2017-09-04 14:21:47 -05:00
}
}
2020-11-30 07:47:54 -06:00
return runServer(server, configOverride, args, options)
2019-04-24 07:00:30 -05:00
}
2020-11-30 07:47:54 -06:00
async function runServer (server: ServerInfo, configOverrideArg?: any, args = [], options: RunServerOptions = {}) {
2017-09-04 14:21:47 -05:00
// These actions are async so we need to be sure that they have both been done
const serverRunString = {
2021-01-11 03:33:29 -06:00
'HTTP server listening': false
2017-09-04 14:21:47 -05:00
}
2019-04-24 07:00:30 -05:00
const key = 'Database peertube_test' + server.internalServerNumber + ' is ready'
2017-09-04 14:21:47 -05:00
serverRunString[key] = false
const regexps = {
client_id: 'Client id: (.+)',
client_secret: 'Client secret: (.+)',
user_username: 'Username: (.+)',
user_password: 'User password: (.+)'
}
2019-04-24 08:10:37 -05:00
if (server.internalServerNumber !== server.serverNumber) {
const basePath = join(root(), 'config')
const tmpConfigFile = join(basePath, `test-${server.internalServerNumber}.yaml`)
await copy(join(basePath, `test-${server.serverNumber}.yaml`), tmpConfigFile)
server.customConfigFile = tmpConfigFile
}
2017-09-07 08:27:35 -05:00
2019-04-24 08:10:37 -05:00
const configOverride: any = {}
2019-04-24 04:54:23 -05:00
2019-04-24 07:00:30 -05:00
if (server.parallel) {
2019-04-24 08:10:37 -05:00
Object.assign(configOverride, {
2019-04-24 04:54:23 -05:00
listen: {
2019-04-24 07:00:30 -05:00
port: server.port
2019-04-24 04:54:23 -05:00
},
webserver: {
2019-04-24 07:00:30 -05:00
port: server.port
2019-04-24 04:54:23 -05:00
},
database: {
2019-04-24 07:00:30 -05:00
suffix: '_test' + server.internalServerNumber
2019-04-24 04:54:23 -05:00
},
storage: {
2019-04-24 07:00:30 -05:00
tmp: `test${server.internalServerNumber}/tmp/`,
avatars: `test${server.internalServerNumber}/avatars/`,
videos: `test${server.internalServerNumber}/videos/`,
streaming_playlists: `test${server.internalServerNumber}/streaming-playlists/`,
redundancy: `test${server.internalServerNumber}/redundancy/`,
logs: `test${server.internalServerNumber}/logs/`,
previews: `test${server.internalServerNumber}/previews/`,
thumbnails: `test${server.internalServerNumber}/thumbnails/`,
torrents: `test${server.internalServerNumber}/torrents/`,
captions: `test${server.internalServerNumber}/captions/`,
2019-07-19 10:30:41 -05:00
cache: `test${server.internalServerNumber}/cache/`,
plugins: `test${server.internalServerNumber}/plugins/`
2019-04-24 04:54:23 -05:00
},
admin: {
2019-04-24 07:00:30 -05:00
email: `admin${server.internalServerNumber}@example.com`
2020-11-06 09:43:43 -06:00
},
live: {
rtmp: {
port: server.rtmpPort
}
2019-04-24 04:54:23 -05:00
}
2019-04-24 08:10:37 -05:00
})
2019-04-24 04:54:23 -05:00
}
if (configOverrideArg !== undefined) {
Object.assign(configOverride, configOverrideArg)
2017-09-07 08:27:35 -05:00
}
2019-04-24 08:10:37 -05:00
// Share the environment
const env = Object.create(process.env)
env['NODE_ENV'] = 'test'
env['NODE_APP_INSTANCE'] = server.internalServerNumber.toString()
2019-04-24 04:54:23 -05:00
env['NODE_CONFIG'] = JSON.stringify(configOverride)
2020-11-30 07:47:54 -06:00
const forkOptions = {
2017-09-04 14:21:47 -05:00
silent: true,
2019-04-24 08:10:37 -05:00
env,
2020-11-30 07:47:54 -06:00
detached: true,
execArgv: options.execArgv || []
2017-09-04 14:21:47 -05:00
}
return new Promise<ServerInfo>(res => {
2020-11-30 07:47:54 -06:00
server.app = fork(join(root(), 'dist', 'server.js'), args, forkOptions)
2019-04-24 05:02:04 -05: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)) {
2020-01-31 09:56:52 -06:00
const regexp = regexps[key]
2019-04-24 05:02:04 -05:00
const matches = data.toString().match(regexp)
if (matches !== null) {
2021-07-16 02:04:35 -05:00
if (key === 'client_id') server.store.client.id = matches[1]
else if (key === 'client_secret') server.store.client.secret = matches[1]
else if (key === 'user_username') server.store.user.username = matches[1]
else if (key === 'user_password') server.store.user.password = matches[1]
2019-04-24 05:02:04 -05:00
}
}
// Check if all required sentences are here
for (const key of Object.keys(serverRunString)) {
2020-01-31 09:56:52 -06:00
if (data.toString().indexOf(key) !== -1) serverRunString[key] = true
if (serverRunString[key] === false) dontContinue = true
2019-04-24 05:02:04 -05:00
}
// If no, there is maybe one thing not already initialized (client/user credentials generation...)
if (dontContinue === true) return
2020-11-30 07:47:54 -06:00
if (options.hideLogs === false) {
2020-11-24 07:08:23 -06:00
console.log(data.toString())
} else {
server.app.stdout.removeListener('data', onStdout)
}
2019-04-24 05:02:04 -05:00
process.on('exit', () => {
try {
process.kill(server.app.pid)
} catch { /* empty */ }
2019-01-17 04:23:40 -06:00
})
2019-04-24 05:02:04 -05:00
2021-07-09 08:03:44 -05:00
assignCommands(server)
2021-07-05 09:37:50 -05:00
2019-04-24 05:02:04 -05:00
res(server)
})
2017-09-04 14:21:47 -05:00
})
}
2021-07-09 08:03:44 -05:00
function assignCommands (server: ServerInfo) {
2021-07-16 02:04:35 -05:00
server.bulk = new BulkCommand(server)
server.cli = new CLICommand(server)
server.customPage = new CustomPagesCommand(server)
server.feed = new FeedCommand(server)
server.logs = new LogsCommand(server)
server.abuses = new AbusesCommand(server)
server.overviews = new OverviewsCommand(server)
server.search = new SearchCommand(server)
server.contactForm = new ContactFormCommand(server)
server.debug = new DebugCommand(server)
server.follows = new FollowsCommand(server)
server.jobs = new JobsCommand(server)
server.plugins = new PluginsCommand(server)
server.redundancy = new RedundancyCommand(server)
server.stats = new StatsCommand(server)
server.config = new ConfigCommand(server)
server.socketIO = new SocketIOCommand(server)
server.accounts = new AccountsCommand(server)
server.blocklist = new BlocklistCommand(server)
server.subscriptions = new SubscriptionsCommand(server)
server.live = new LiveCommand(server)
server.services = new ServicesCommand(server)
server.blacklist = new BlacklistCommand(server)
server.captions = new CaptionsCommand(server)
server.changeOwnership = new ChangeOwnershipCommand(server)
server.playlists = new PlaylistsCommand(server)
server.history = new HistoryCommand(server)
server.imports = new ImportsCommand(server)
server.streamingPlaylists = new StreamingPlaylistsCommand(server)
server.channels = new ChannelsCommand(server)
server.comments = new CommentsCommand(server)
server.sql = new SQLCommand(server)
server.notifications = new NotificationsCommand(server)
server.servers = new ServersCommand(server)
server.login = new LoginCommand(server)
server.users = new UsersCommand(server)
server.videos = new VideosCommand(server)
2021-07-09 08:03:44 -05:00
}
async function reRunServer (server: ServerInfo, configOverride?: any) {
2019-04-24 07:00:30 -05:00
const newServer = await runServer(server, configOverride)
2018-01-11 04:40:18 -06:00
server.app = newServer.app
return server
}
2021-07-09 08:37:43 -05:00
async function killallServers (servers: ServerInfo[]) {
2017-09-04 14:21:47 -05:00
for (const server of servers) {
2019-04-24 08:10:37 -05:00
if (!server.app) continue
2021-07-16 02:04:35 -05:00
await server.sql.cleanup()
2021-07-09 08:37:43 -05:00
2017-09-04 14:21:47 -05:00
process.kill(-server.app.pid)
2021-07-09 08:37:43 -05:00
2019-04-24 08:10:37 -05:00
server.app = null
2017-09-04 14:21:47 -05:00
}
}
2020-12-10 04:24:17 -06:00
async function cleanupTests (servers: ServerInfo[]) {
2021-07-09 08:37:43 -05:00
await killallServers(servers)
2019-04-24 04:54:23 -05:00
2020-12-10 04:24:17 -06:00
if (isGithubCI()) {
await ensureDir('artifacts')
}
2021-07-13 02:43:59 -05:00
let p: Promise<any>[] = []
2019-04-24 04:54:23 -05:00
for (const server of servers) {
2021-07-16 02:04:35 -05:00
p = p.concat(server.servers.cleanupTests())
2019-04-24 04:54:23 -05:00
}
return Promise.all(p)
}
2017-09-04 14:21:47 -05:00
// ---------------------------------------------------------------------------
export {
ServerInfo,
2019-04-24 04:54:23 -05:00
cleanupTests,
2017-09-04 14:21:47 -05:00
flushAndRunMultipleServers,
2019-04-24 03:53:40 -05:00
flushAndRunServer,
2018-01-11 04:40:18 -06:00
killallServers,
2018-10-02 02:04:19 -05:00
reRunServer,
2021-07-13 02:43:59 -05:00
assignCommands
2017-09-04 14:21:47 -05:00
}