2021-05-05 16:02:34 +00:00
|
|
|
import { expect, test } from "@playwright/test"
|
2021-04-23 21:28:39 +00:00
|
|
|
import * as cp from "child_process"
|
2021-04-20 19:41:54 +00:00
|
|
|
import * as fs from "fs"
|
|
|
|
import * as path from "path"
|
2021-04-21 21:31:15 +00:00
|
|
|
import util from "util"
|
2021-05-05 16:02:34 +00:00
|
|
|
import { STORAGE } from "../utils/constants"
|
|
|
|
import { tmpdir } from "../utils/helpers"
|
2021-04-19 22:25:57 +00:00
|
|
|
import { CodeServer } from "./models/CodeServer"
|
|
|
|
|
|
|
|
test.describe("Integrated Terminal", () => {
|
|
|
|
// Create a new context with the saved storage state
|
|
|
|
// so we don't have to logged in
|
|
|
|
const options: any = {}
|
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"
|
|
|
|
let codeServer: CodeServer
|
2021-04-23 21:28:39 +00:00
|
|
|
let tmpFolderPath = ""
|
|
|
|
let tmpFile = ""
|
2021-04-19 22:25:57 +00:00
|
|
|
|
|
|
|
// TODO@jsjoeio
|
|
|
|
// Fix this once https://github.com/microsoft/playwright-test/issues/240
|
|
|
|
// is fixed
|
|
|
|
if (STORAGE) {
|
|
|
|
const storageState = JSON.parse(STORAGE) || {}
|
|
|
|
options.contextOptions = {
|
|
|
|
storageState,
|
|
|
|
}
|
|
|
|
}
|
2021-04-23 21:28:39 +00:00
|
|
|
test.beforeAll(async () => {
|
|
|
|
tmpFolderPath = await tmpdir("integrated-terminal")
|
|
|
|
tmpFile = path.join(tmpFolderPath, testFileName)
|
|
|
|
})
|
|
|
|
|
2021-04-19 22:25:57 +00:00
|
|
|
test.beforeEach(async ({ page }) => {
|
|
|
|
codeServer = new CodeServer(page)
|
2021-04-21 21:31:15 +00:00
|
|
|
await codeServer.setup()
|
|
|
|
})
|
|
|
|
|
2021-04-23 21:28:39 +00:00
|
|
|
test.afterAll(async () => {
|
2021-04-21 21:31:15 +00:00
|
|
|
// Ensure directory was removed
|
2021-04-23 21:28:39 +00:00
|
|
|
await fs.promises.rmdir(tmpFolderPath, { recursive: true })
|
2021-04-21 21:31:15 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
test("should echo a string to a file", options, async ({ page }) => {
|
|
|
|
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
|
|
|
|
await codeServer.focusTerminal()
|
|
|
|
|
2021-04-21 21:31:15 +00:00
|
|
|
await page.waitForLoadState("load")
|
2021-04-29 23:22:21 +00:00
|
|
|
await page.keyboard.type(`echo ${testString} > ${tmpFile}`)
|
2021-04-19 22:25:57 +00:00
|
|
|
await page.keyboard.press("Enter")
|
2021-04-27 18:30:22 +00:00
|
|
|
// It may take a second to process
|
|
|
|
await 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
|
|
|
})
|
|
|
|
})
|