2021-04-19 22:25:57 +00:00
|
|
|
import { test, expect } from "@playwright/test"
|
2021-04-20 19:41:54 +00:00
|
|
|
import * as fs from "fs"
|
|
|
|
import { tmpdir } from "os"
|
|
|
|
import * as path from "path"
|
|
|
|
|
2021-04-19 22:25:57 +00:00
|
|
|
import { STORAGE } from "../utils/constants"
|
|
|
|
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-20 19:41:54 +00:00
|
|
|
const testFileName = "test.txt"
|
2021-04-19 22:25:57 +00:00
|
|
|
const testString = "new string test from e2e test"
|
|
|
|
let codeServer: CodeServer
|
|
|
|
|
|
|
|
// 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,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
test.beforeEach(async ({ page }) => {
|
|
|
|
codeServer = new CodeServer(page)
|
|
|
|
await codeServer.navigate()
|
|
|
|
})
|
|
|
|
|
|
|
|
test("should echo a string to a file", options, async ({ page }) => {
|
2021-04-20 19:41:54 +00:00
|
|
|
const tmpFolderPath = fs.mkdtempSync(path.join(tmpdir(), "code-server-test"))
|
|
|
|
const tmpFile = `${tmpFolderPath}${path.sep}${testFileName}`
|
2021-04-19 22:25:57 +00:00
|
|
|
// Open terminal and type in value
|
|
|
|
await codeServer.focusTerminal()
|
|
|
|
|
2021-04-20 19:41:54 +00:00
|
|
|
// give the terminal a second to load
|
|
|
|
await page.waitForTimeout(3000)
|
|
|
|
await page.keyboard.type(`echo '${testString}' > ${tmpFile}`)
|
|
|
|
// Wait for the typing to finish before hitting enter
|
|
|
|
await page.waitForTimeout(500)
|
2021-04-19 22:25:57 +00:00
|
|
|
await page.keyboard.press("Enter")
|
|
|
|
await page.waitForTimeout(2000)
|
|
|
|
|
2021-04-20 19:41:54 +00:00
|
|
|
// .access checks if the file exists without opening it
|
|
|
|
// it doesn't return anything hence why we expect it to
|
|
|
|
// resolve to undefined
|
|
|
|
// If the promise rejects (i.e. the file doesn't exist)
|
|
|
|
// then the assertion will fail
|
|
|
|
await expect(fs.promises.access(tmpFile)).resolves.toBeUndefined()
|
2021-04-19 22:25:57 +00:00
|
|
|
|
2021-04-20 19:41:54 +00:00
|
|
|
await fs.promises.rmdir(tmpFolderPath, { recursive: true })
|
|
|
|
// Make sure neither file nor folder exist
|
|
|
|
// Note: We have to use ts-ignore because of an upstream typing error
|
|
|
|
// See: https://github.com/microsoft/folio/issues/230#event-4621948411
|
|
|
|
/* eslint-disable @typescript-eslint/ban-ts-comment */
|
|
|
|
// @ts-ignore
|
|
|
|
expect(fs.promises.access(tmpFile)).rejects.toThrowError(/no such file or directory/)
|
|
|
|
// @ts-ignore
|
|
|
|
expect(fs.promises.access(tmpFolderPath)).rejects.toThrowError(/no such file or directory/)
|
2021-04-19 22:25:57 +00:00
|
|
|
})
|
|
|
|
})
|