06aad80165
Many files from the `shared` folder were importing files from the `server` folder. When attempting to use Typescript project references to describe dependencies, it highlighted a circular dependency beetween `shared` <-> `server`. The Typescript project forbid such usages. Using project references greatly improve performance by rebuilding only the updated project and not all source files. > see https://www.typescriptlang.org/docs/handbook/project-references.html
34 lines
1.1 KiB
TypeScript
34 lines
1.1 KiB
TypeScript
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
|
|
|
import { expect } from 'chai'
|
|
import { pathExists, readdir } from 'fs-extra'
|
|
import { join } from 'path'
|
|
import { root } from '@shared/core-utils'
|
|
import { PeerTubeServer } from './server'
|
|
|
|
async function checkTmpIsEmpty (server: PeerTubeServer) {
|
|
await checkDirectoryIsEmpty(server, 'tmp', [ 'plugins-global.css', 'hls', 'resumable-uploads' ])
|
|
|
|
if (await pathExists(join('test' + server.internalServerNumber, 'tmp', 'hls'))) {
|
|
await checkDirectoryIsEmpty(server, 'tmp/hls')
|
|
}
|
|
}
|
|
|
|
async function checkDirectoryIsEmpty (server: PeerTubeServer, directory: string, exceptions: string[] = []) {
|
|
const testDirectory = 'test' + server.internalServerNumber
|
|
|
|
const directoryPath = join(root(), testDirectory, 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
|
|
}
|