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