2021-04-24 04:28:39 +07:00
|
|
|
import * as cp from "child_process"
|
2021-04-21 02:41:54 +07:00
|
|
|
import * as fs from "fs"
|
|
|
|
import * as path from "path"
|
2021-04-22 04:31:15 +07:00
|
|
|
import util from "util"
|
2021-05-05 23:02:34 +07:00
|
|
|
import { tmpdir } from "../utils/helpers"
|
2021-06-23 04:34:44 +07:00
|
|
|
import { describe, expect, test } from "./baseFixture"
|
2021-04-20 05:25:57 +07:00
|
|
|
|
2021-06-24 05:41:36 +07:00
|
|
|
describe("Integrated Terminal", true, () => {
|
2021-04-20 05:25:57 +07:00
|
|
|
// Create a new context with the saved storage state
|
|
|
|
// so we don't have to logged in
|
2021-04-22 04:31:15 +07:00
|
|
|
const testFileName = "pipe"
|
2021-04-20 05:25:57 +07:00
|
|
|
const testString = "new string test from e2e test"
|
2021-04-24 04:28:39 +07:00
|
|
|
let tmpFolderPath = ""
|
|
|
|
let tmpFile = ""
|
2021-04-20 05:25:57 +07:00
|
|
|
|
2021-04-24 04:28:39 +07:00
|
|
|
test.beforeAll(async () => {
|
|
|
|
tmpFolderPath = await tmpdir("integrated-terminal")
|
|
|
|
tmpFile = path.join(tmpFolderPath, testFileName)
|
|
|
|
})
|
|
|
|
|
|
|
|
test.afterAll(async () => {
|
2021-04-22 04:31:15 +07:00
|
|
|
// Ensure directory was removed
|
2021-04-24 04:28:39 +07:00
|
|
|
await fs.promises.rmdir(tmpFolderPath, { recursive: true })
|
2021-04-22 04:31:15 +07:00
|
|
|
})
|
|
|
|
|
2021-06-10 20:09:38 +07:00
|
|
|
test("should echo a string to a file", async ({ codeServerPage }) => {
|
2021-04-22 04:31:15 +07:00
|
|
|
const command = `mkfifo '${tmpFile}' && cat '${tmpFile}'`
|
|
|
|
const exec = util.promisify(cp.exec)
|
|
|
|
const output = exec(command, { encoding: "utf8" })
|
|
|
|
|
2021-04-20 05:25:57 +07:00
|
|
|
// Open terminal and type in value
|
2021-06-10 20:09:38 +07:00
|
|
|
await codeServerPage.focusTerminal()
|
2021-04-20 05:25:57 +07:00
|
|
|
|
2021-06-10 20:09:38 +07:00
|
|
|
await codeServerPage.page.waitForLoadState("load")
|
|
|
|
await codeServerPage.page.keyboard.type(`echo ${testString} > ${tmpFile}`)
|
|
|
|
await codeServerPage.page.keyboard.press("Enter")
|
2021-04-28 01:30:22 +07:00
|
|
|
// It may take a second to process
|
2021-06-10 20:09:38 +07:00
|
|
|
await codeServerPage.page.waitForTimeout(1000)
|
2021-04-22 04:31:15 +07:00
|
|
|
|
|
|
|
const { stdout } = await output
|
|
|
|
expect(stdout).toMatch(testString)
|
2021-04-20 05:25:57 +07:00
|
|
|
})
|
|
|
|
})
|