2021-04-23 23:28:39 +02:00
|
|
|
import * as cp from "child_process"
|
2022-08-04 18:03:28 +02:00
|
|
|
import { promises as fs } from "fs"
|
2021-04-20 21:41:54 +02:00
|
|
|
import * as path from "path"
|
2021-04-21 23:31:15 +02:00
|
|
|
import util from "util"
|
2021-12-17 20:06:52 +01:00
|
|
|
import { clean, tmpdir } from "../utils/helpers"
|
2021-06-22 23:34:44 +02:00
|
|
|
import { describe, expect, test } from "./baseFixture"
|
2021-04-20 00:25:57 +02:00
|
|
|
|
2022-03-02 21:02:51 +01:00
|
|
|
describe("Integrated Terminal", true, [], {}, () => {
|
2021-12-17 20:06:52 +01:00
|
|
|
const testName = "integrated-terminal"
|
2021-04-23 23:28:39 +02:00
|
|
|
test.beforeAll(async () => {
|
2021-12-17 20:06:52 +01:00
|
|
|
await clean(testName)
|
2021-04-21 23:31:15 +02:00
|
|
|
})
|
|
|
|
|
2022-01-04 22:02:25 +01:00
|
|
|
test("should have access to VSCODE_PROXY_URI", async ({ codeServerPage }) => {
|
2021-12-17 20:06:52 +01:00
|
|
|
const tmpFolderPath = await tmpdir(testName)
|
2022-01-04 22:02:25 +01:00
|
|
|
const tmpFile = path.join(tmpFolderPath, "pipe")
|
2021-12-17 20:06:52 +01:00
|
|
|
|
2021-04-21 23:31:15 +02:00
|
|
|
const command = `mkfifo '${tmpFile}' && cat '${tmpFile}'`
|
|
|
|
const exec = util.promisify(cp.exec)
|
|
|
|
const output = exec(command, { encoding: "utf8" })
|
|
|
|
|
2021-04-20 00:25:57 +02:00
|
|
|
// Open terminal and type in value
|
2021-06-10 15:09:38 +02:00
|
|
|
await codeServerPage.focusTerminal()
|
2021-04-20 00:25:57 +02:00
|
|
|
|
2022-01-04 22:02:25 +01:00
|
|
|
await codeServerPage.page.keyboard.type(`printenv VSCODE_PROXY_URI > ${tmpFile}`)
|
2021-06-10 15:09:38 +02:00
|
|
|
await codeServerPage.page.keyboard.press("Enter")
|
2021-04-21 23:31:15 +02:00
|
|
|
|
|
|
|
const { stdout } = await output
|
2022-01-04 22:02:25 +01:00
|
|
|
expect(stdout).toMatch(await codeServerPage.address())
|
2021-04-20 00:25:57 +02:00
|
|
|
})
|
2022-08-04 18:03:28 +02: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")
|
|
|
|
const fileName = path.basename(tmpFile)
|
|
|
|
|
|
|
|
await codeServerPage.focusTerminal()
|
|
|
|
|
|
|
|
await codeServerPage.page.keyboard.type(`code-server ${tmpFile}`)
|
|
|
|
await codeServerPage.page.keyboard.press("Enter")
|
|
|
|
|
|
|
|
await codeServerPage.waitForTab(fileName)
|
|
|
|
})
|
2021-04-20 00:25:57 +02:00
|
|
|
})
|