2021-04-24 05:28:39 +08:00
|
|
|
import * as cp from "child_process"
|
2021-04-21 03:41:54 +08:00
|
|
|
import * as path from "path"
|
2021-04-22 05:31:15 +08:00
|
|
|
import util from "util"
|
2021-12-18 03:06:52 +08:00
|
|
|
import { clean, tmpdir } from "../utils/helpers"
|
2021-06-23 05:34:44 +08:00
|
|
|
import { describe, expect, test } from "./baseFixture"
|
2021-04-20 06:25:57 +08:00
|
|
|
|
2021-06-24 06:41:36 +08:00
|
|
|
describe("Integrated Terminal", true, () => {
|
2021-12-18 03:06:52 +08:00
|
|
|
const testName = "integrated-terminal"
|
2021-04-24 05:28:39 +08:00
|
|
|
test.beforeAll(async () => {
|
2021-12-18 03:06:52 +08:00
|
|
|
await clean(testName)
|
2021-04-22 05:31:15 +08:00
|
|
|
})
|
|
|
|
|
2022-01-05 05:02:25 +08:00
|
|
|
test("should have access to VSCODE_PROXY_URI", async ({ codeServerPage }) => {
|
2021-12-18 03:06:52 +08:00
|
|
|
const tmpFolderPath = await tmpdir(testName)
|
2022-01-05 05:02:25 +08:00
|
|
|
const tmpFile = path.join(tmpFolderPath, "pipe")
|
2021-12-18 03:06:52 +08:00
|
|
|
|
2021-04-22 05:31:15 +08:00
|
|
|
const command = `mkfifo '${tmpFile}' && cat '${tmpFile}'`
|
|
|
|
const exec = util.promisify(cp.exec)
|
|
|
|
const output = exec(command, { encoding: "utf8" })
|
|
|
|
|
2021-04-20 06:25:57 +08:00
|
|
|
// Open terminal and type in value
|
2021-06-10 21:09:38 +08:00
|
|
|
await codeServerPage.focusTerminal()
|
2021-04-20 06:25:57 +08:00
|
|
|
|
2021-06-10 21:09:38 +08:00
|
|
|
await codeServerPage.page.waitForLoadState("load")
|
2022-01-05 05:02:25 +08:00
|
|
|
await codeServerPage.page.keyboard.type(`printenv VSCODE_PROXY_URI > ${tmpFile}`)
|
2021-06-10 21:09:38 +08:00
|
|
|
await codeServerPage.page.keyboard.press("Enter")
|
2021-04-28 02:30:22 +08:00
|
|
|
// It may take a second to process
|
2021-06-10 21:09:38 +08:00
|
|
|
await codeServerPage.page.waitForTimeout(1000)
|
2021-04-22 05:31:15 +08:00
|
|
|
|
|
|
|
const { stdout } = await output
|
2022-01-05 05:02:25 +08:00
|
|
|
expect(stdout).toMatch(await codeServerPage.address())
|
2021-04-20 06:25:57 +08:00
|
|
|
})
|
|
|
|
})
|