6c5f0d3aeb
* server: serve files from storage/well-known closes #5206 * well-known: add tests * test: try to skip new tests * test: another try * fix(config/prod): well_known path * test: fix broken tests * Update misc-endpoints.ts * Use getDirectoryPath for tests * Fix tests Co-authored-by: Chocobozzz <me@florianbigard.com>
30 lines
988 B
TypeScript
30 lines
988 B
TypeScript
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
|
|
|
import { expect } from 'chai'
|
|
import { pathExists, readdir } from 'fs-extra'
|
|
import { PeerTubeServer } from '@shared/server-commands'
|
|
|
|
async function checkTmpIsEmpty (server: PeerTubeServer) {
|
|
await checkDirectoryIsEmpty(server, 'tmp', [ 'plugins-global.css', 'hls', 'resumable-uploads' ])
|
|
|
|
if (await pathExists(server.getDirectoryPath('tmp/hls'))) {
|
|
await checkDirectoryIsEmpty(server, 'tmp/hls')
|
|
}
|
|
}
|
|
|
|
async function checkDirectoryIsEmpty (server: PeerTubeServer, directory: string, exceptions: string[] = []) {
|
|
const directoryPath = server.getDirectoryPath(directory)
|
|
|
|
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)
|
|
}
|
|
|
|
export {
|
|
checkTmpIsEmpty,
|
|
checkDirectoryIsEmpty
|
|
}
|