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

414 lines
12 KiB
TypeScript
Raw Normal View History

2020-01-31 16:56:52 +01:00
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/no-floating-promises */
2018-12-11 09:16:41 +01:00
2021-07-13 09:43:59 +02:00
import { ChildProcess, fork } from 'child_process'
import { copy, ensureDir } from 'fs-extra'
2020-11-06 16:43:43 +01:00
import { join } from 'path'
2021-07-13 09:43:59 +02:00
import { root } from '@server/helpers/core-utils'
2019-04-24 15:10:37 +02:00
import { randomInt } from '../../core-utils/miscs/miscs'
2021-02-16 08:50:40 +01:00
import { VideoChannel } from '../../models/videos'
2021-07-05 16:37:50 +02:00
import { BulkCommand } from '../bulk'
import { CLICommand } from '../cli'
2021-07-06 09:55:05 +02:00
import { CustomPagesCommand } from '../custom-pages'
2021-07-06 10:21:35 +02:00
import { FeedCommand } from '../feeds'
2021-07-06 10:34:29 +02:00
import { LogsCommand } from '../logs'
2021-07-13 09:43:59 +02:00
import { isGithubCI, parallelTests, SQLCommand } from '../miscs'
2021-07-06 12:01:59 +02:00
import { AbusesCommand } from '../moderation'
2021-07-06 14:30:20 +02:00
import { OverviewsCommand } from '../overviews'
2021-07-06 15:22:51 +02:00
import { SearchCommand } from '../search'
2021-07-07 11:55:16 +02:00
import { SocketIOCommand } from '../socket'
2021-07-13 14:23:01 +02:00
import { AccountsCommand, BlocklistCommand, LoginCommand, NotificationsCommand, SubscriptionsCommand, UsersCommand } from '../users'
2021-07-08 16:49:51 +02:00
import {
BlacklistCommand,
CaptionsCommand,
ChangeOwnershipCommand,
2021-07-09 11:21:30 +02:00
ChannelsCommand,
2021-07-08 16:49:51 +02:00
HistoryCommand,
ImportsCommand,
LiveCommand,
PlaylistsCommand,
2021-07-09 10:21:10 +02:00
ServicesCommand,
2021-07-15 10:02:54 +02:00
StreamingPlaylistsCommand,
VideosCommand
2021-07-08 16:49:51 +02:00
} from '../videos'
2021-07-09 14:15:11 +02:00
import { CommentsCommand } from '../videos/comments-command'
2021-07-07 11:51:09 +02:00
import { ConfigCommand } from './config-command'
2021-07-06 15:53:25 +02:00
import { ContactFormCommand } from './contact-form-command'
2021-07-06 16:02:11 +02:00
import { DebugCommand } from './debug-command'
2021-07-07 09:16:40 +02:00
import { FollowsCommand } from './follows-command'
2021-07-07 09:34:56 +02:00
import { JobsCommand } from './jobs-command'
2021-07-07 10:33:49 +02:00
import { PluginsCommand } from './plugins-command'
2021-07-07 10:56:45 +02:00
import { RedundancyCommand } from './redundancy-command'
2021-07-13 09:43:59 +02:00
import { ServersCommand } from './servers-command'
2021-07-07 11:07:12 +02:00
import { StatsCommand } from './stats-command'
2017-09-04 21:21:47 +02:00
interface ServerInfo {
2021-07-09 15:03:44 +02:00
app?: ChildProcess
2020-11-02 15:43:44 +01:00
2017-09-04 21:21:47 +02:00
url: string
2021-07-09 15:03:44 +02:00
host?: string
hostname?: string
port?: number
2020-11-02 15:43:44 +01:00
2021-07-09 15:03:44 +02:00
rtmpPort?: number
2020-11-06 16:43:43 +01:00
2021-07-09 15:03:44 +02:00
parallel?: boolean
2019-04-24 11:54:23 +02:00
internalServerNumber: number
2021-07-09 15:03:44 +02:00
serverNumber?: number
2017-09-04 21:21:47 +02:00
2021-07-09 15:03:44 +02:00
client?: {
id?: string
secret?: string
2017-09-04 21:21:47 +02:00
}
2021-07-09 15:03:44 +02:00
user?: {
2020-01-31 16:56:52 +01:00
username: string
password: string
2017-09-04 21:21:47 +02:00
email?: string
}
2019-04-24 15:10:37 +02:00
customConfigFile?: string
2017-09-04 21:21:47 +02:00
accessToken?: string
refreshToken?: string
2019-03-05 10:58:44 +01:00
videoChannel?: VideoChannel
2017-09-04 21:21:47 +02:00
video?: {
id: number
uuid: string
shortUUID: string
2020-07-08 15:51:46 +02:00
name?: string
url?: string
2021-05-14 12:04:44 +02:00
2020-07-08 15:51:46 +02:00
account?: {
2018-03-12 11:06:15 +01:00
name: string
}
2021-05-14 12:04:44 +02:00
embedPath?: 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 }[]
2021-07-05 16:37:50 +02:00
bulkCommand?: BulkCommand
cliCommand?: CLICommand
2021-07-06 09:55:05 +02:00
customPageCommand?: CustomPagesCommand
2021-07-06 10:21:35 +02:00
feedCommand?: FeedCommand
2021-07-06 10:34:29 +02:00
logsCommand?: LogsCommand
2021-07-06 12:01:59 +02:00
abusesCommand?: AbusesCommand
2021-07-06 14:30:20 +02:00
overviewsCommand?: OverviewsCommand
2021-07-06 15:22:51 +02:00
searchCommand?: SearchCommand
2021-07-06 15:53:25 +02:00
contactFormCommand?: ContactFormCommand
2021-07-06 16:02:11 +02:00
debugCommand?: DebugCommand
2021-07-07 09:16:40 +02:00
followsCommand?: FollowsCommand
2021-07-07 09:34:56 +02:00
jobsCommand?: JobsCommand
2021-07-07 10:33:49 +02:00
pluginsCommand?: PluginsCommand
2021-07-07 10:56:45 +02:00
redundancyCommand?: RedundancyCommand
2021-07-07 11:07:12 +02:00
statsCommand?: StatsCommand
2021-07-07 11:51:09 +02:00
configCommand?: ConfigCommand
2021-07-07 11:55:16 +02:00
socketIOCommand?: SocketIOCommand
2021-07-07 13:38:26 +02:00
accountsCommand?: AccountsCommand
2021-07-07 16:02:46 +02:00
blocklistCommand?: BlocklistCommand
2021-07-07 16:40:49 +02:00
subscriptionsCommand?: SubscriptionsCommand
2021-07-08 10:18:40 +02:00
liveCommand?: LiveCommand
2021-07-08 10:23:21 +02:00
servicesCommand?: ServicesCommand
2021-07-08 11:17:55 +02:00
blacklistCommand?: BlacklistCommand
2021-07-08 11:49:38 +02:00
captionsCommand?: CaptionsCommand
2021-07-08 13:56:04 +02:00
changeOwnershipCommand?: ChangeOwnershipCommand
2021-07-08 15:54:39 +02:00
playlistsCommand?: PlaylistsCommand
2021-07-08 16:21:42 +02:00
historyCommand?: HistoryCommand
2021-07-08 16:49:51 +02:00
importsCommand?: ImportsCommand
2021-07-09 10:21:10 +02:00
streamingPlaylistsCommand?: StreamingPlaylistsCommand
2021-07-09 11:21:30 +02:00
channelsCommand?: ChannelsCommand
2021-07-09 14:15:11 +02:00
commentsCommand?: CommentsCommand
2021-07-09 15:37:43 +02:00
sqlCommand?: SQLCommand
2021-07-09 16:23:01 +02:00
notificationsCommand?: NotificationsCommand
2021-07-13 09:43:59 +02:00
serversCommand?: ServersCommand
2021-07-13 11:05:15 +02:00
loginCommand?: LoginCommand
2021-07-13 14:23:01 +02:00
usersCommand?: UsersCommand
2021-07-15 10:02:54 +02:00
videosCommand?: VideosCommand
2019-04-24 15:10:37 +02:00
}
2018-09-14 09:57:21 +02:00
function flushAndRunMultipleServers (totalServers: number, configOverride?: Object) {
2020-01-31 16:56:52 +01:00
const apps = []
2017-09-04 21:21:47 +02: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 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 11:54:23 +02:00
function randomServer () {
const low = 10
const high = 10000
2019-04-24 15:10:37 +02:00
return randomInt(low, high)
2019-04-24 11:54:23 +02:00
}
2020-11-06 16:43:43 +01:00
function randomRTMP () {
const low = 1900
const high = 2100
return randomInt(low, high)
}
2020-11-30 14:47:54 +01:00
type RunServerOptions = {
hideLogs?: boolean
execArgv?: string[]
}
async function flushAndRunServer (serverNumber: number, configOverride?: Object, args = [], options: RunServerOptions = {}) {
2019-04-24 15:10:37 +02:00
const parallel = parallelTests()
2019-04-24 11:54:23 +02:00
const internalServerNumber = parallel ? randomServer() : serverNumber
2020-11-17 16:14:11 +01:00
const rtmpPort = parallel ? randomRTMP() : 1936
2019-04-24 11:54:23 +02:00
const port = 9000 + internalServerNumber
2021-07-13 09:43:59 +02:00
await ServersCommand.flushTests(internalServerNumber)
2019-04-24 12:02:04 +02:00
2017-09-04 21:21:47 +02:00
const server: ServerInfo = {
app: null,
2019-04-24 11:54:23 +02:00
port,
internalServerNumber,
2020-11-06 16:43:43 +01:00
rtmpPort,
2019-04-24 11:54:23 +02:00
parallel,
2019-04-24 15:10:37 +02:00
serverNumber,
2019-04-24 11:54:23 +02:00
url: `http://localhost:${port}`,
host: `localhost:${port}`,
2020-11-02 15:43:44 +01:00
hostname: 'localhost',
2017-09-04 21:21:47 +02:00
client: {
id: null,
secret: null
},
user: {
username: null,
password: null
}
}
2020-11-30 14:47:54 +01:00
return runServer(server, configOverride, args, options)
2019-04-24 14:00:30 +02:00
}
2020-11-30 14:47:54 +01:00
async function runServer (server: ServerInfo, configOverrideArg?: any, args = [], options: RunServerOptions = {}) {
2017-09-04 21:21:47 +02:00
// These actions are async so we need to be sure that they have both been done
const serverRunString = {
2021-01-11 10:33:29 +01:00
'HTTP server listening': false
2017-09-04 21:21:47 +02:00
}
2019-04-24 14:00:30 +02:00
const key = 'Database peertube_test' + server.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: (.+)'
}
2019-04-24 15:10:37 +02: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 15:27:35 +02:00
2019-04-24 15:10:37 +02:00
const configOverride: any = {}
2019-04-24 11:54:23 +02:00
2019-04-24 14:00:30 +02:00
if (server.parallel) {
2019-04-24 15:10:37 +02:00
Object.assign(configOverride, {
2019-04-24 11:54:23 +02:00
listen: {
2019-04-24 14:00:30 +02:00
port: server.port
2019-04-24 11:54:23 +02:00
},
webserver: {
2019-04-24 14:00:30 +02:00
port: server.port
2019-04-24 11:54:23 +02:00
},
database: {
2019-04-24 14:00:30 +02:00
suffix: '_test' + server.internalServerNumber
2019-04-24 11:54:23 +02:00
},
storage: {
2019-04-24 14:00:30 +02: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 17:30:41 +02:00
cache: `test${server.internalServerNumber}/cache/`,
plugins: `test${server.internalServerNumber}/plugins/`
2019-04-24 11:54:23 +02:00
},
admin: {
2019-04-24 14:00:30 +02:00
email: `admin${server.internalServerNumber}@example.com`
2020-11-06 16:43:43 +01:00
},
live: {
rtmp: {
port: server.rtmpPort
}
2019-04-24 11:54:23 +02:00
}
2019-04-24 15:10:37 +02:00
})
2019-04-24 11:54:23 +02:00
}
if (configOverrideArg !== undefined) {
Object.assign(configOverride, configOverrideArg)
2017-09-07 15:27:35 +02:00
}
2019-04-24 15:10:37 +02:00
// Share the environment
const env = Object.create(process.env)
env['NODE_ENV'] = 'test'
env['NODE_APP_INSTANCE'] = server.internalServerNumber.toString()
2019-04-24 11:54:23 +02:00
env['NODE_CONFIG'] = JSON.stringify(configOverride)
2020-11-30 14:47:54 +01:00
const forkOptions = {
2017-09-04 21:21:47 +02:00
silent: true,
2019-04-24 15:10:37 +02:00
env,
2020-11-30 14:47:54 +01:00
detached: true,
execArgv: options.execArgv || []
2017-09-04 21:21:47 +02:00
}
return new Promise<ServerInfo>(res => {
2020-11-30 14:47:54 +01:00
server.app = fork(join(root(), 'dist', 'server.js'), args, forkOptions)
2019-04-24 12:02:04 +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)) {
2020-01-31 16:56:52 +01:00
const regexp = regexps[key]
2019-04-24 12:02:04 +02:00
const matches = data.toString().match(regexp)
if (matches !== null) {
2020-01-31 16:56:52 +01:00
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]
2019-04-24 12:02:04 +02:00
}
}
// Check if all required sentences are here
for (const key of Object.keys(serverRunString)) {
2020-01-31 16:56:52 +01:00
if (data.toString().indexOf(key) !== -1) serverRunString[key] = true
if (serverRunString[key] === false) dontContinue = true
2019-04-24 12:02:04 +02:00
}
// If no, there is maybe one thing not already initialized (client/user credentials generation...)
if (dontContinue === true) return
2020-11-30 14:47:54 +01:00
if (options.hideLogs === false) {
2020-11-24 14:08:23 +01:00
console.log(data.toString())
} else {
server.app.stdout.removeListener('data', onStdout)
}
2019-04-24 12:02:04 +02:00
process.on('exit', () => {
try {
process.kill(server.app.pid)
} catch { /* empty */ }
2019-01-17 11:23:40 +01:00
})
2019-04-24 12:02:04 +02:00
2021-07-09 15:03:44 +02:00
assignCommands(server)
2021-07-05 16:37:50 +02:00
2019-04-24 12:02:04 +02:00
res(server)
})
2017-09-04 21:21:47 +02:00
})
}
2021-07-09 15:03:44 +02:00
function assignCommands (server: ServerInfo) {
server.bulkCommand = new BulkCommand(server)
server.cliCommand = new CLICommand(server)
server.customPageCommand = new CustomPagesCommand(server)
server.feedCommand = new FeedCommand(server)
server.logsCommand = new LogsCommand(server)
server.abusesCommand = new AbusesCommand(server)
server.overviewsCommand = new OverviewsCommand(server)
server.searchCommand = new SearchCommand(server)
server.contactFormCommand = new ContactFormCommand(server)
server.debugCommand = new DebugCommand(server)
server.followsCommand = new FollowsCommand(server)
server.jobsCommand = new JobsCommand(server)
server.pluginsCommand = new PluginsCommand(server)
server.redundancyCommand = new RedundancyCommand(server)
server.statsCommand = new StatsCommand(server)
server.configCommand = new ConfigCommand(server)
server.socketIOCommand = new SocketIOCommand(server)
server.accountsCommand = new AccountsCommand(server)
server.blocklistCommand = new BlocklistCommand(server)
server.subscriptionsCommand = new SubscriptionsCommand(server)
server.liveCommand = new LiveCommand(server)
server.servicesCommand = new ServicesCommand(server)
server.blacklistCommand = new BlacklistCommand(server)
server.captionsCommand = new CaptionsCommand(server)
server.changeOwnershipCommand = new ChangeOwnershipCommand(server)
server.playlistsCommand = new PlaylistsCommand(server)
server.historyCommand = new HistoryCommand(server)
server.importsCommand = new ImportsCommand(server)
server.streamingPlaylistsCommand = new StreamingPlaylistsCommand(server)
server.channelsCommand = new ChannelsCommand(server)
server.commentsCommand = new CommentsCommand(server)
2021-07-09 15:37:43 +02:00
server.sqlCommand = new SQLCommand(server)
2021-07-09 16:23:01 +02:00
server.notificationsCommand = new NotificationsCommand(server)
2021-07-13 09:43:59 +02:00
server.serversCommand = new ServersCommand(server)
2021-07-13 11:05:15 +02:00
server.loginCommand = new LoginCommand(server)
2021-07-13 14:23:01 +02:00
server.usersCommand = new UsersCommand(server)
2021-07-15 10:02:54 +02:00
server.videosCommand = new VideosCommand(server)
2021-07-09 15:03:44 +02:00
}
async function reRunServer (server: ServerInfo, configOverride?: any) {
2019-04-24 14:00:30 +02:00
const newServer = await runServer(server, configOverride)
2018-01-11 11:40:18 +01:00
server.app = newServer.app
return server
}
2021-07-09 15:37:43 +02:00
async function killallServers (servers: ServerInfo[]) {
2017-09-04 21:21:47 +02:00
for (const server of servers) {
2019-04-24 15:10:37 +02:00
if (!server.app) continue
2021-07-09 15:37:43 +02:00
await server.sqlCommand.cleanup()
2017-09-04 21:21:47 +02:00
process.kill(-server.app.pid)
2021-07-09 15:37:43 +02:00
2019-04-24 15:10:37 +02:00
server.app = null
2017-09-04 21:21:47 +02:00
}
}
2020-12-10 11:24:17 +01:00
async function cleanupTests (servers: ServerInfo[]) {
2021-07-09 15:37:43 +02:00
await killallServers(servers)
2019-04-24 11:54:23 +02:00
2020-12-10 11:24:17 +01:00
if (isGithubCI()) {
await ensureDir('artifacts')
}
2021-07-13 09:43:59 +02:00
let p: Promise<any>[] = []
2019-04-24 11:54:23 +02:00
for (const server of servers) {
2021-07-13 09:43:59 +02:00
p = p.concat(server.serversCommand.cleanupTests())
2019-04-24 11:54:23 +02:00
}
return Promise.all(p)
}
2017-09-04 21:21:47 +02:00
// ---------------------------------------------------------------------------
export {
ServerInfo,
2019-04-24 11:54:23 +02:00
cleanupTests,
2017-09-04 21:21:47 +02:00
flushAndRunMultipleServers,
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,
2021-07-13 09:43:59 +02:00
assignCommands
2017-09-04 21:21:47 +02:00
}