You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.7 KiB
TypeScript
64 lines
1.7 KiB
TypeScript
import { describe, expect, it } from "bun:test";
|
|
import {
|
|
executeScriptInContainer,
|
|
runTerraformApply,
|
|
runTerraformInit,
|
|
testRequiredVariables,
|
|
findResourceInstance,
|
|
runContainer,
|
|
TerraformState,
|
|
execContainer,
|
|
} from "../test";
|
|
|
|
// executes the coder script after installing pip
|
|
const executeScriptInContainerWithPip = async (
|
|
state: TerraformState,
|
|
image: string,
|
|
shell: string = "sh",
|
|
): Promise<{
|
|
exitCode: number;
|
|
stdout: string[];
|
|
stderr: string[];
|
|
}> => {
|
|
const instance = findResourceInstance(state, "coder_script");
|
|
const id = await runContainer(image);
|
|
const respPip = await execContainer(id, [shell, "-c", "apk add py3-pip"]);
|
|
const resp = await execContainer(id, [shell, "-c", instance.script]);
|
|
const stdout = resp.stdout.trim().split("\n");
|
|
const stderr = resp.stderr.trim().split("\n");
|
|
return {
|
|
exitCode: resp.exitCode,
|
|
stdout,
|
|
stderr,
|
|
};
|
|
};
|
|
|
|
describe("jupyterlab", async () => {
|
|
await runTerraformInit(import.meta.dir);
|
|
|
|
testRequiredVariables(import.meta.dir, {
|
|
agent_id: "foo",
|
|
});
|
|
|
|
it("fails without pip3", async () => {
|
|
const state = await runTerraformApply(import.meta.dir, {
|
|
agent_id: "foo",
|
|
});
|
|
const output = await executeScriptInContainer(state, "alpine");
|
|
expect(output.exitCode).toBe(1);
|
|
expect(output.stdout).toEqual([
|
|
"\u001B[0;1mInstalling jupyterlab!",
|
|
"pip3 is not installed",
|
|
"Please install pip3 in your Dockerfile/VM image before running this script",
|
|
]);
|
|
});
|
|
|
|
// TODO: Add faster test to run with pip3.
|
|
// currently times out.
|
|
// it("runs with pip3", async () => {
|
|
// ...
|
|
// const output = await executeScriptInContainerWithPip(state, "alpine");
|
|
// ...
|
|
// });
|
|
});
|