2021-07-13 02:43:59 -05:00
|
|
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
|
|
|
|
|
|
|
import { expect } from 'chai'
|
|
|
|
import { pathExists, readdir } from 'fs-extra'
|
2023-05-04 08:29:34 -05:00
|
|
|
import { homedir } from 'os'
|
|
|
|
import { join } from 'path'
|
2021-12-17 04:58:15 -06:00
|
|
|
import { PeerTubeServer } from '@shared/server-commands'
|
2023-05-19 07:35:03 -05:00
|
|
|
import { PeerTubeRunnerProcess } from './peertube-runner-process'
|
2021-07-13 02:43:59 -05:00
|
|
|
|
2023-05-04 08:29:34 -05:00
|
|
|
export async function checkTmpIsEmpty (server: PeerTubeServer) {
|
2021-07-13 02:43:59 -05:00
|
|
|
await checkDirectoryIsEmpty(server, 'tmp', [ 'plugins-global.css', 'hls', 'resumable-uploads' ])
|
|
|
|
|
2022-10-04 03:53:00 -05:00
|
|
|
if (await pathExists(server.getDirectoryPath('tmp/hls'))) {
|
2021-07-13 02:43:59 -05:00
|
|
|
await checkDirectoryIsEmpty(server, 'tmp/hls')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-04 08:29:34 -05:00
|
|
|
export async function checkPersistentTmpIsEmpty (server: PeerTubeServer) {
|
2023-05-03 08:17:11 -05:00
|
|
|
await checkDirectoryIsEmpty(server, 'tmp-persistent')
|
|
|
|
}
|
|
|
|
|
2023-05-04 08:29:34 -05:00
|
|
|
export async function checkDirectoryIsEmpty (server: PeerTubeServer, directory: string, exceptions: string[] = []) {
|
2022-10-04 03:53:00 -05:00
|
|
|
const directoryPath = server.getDirectoryPath(directory)
|
2021-07-13 02:43:59 -05:00
|
|
|
|
|
|
|
const directoryExists = await pathExists(directoryPath)
|
|
|
|
expect(directoryExists).to.be.true
|
|
|
|
|
|
|
|
const files = await readdir(directoryPath)
|
|
|
|
const filtered = files.filter(f => exceptions.includes(f) === false)
|
|
|
|
|
|
|
|
expect(filtered).to.have.lengthOf(0)
|
|
|
|
}
|
|
|
|
|
2023-05-19 07:35:03 -05:00
|
|
|
export async function checkPeerTubeRunnerCacheIsEmpty (runner: PeerTubeRunnerProcess) {
|
|
|
|
const directoryPath = join(homedir(), '.cache', 'peertube-runner-nodejs', runner.getId(), 'transcoding')
|
2023-05-04 08:29:34 -05:00
|
|
|
|
|
|
|
const directoryExists = await pathExists(directoryPath)
|
|
|
|
expect(directoryExists).to.be.true
|
|
|
|
|
|
|
|
const files = await readdir(directoryPath)
|
|
|
|
|
2023-05-22 02:20:28 -05:00
|
|
|
expect(files, 'Directory content: ' + files.join(', ')).to.have.lengthOf(0)
|
2021-07-13 02:43:59 -05:00
|
|
|
}
|