mirror of https://github.com/coder/code-server.git
feat: add test for EXTENSIONS_GALLERY (#5432)
* refactor: add env arg to runCodeServerCommand This allows yous to pass environment variables to code-server's helper when running integration tests. * feat: add EXTENSIONS_GALLERY integration test This test ensures EXTENSIONS_GALLERY is read when set and using the `--install-extension` flag. Co-authored-by: repo-ranger[bot] <39074581+repo-ranger[bot]@users.noreply.github.com>
This commit is contained in:
parent
a51c94190f
commit
11b2ef9846
|
@ -22,4 +22,11 @@ describe("--install-extension", () => {
|
||||||
const statInfo = await stat(pathToExtFolder)
|
const statInfo = await stat(pathToExtFolder)
|
||||||
expect(statInfo.isDirectory()).toBe(true)
|
expect(statInfo.isDirectory()).toBe(true)
|
||||||
}, 20000)
|
}, 20000)
|
||||||
|
it("should use EXTENSIONS_GALLERY when set", async () => {
|
||||||
|
const extName = `author.extension-1.0.0`
|
||||||
|
const { stderr } = await runCodeServerCommand([...setupFlags, "--install-extension", extName], {
|
||||||
|
EXTENSIONS_GALLERY: "{}",
|
||||||
|
})
|
||||||
|
expect(stderr).toMatch("No extension gallery service configured")
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
|
@ -6,9 +6,14 @@ import { promisify } from "util"
|
||||||
*
|
*
|
||||||
* A helper function for integration tests to run code-server commands.
|
* A helper function for integration tests to run code-server commands.
|
||||||
*/
|
*/
|
||||||
export async function runCodeServerCommand(argv: string[]): Promise<{ stdout: string; stderr: string }> {
|
export async function runCodeServerCommand(
|
||||||
|
argv: string[],
|
||||||
|
env?: NodeJS.ProcessEnv,
|
||||||
|
): Promise<{ stdout: string; stderr: string }> {
|
||||||
const CODE_SERVER_COMMAND = process.env.CODE_SERVER_PATH || path.resolve("../../release-standalone/bin/code-server")
|
const CODE_SERVER_COMMAND = process.env.CODE_SERVER_PATH || path.resolve("../../release-standalone/bin/code-server")
|
||||||
const { stdout, stderr } = await promisify(exec)(`${CODE_SERVER_COMMAND} ${argv.join(" ")}`)
|
const { stdout, stderr } = await promisify(exec)(`${CODE_SERVER_COMMAND} ${argv.join(" ")}`, {
|
||||||
|
env: { ...process.env, ...env },
|
||||||
|
})
|
||||||
|
|
||||||
return { stdout, stderr }
|
return { stdout, stderr }
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue