]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/server-commands/server/servers-command.ts
shared/ typescript types dir server-commands
[github/Chocobozzz/PeerTube.git] / shared / server-commands / server / servers-command.ts
CommitLineData
6c5065a0
C
1import { exec } from 'child_process'
2import { copy, ensureDir, readFile, remove } from 'fs-extra'
764b1a14 3import { basename, join } from 'path'
06aad801 4import { root } from '@shared/core-utils'
c0e8b12e 5import { HttpStatusCode } from '@shared/models'
7a397c7f 6import { getFileSize, isGithubCI, wait } from '../miscs'
6c5065a0
C
7import { AbstractCommand, OverrideCommandOptions } from '../shared'
8
9export class ServersCommand extends AbstractCommand {
10
11 static flushTests (internalServerNumber: number) {
12 return new Promise<void>((res, rej) => {
13 const suffix = ` -- ${internalServerNumber}`
14
15 return exec('npm run clean:server:test' + suffix, (err, _stdout, stderr) => {
16 if (err || stderr) return rej(err || new Error(stderr))
17
18 return res()
19 })
20 })
21 }
22
23 ping (options: OverrideCommandOptions = {}) {
24 return this.getRequestBody({
25 ...options,
26
27 path: '/api/v1/ping',
28 implicitToken: false,
29 defaultExpectedStatus: HttpStatusCode.OK_200
30 })
31 }
32
33 async cleanupTests () {
34 const p: Promise<any>[] = []
35
36 if (isGithubCI()) {
37 await ensureDir('artifacts')
38
254d3579 39 const origin = this.buildDirectory('logs/peertube.log')
6c5065a0
C
40 const destname = `peertube-${this.server.internalServerNumber}.log`
41 console.log('Saving logs %s.', destname)
42
43 await copy(origin, join('artifacts', destname))
44 }
45
46 if (this.server.parallel) {
47 p.push(ServersCommand.flushTests(this.server.internalServerNumber))
48 }
49
50 if (this.server.customConfigFile) {
51 p.push(remove(this.server.customConfigFile))
52 }
53
54 return p
55 }
56
57 async waitUntilLog (str: string, count = 1, strictCount = true) {
1f6125be 58 const logfile = this.buildDirectory('logs/peertube.log')
6c5065a0
C
59
60 while (true) {
61 const buf = await readFile(logfile)
62
63 const matches = buf.toString().match(new RegExp(str, 'g'))
64 if (matches && matches.length === count) return
65 if (matches && strictCount === false && matches.length >= count) return
66
67 await wait(1000)
68 }
69 }
70
71 buildDirectory (directory: string) {
72 return join(root(), 'test' + this.server.internalServerNumber, directory)
73 }
74
83903cb6
C
75 buildWebTorrentFilePath (fileUrl: string) {
76 return this.buildDirectory(join('videos', basename(fileUrl)))
77 }
78
79 buildFragmentedFilePath (videoUUID: string, fileUrl: string) {
80 return this.buildDirectory(join('streaming-playlists', 'hls', videoUUID, basename(fileUrl)))
81 }
82
1f6125be
C
83 getLogContent () {
84 return readFile(this.buildDirectory('logs/peertube.log'))
85 }
86
6c5065a0 87 async getServerFileSize (subPath: string) {
89d241a7 88 const path = this.server.servers.buildDirectory(subPath)
6c5065a0
C
89
90 return getFileSize(path)
91 }
92}