2022-02-23 02:43:13 +08:00
|
|
|
import { promises as fs } from "fs"
|
|
|
|
import * as path from "path"
|
2022-08-10 02:24:37 +08:00
|
|
|
import { getMaybeProxiedCodeServer } from "../utils/helpers"
|
2021-06-23 05:34:44 +08:00
|
|
|
import { describe, test, expect } from "./baseFixture"
|
2022-03-04 02:32:43 +08:00
|
|
|
import { CodeServer } from "./models/CodeServer"
|
|
|
|
|
2022-10-14 03:57:04 +08:00
|
|
|
describe("code-server", ["--disable-workspace-trust"], {}, () => {
|
2022-03-04 02:32:43 +08:00
|
|
|
// TODO@asher: Generalize this? Could be nice if we were to ever need
|
|
|
|
// multiple migration tests in other suites.
|
|
|
|
const instances = new Map<string, CodeServer>()
|
|
|
|
test.afterAll(async () => {
|
|
|
|
const procs = Array.from(instances.values())
|
|
|
|
instances.clear()
|
|
|
|
await Promise.all(procs.map((cs) => cs.close()))
|
|
|
|
})
|
|
|
|
|
2021-06-23 05:34:44 +08:00
|
|
|
test("should navigate to home page", async ({ codeServerPage }) => {
|
2021-04-21 03:41:54 +08:00
|
|
|
// We navigate codeServer before each test
|
|
|
|
// and we start the test with a storage state
|
|
|
|
// which means we should be logged in
|
|
|
|
// so it should be on the address
|
2021-06-10 21:09:38 +08:00
|
|
|
const url = codeServerPage.page.url()
|
2021-04-21 03:41:54 +08:00
|
|
|
// We use match because there may be a / at the end
|
|
|
|
// so we don't want it to fail if we expect http://localhost:8080 to match http://localhost:8080/
|
2022-08-10 02:24:37 +08:00
|
|
|
const address = await getMaybeProxiedCodeServer(codeServerPage)
|
|
|
|
expect(url).toMatch(address)
|
2021-04-21 03:41:54 +08:00
|
|
|
})
|
2021-04-20 06:25:57 +08:00
|
|
|
|
2021-06-10 21:09:38 +08:00
|
|
|
test("should always see the code-server editor", async ({ codeServerPage }) => {
|
|
|
|
expect(await codeServerPage.isEditorVisible()).toBe(true)
|
2021-04-20 06:25:57 +08:00
|
|
|
})
|
|
|
|
|
2021-06-10 21:09:38 +08:00
|
|
|
test("should show the Integrated Terminal", async ({ codeServerPage }) => {
|
|
|
|
await codeServerPage.focusTerminal()
|
|
|
|
expect(await codeServerPage.page.isVisible("#terminal")).toBe(true)
|
2021-04-20 06:25:57 +08:00
|
|
|
})
|
2022-02-23 02:43:13 +08:00
|
|
|
|
|
|
|
test("should open a file", async ({ codeServerPage }) => {
|
|
|
|
const dir = await codeServerPage.workspaceDir
|
|
|
|
const file = path.join(dir, "foo")
|
|
|
|
await fs.writeFile(file, "bar")
|
|
|
|
await codeServerPage.openFile(file)
|
|
|
|
})
|
2021-04-20 06:25:57 +08:00
|
|
|
})
|