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-04-19 22:25:57 +00:00
|
|
|
// Create a new context with the saved storage state
|
|
|
|
// so we don't have to logged in
|
2021-04-21 21:31:15 +00:00
|
|
|
const testFileName = "pipe"
|
2021-04-19 22:25:57 +00:00
|
|
|
const testString = "new string test from e2e test"
|
|
|
|
|
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
|
|
|
})
|
|
|
|
|
2021-06-10 13:09:38 +00:00
|
|
|
test("should echo a string to a file", async ({ codeServerPage }) => {
|
2021-12-17 19:06:52 +00:00
|
|
|
const tmpFolderPath = await tmpdir(testName)
|
|
|
|
const tmpFile = path.join(tmpFolderPath, testFileName)
|
|
|
|
|
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")
|
|
|
|
await codeServerPage.page.keyboard.type(`echo ${testString} > ${tmpFile}`)
|
|
|
|
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
|
|
|
|
expect(stdout).toMatch(testString)
|
2021-04-19 22:25:57 +00:00
|
|
|
})
|
|
|
|
})
|