polished run.sh, updated tests

pull/47/head
Stephen Kirby 2 years ago
parent 9e0fe90aeb
commit 001fcca8d9

@ -11,31 +11,35 @@ describe("git-config", async () => {
testRequiredVariables(import.meta.dir, {
agent_id: "foo",
allow_username_change: true,
allow_email_change: false,
});
it("fails without git", async () => {
const state = await runTerraformApply(import.meta.dir, {
agent_id: "foo",
allow_username_change: true,
allow_username_change: false,
allow_email_change: false,
});
const output = await executeScriptInContainer(state, "alpine");
expect(output.exitCode).toBe(1);
expect(output.stdout).toEqual(["\u001B[0;1mChecking git-config!", "Git is not installed!"]);
expect(output.stdout).toEqual([
"\u001B[0;1mChecking git-config!",
"Git is not installed!",
]);
});
// it("runs with git", async () => {
// const state = await runTerraformApply(import.meta.dir, {
// agent_id: "foo",
// url: "fake-url",
// });
// const output = await executeScriptInContainer(state, "alpine/git");
// expect(output.exitCode).toBe(128);
// expect(output.stdout).toEqual([
// "Creating directory ~/fake-url...",
// "Cloning fake-url to ~/fake-url...",
// ]);
// });
it("runs with git", async () => {
const state = await runTerraformApply(import.meta.dir, {
agent_id: "foo",
});
const output = await executeScriptInContainer(state, "alpine/git");
expect(output.exitCode).toBe(0);
expect(output.stdout).toEqual([
"\u001B[0;1mChecking git-config!",
"git-config: No user.email found, setting to ",
"git-config: No user.name found, setting to default",
"\u001B[0;1mgit-config: using email: ",
"",
"\u001B[0;1mgit-config: using username: default",
]);
});
});

@ -20,5 +20,5 @@ if [ -z $(git config --get user.name) ]; then
git config --global user.name "${CODER_USERNAME}"
fi
printf "\n$${BOLD}git-config: using username: $(git config --get user.name)\n"
printf "$${BOLD}git-config: using email: $(git config --get user.email)\n\n"
printf "$${BOLD}git-config: using email: $(git config --get user.email)\n"
printf "\n$${BOLD}git-config: using username: $(git config --get user.name)\n\n"

Loading…
Cancel
Save