mirror of
https://github.com/coder/code-server.git
synced 2026-09-02 08:30:17 +02:00
Require auth for mint key endpoint (#7923)
The client combines the key from this endpoint to then encrypt secrets into browser storage.
This commit is contained in:
@@ -4,11 +4,19 @@ import * as integration from "../../../utils/integration"
|
||||
|
||||
describe("vscode", () => {
|
||||
let codeServer: httpserver.HttpServer | undefined
|
||||
// TODO: Support setting this as an argument for tests.
|
||||
const previousEnvPassword = process.env.PASSWORD
|
||||
beforeEach(() => {
|
||||
process.env.PASSWORD = "test"
|
||||
mockLogger()
|
||||
})
|
||||
|
||||
afterEach(async () => {
|
||||
if (typeof previousEnvPassword !== "undefined") {
|
||||
process.env.PASSWORD = previousEnvPassword
|
||||
} else {
|
||||
delete process.env.PASSWORD
|
||||
}
|
||||
if (codeServer) {
|
||||
await codeServer.dispose()
|
||||
codeServer = undefined
|
||||
@@ -27,4 +35,10 @@ describe("vscode", () => {
|
||||
})
|
||||
}).rejects.toThrow()
|
||||
})
|
||||
|
||||
it("should require auth", async () => {
|
||||
codeServer = await integration.setup(["--auth=password"], "")
|
||||
let resp = await codeServer.fetch("/mint-key", { method: "POST" })
|
||||
expect(resp.status).toBe(401)
|
||||
})
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user