2021-04-24 05:28:39 +08:00
|
|
|
import * as cp from "child_process"
|
2022-08-05 00:03:28 +08:00
|
|
|
import { promises as fs } from "fs"
|
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"
|
2022-08-10 02:24:37 +08:00
|
|
|
import { clean, getMaybeProxiedCodeServer, 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
|
|
|
|
2022-10-14 03:57:04 +08:00
|
|
|
describe("Integrated Terminal", ["--disable-workspace-trust"], {}, () => {
|
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
|
|
|
|
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-22 05:31:15 +08:00
|
|
|
|
|
|
|
const { stdout } = await output
|
2022-08-10 02:24:37 +08:00
|
|
|
const address = await getMaybeProxiedCodeServer(codeServerPage)
|
|
|
|
expect(stdout).toMatch(address)
|
2021-04-20 06:25:57 +08:00
|
|
|
})
|
2022-08-05 00:03:28 +08:00
|
|
|
|
2022-09-28 02:46:37 +08:00
|
|
|
// TODO@jsjoeio - add test to make sure full code-server path works
|
2022-08-05 00:03:28 +08:00
|
|
|
test("should be able to invoke `code-server` to open a file", async ({ codeServerPage }) => {
|
|
|
|
const tmpFolderPath = await tmpdir(testName)
|
|
|
|
const tmpFile = path.join(tmpFolderPath, "test-file")
|
|
|
|
await fs.writeFile(tmpFile, "test")
|
|
|
|
|
|
|
|
await codeServerPage.focusTerminal()
|
|
|
|
|
|
|
|
await codeServerPage.page.keyboard.type(`code-server ${tmpFile}`)
|
|
|
|
await codeServerPage.page.keyboard.press("Enter")
|
|
|
|
|
2023-06-22 14:47:01 +08:00
|
|
|
await codeServerPage.waitForTab(path.basename(tmpFile))
|
|
|
|
|
|
|
|
const externalTmpFile = path.join(tmpFolderPath, "test-external-file")
|
|
|
|
await fs.writeFile(externalTmpFile, "foobar")
|
|
|
|
|
|
|
|
await codeServerPage.openFileExternally(externalTmpFile)
|
|
|
|
|
|
|
|
await codeServerPage.waitForTab(path.basename(externalTmpFile))
|
2022-08-05 00:03:28 +08:00
|
|
|
})
|
2021-04-20 06:25:57 +08:00
|
|
|
})
|