]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/tests/shared/directories.ts
Merge branch 'release/4.3.0' into develop
[github/Chocobozzz/PeerTube.git] / server / tests / shared / directories.ts
1 /* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2
3 import { expect } from 'chai'
4 import { pathExists, readdir } from 'fs-extra'
5 import { PeerTubeServer } from '@shared/server-commands'
6
7 async function checkTmpIsEmpty (server: PeerTubeServer) {
8 await checkDirectoryIsEmpty(server, 'tmp', [ 'plugins-global.css', 'hls', 'resumable-uploads' ])
9
10 if (await pathExists(server.getDirectoryPath('tmp/hls'))) {
11 await checkDirectoryIsEmpty(server, 'tmp/hls')
12 }
13 }
14
15 async function checkDirectoryIsEmpty (server: PeerTubeServer, directory: string, exceptions: string[] = []) {
16 const directoryPath = server.getDirectoryPath(directory)
17
18 const directoryExists = await pathExists(directoryPath)
19 expect(directoryExists).to.be.true
20
21 const files = await readdir(directoryPath)
22 const filtered = files.filter(f => exceptions.includes(f) === false)
23
24 expect(filtered).to.have.lengthOf(0)
25 }
26
27 export {
28 checkTmpIsEmpty,
29 checkDirectoryIsEmpty
30 }