]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tests/shared/directories.ts
Fix runner cleanup test
[github/Chocobozzz/PeerTube.git] / server / tests / shared / directories.ts
CommitLineData
6c5065a0
C
1/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2
3import { expect } from 'chai'
4import { pathExists, readdir } from 'fs-extra'
5e47f6ab
C
5import { homedir } from 'os'
6import { join } from 'path'
c55e3d72 7import { PeerTubeServer } from '@shared/server-commands'
cfa61763 8import { PeerTubeRunnerProcess } from './peertube-runner-process'
6c5065a0 9
5e47f6ab 10export async function checkTmpIsEmpty (server: PeerTubeServer) {
6c5065a0
C
11 await checkDirectoryIsEmpty(server, 'tmp', [ 'plugins-global.css', 'hls', 'resumable-uploads' ])
12
6c5f0d3a 13 if (await pathExists(server.getDirectoryPath('tmp/hls'))) {
6c5065a0
C
14 await checkDirectoryIsEmpty(server, 'tmp/hls')
15 }
16}
17
5e47f6ab 18export async function checkPersistentTmpIsEmpty (server: PeerTubeServer) {
6a490560
C
19 await checkDirectoryIsEmpty(server, 'tmp-persistent')
20}
21
5e47f6ab 22export async function checkDirectoryIsEmpty (server: PeerTubeServer, directory: string, exceptions: string[] = []) {
6c5f0d3a 23 const directoryPath = server.getDirectoryPath(directory)
6c5065a0
C
24
25 const directoryExists = await pathExists(directoryPath)
26 expect(directoryExists).to.be.true
27
28 const files = await readdir(directoryPath)
29 const filtered = files.filter(f => exceptions.includes(f) === false)
30
31 expect(filtered).to.have.lengthOf(0)
32}
33
cfa61763
C
34export async function checkPeerTubeRunnerCacheIsEmpty (runner: PeerTubeRunnerProcess) {
35 const directoryPath = join(homedir(), '.cache', 'peertube-runner-nodejs', runner.getId(), 'transcoding')
5e47f6ab
C
36
37 const directoryExists = await pathExists(directoryPath)
38 expect(directoryExists).to.be.true
39
40 const files = await readdir(directoryPath)
41
42 expect(files).to.have.lengthOf(0)
6c5065a0 43}