2022-02-22 19:43:13 +01:00
|
|
|
import { promises as fs } from "fs"
|
|
|
|
import * as path from "path"
|
2021-06-22 23:34:44 +02:00
|
|
|
import { describe, test, expect } from "./baseFixture"
|
2021-04-20 00:25:57 +02:00
|
|
|
|
2022-03-02 21:02:51 +01:00
|
|
|
describe("CodeServer", true, [], {}, () => {
|
2021-06-22 23:34:44 +02:00
|
|
|
test("should navigate to home page", async ({ codeServerPage }) => {
|
2021-04-20 21:41:54 +02: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 15:09:38 +02:00
|
|
|
const url = codeServerPage.page.url()
|
2021-04-20 21:41:54 +02: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/
|
2021-06-22 23:34:44 +02:00
|
|
|
expect(url).toMatch(await codeServerPage.address())
|
2021-04-20 21:41:54 +02:00
|
|
|
})
|
2021-04-20 00:25:57 +02:00
|
|
|
|
2021-06-10 15:09:38 +02:00
|
|
|
test("should always see the code-server editor", async ({ codeServerPage }) => {
|
|
|
|
expect(await codeServerPage.isEditorVisible()).toBe(true)
|
2021-04-20 00:25:57 +02:00
|
|
|
})
|
|
|
|
|
2021-06-10 15:09:38 +02:00
|
|
|
test("should always have a connection", async ({ codeServerPage }) => {
|
|
|
|
expect(await codeServerPage.isConnected()).toBe(true)
|
2021-04-30 21:33:20 +02:00
|
|
|
})
|
|
|
|
|
2021-06-10 15:09:38 +02:00
|
|
|
test("should show the Integrated Terminal", async ({ codeServerPage }) => {
|
|
|
|
await codeServerPage.focusTerminal()
|
|
|
|
expect(await codeServerPage.page.isVisible("#terminal")).toBe(true)
|
2021-04-20 00:25:57 +02:00
|
|
|
})
|
2022-02-22 19:43:13 +01: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)
|
|
|
|
})
|
|
|
|
|
|
|
|
test("should not share state with other paths", async ({ codeServerPage }) => {
|
|
|
|
const dir = await codeServerPage.workspaceDir
|
|
|
|
const file = path.join(dir, "foo")
|
|
|
|
await fs.writeFile(file, "bar")
|
|
|
|
|
|
|
|
await codeServerPage.openFile(file)
|
|
|
|
|
|
|
|
// If we reload now VS Code will be unable to save the state changes so wait
|
|
|
|
// until those have been written to the database. It flushes every five
|
|
|
|
// seconds so we need to wait at least that long.
|
|
|
|
await codeServerPage.page.waitForTimeout(5500)
|
|
|
|
|
|
|
|
// The tab should re-open on refresh.
|
|
|
|
await codeServerPage.page.reload()
|
|
|
|
await codeServerPage.waitForTab(file)
|
|
|
|
|
|
|
|
// The tab should not re-open on a different path.
|
|
|
|
await codeServerPage.setup(true, "/vscode")
|
|
|
|
expect(await codeServerPage.tabIsVisible(file)).toBe(false)
|
|
|
|
})
|
2021-04-20 00:25:57 +02:00
|
|
|
})
|