2021-05-05 16:14:51 +00:00
|
|
|
import { promises as fs } from "fs"
|
|
|
|
import * as path from "path"
|
2021-09-30 03:14:56 +00:00
|
|
|
import { rootPath } from "../../../../src/node/constants"
|
2021-07-27 23:52:57 +00:00
|
|
|
import { tmpdir } from "../../../utils/helpers"
|
|
|
|
import * as httpserver from "../../../utils/httpserver"
|
|
|
|
import * as integration from "../../../utils/integration"
|
2021-05-05 16:14:51 +00:00
|
|
|
|
2021-09-30 03:14:56 +00:00
|
|
|
const NOT_FOUND = {
|
|
|
|
code: 404,
|
2021-10-28 20:27:17 +00:00
|
|
|
message: /not found/i,
|
2021-09-30 03:14:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
describe("/_static", () => {
|
2021-05-05 16:14:51 +00: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 () => {
|
2021-09-30 03:14:56 +00:00
|
|
|
const testDir = await tmpdir("_static")
|
2021-05-05 16:14:51 +00: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) {
|
2021-10-28 20:27:17 +00:00
|
|
|
await _codeServer.dispose()
|
2021-05-05 16:14:51 +00:00
|
|
|
_codeServer = undefined
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
function commonTests() {
|
|
|
|
it("should return a 404 when a file is not provided", async () => {
|
2021-09-30 03:14:56 +00:00
|
|
|
const resp = await codeServer().fetch(`/_static/`)
|
|
|
|
expect(resp.status).toBe(NOT_FOUND.code)
|
2021-05-05 16:14:51 +00:00
|
|
|
|
|
|
|
const content = await resp.json()
|
2021-10-28 20:27:17 +00:00
|
|
|
expect(content.error).toMatch(NOT_FOUND.message)
|
2021-05-05 16:14:51 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
describe("disabled authentication", () => {
|
|
|
|
beforeEach(async () => {
|
|
|
|
_codeServer = await integration.setup(["--auth=none"], "")
|
|
|
|
})
|
|
|
|
|
|
|
|
commonTests()
|
|
|
|
|
|
|
|
it("should return a 404 for a nonexistent file", async () => {
|
2021-09-30 03:14:56 +00:00
|
|
|
const filePath = path.join("/_static/", nonExistentTestFile!)
|
2021-05-05 16:14:51 +00:00
|
|
|
|
2021-09-30 03:14:56 +00:00
|
|
|
const resp = await codeServer().fetch(filePath)
|
|
|
|
expect(resp.status).toBe(NOT_FOUND.code)
|
2021-05-05 16:14:51 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
it("should return a 200 and file contents for an existent file", async () => {
|
2021-09-30 03:14:56 +00:00
|
|
|
const resp = await codeServer().fetch("/_static/src/browser/robots.txt")
|
2021-05-05 16:14:51 +00:00
|
|
|
expect(resp.status).toBe(200)
|
|
|
|
|
2021-09-30 03:14:56 +00:00
|
|
|
const localFilePath = path.join(rootPath, "src/browser/robots.txt")
|
|
|
|
const localFileContent = await fs.readFile(localFilePath, "utf8")
|
2021-05-05 16:14:51 +00:00
|
|
|
|
2021-09-30 03:14:56 +00:00
|
|
|
// console.log(localFileContent)
|
|
|
|
const content = await resp.text()
|
|
|
|
expect(content).toStrictEqual(localFileContent)
|
2021-05-05 16:14:51 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|