Archived
1
0
This repository has been archived on 2024-09-09. You can view files and clone it, but cannot push or open issues or pull requests.
code-server/test/unit/node/routes/static.test.ts

78 lines
2.3 KiB
TypeScript
Raw Normal View History

2021-05-05 18:14:51 +02:00
import { promises as fs } from "fs"
import * as path from "path"
import { rootPath } from "../../../../src/node/constants"
import { tmpdir } from "../../../utils/helpers"
import * as httpserver from "../../../utils/httpserver"
import * as integration from "../../../utils/integration"
2021-05-05 18:14:51 +02:00
const NOT_FOUND = {
code: 404,
message: "not found",
}
describe("/_static", () => {
2021-05-05 18:14:51 +02:00
let _codeServer: httpserver.HttpServer | undefined
function codeServer(): httpserver.HttpServer {
if (!_codeServer) {
throw new Error("tried to use code-server before setting it up")
}
return _codeServer
}
let testFile: string | undefined
let testFileContent: string | undefined
let nonExistentTestFile: string | undefined
beforeAll(async () => {
const testDir = await tmpdir("_static")
2021-05-05 18:14:51 +02:00
testFile = path.join(testDir, "test")
testFileContent = "static file contents"
nonExistentTestFile = path.join(testDir, "i-am-not-here")
await fs.writeFile(testFile, testFileContent)
})
afterEach(async () => {
if (_codeServer) {
await _codeServer.close()
_codeServer = undefined
}
})
function commonTests() {
it("should return a 404 when a file is not provided", async () => {
const resp = await codeServer().fetch(`/_static/`)
expect(resp.status).toBe(NOT_FOUND.code)
2021-05-05 18:14:51 +02:00
const content = await resp.json()
expect(content.error).toContain(NOT_FOUND.message)
2021-05-05 18:14:51 +02:00
})
}
describe("disabled authentication", () => {
beforeEach(async () => {
_codeServer = await integration.setup(["--auth=none"], "")
})
commonTests()
it("should return a 404 for a nonexistent file", async () => {
const filePath = path.join("/_static/", nonExistentTestFile!)
2021-05-05 18:14:51 +02:00
const resp = await codeServer().fetch(filePath)
expect(resp.status).toBe(NOT_FOUND.code)
2021-05-05 18:14:51 +02:00
})
it("should return a 200 and file contents for an existent file", async () => {
const resp = await codeServer().fetch("/_static/src/browser/robots.txt")
2021-05-05 18:14:51 +02:00
expect(resp.status).toBe(200)
const localFilePath = path.join(rootPath, "src/browser/robots.txt")
const localFileContent = await fs.readFile(localFilePath, "utf8")
2021-05-05 18:14:51 +02:00
// console.log(localFileContent)
const content = await resp.text()
expect(content).toStrictEqual(localFileContent)
2021-05-05 18:14:51 +02:00
})
})
})