2021-06-23 04:34:11 +07:00
|
|
|
import { promises as fs } from "fs"
|
2021-05-05 23:02:34 +07:00
|
|
|
import * as os from "os"
|
|
|
|
import * as path from "path"
|
|
|
|
|
2021-05-06 23:25:29 +07:00
|
|
|
/**
|
|
|
|
* Return a mock of @coder/logger.
|
|
|
|
*/
|
|
|
|
export function createLoggerMock() {
|
|
|
|
return {
|
|
|
|
field: jest.fn(),
|
|
|
|
level: 2,
|
|
|
|
logger: {
|
|
|
|
debug: jest.fn(),
|
|
|
|
error: jest.fn(),
|
|
|
|
info: jest.fn(),
|
|
|
|
trace: jest.fn(),
|
|
|
|
warn: jest.fn(),
|
|
|
|
},
|
|
|
|
}
|
2021-02-24 05:58:54 +07:00
|
|
|
}
|
2021-05-05 23:02:34 +07:00
|
|
|
|
|
|
|
/**
|
2021-06-23 04:34:11 +07:00
|
|
|
* Clean up directories left by a test. It is recommended to do this when a test
|
|
|
|
* starts to avoid potentially accumulating infinite test directories.
|
|
|
|
*/
|
|
|
|
export async function clean(testName: string): Promise<void> {
|
|
|
|
const dir = path.join(os.tmpdir(), `code-server/tests/${testName}`)
|
2021-06-23 04:34:44 +07:00
|
|
|
await fs.rmdir(dir, { recursive: true })
|
2021-06-23 04:34:11 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a uniquely named temporary directory for a test.
|
2021-05-05 23:02:34 +07:00
|
|
|
*/
|
|
|
|
export async function tmpdir(testName: string): Promise<string> {
|
2021-06-23 04:34:11 +07:00
|
|
|
const dir = path.join(os.tmpdir(), `code-server/tests/${testName}`)
|
|
|
|
await fs.mkdir(dir, { recursive: true })
|
2021-05-05 23:02:34 +07:00
|
|
|
|
2021-06-23 04:34:11 +07:00
|
|
|
return await fs.mkdtemp(path.join(dir, `${testName}-`), { encoding: "utf8" })
|
2021-05-05 23:02:34 +07:00
|
|
|
}
|