f178f0400b
* docs: update maintaining * chore(e2e): add maxFailures to playwright * fix(ci): skip submodule in e2e job We don't need the submodules for the e2e job. This will speed up the checkout step. * feat(ci): add test-e2e-proxy job This adds a new job to CI to run our tests behind Caddy and simulate code-server running against a reverse-proxy. * refactor: make e2e work with reverse proxy This refactors the e2e test in a couple ways: - remove setting cookie in localStorage (instead we pass --auth none) - refactor address() method to account for reverse proxy logic * Update test/e2e/models/CodeServer.ts * Update test/playwright.config.ts * Update test/utils/constants.ts Co-authored-by: Asher <ash@coder.com> * Update test/utils/helpers.ts Co-authored-by: Asher <ash@coder.com> Co-authored-by: Asher <ash@coder.com>
47 lines
1.6 KiB
TypeScript
47 lines
1.6 KiB
TypeScript
import * as cp from "child_process"
|
|
import { promises as fs } from "fs"
|
|
import * as path from "path"
|
|
import util from "util"
|
|
import { clean, getMaybeProxiedCodeServer, tmpdir } from "../utils/helpers"
|
|
import { describe, expect, test } from "./baseFixture"
|
|
|
|
describe("Integrated Terminal", [], {}, () => {
|
|
const testName = "integrated-terminal"
|
|
test.beforeAll(async () => {
|
|
await clean(testName)
|
|
})
|
|
|
|
test("should have access to VSCODE_PROXY_URI", async ({ codeServerPage }) => {
|
|
const tmpFolderPath = await tmpdir(testName)
|
|
const tmpFile = path.join(tmpFolderPath, "pipe")
|
|
|
|
const command = `mkfifo '${tmpFile}' && cat '${tmpFile}'`
|
|
const exec = util.promisify(cp.exec)
|
|
const output = exec(command, { encoding: "utf8" })
|
|
|
|
// Open terminal and type in value
|
|
await codeServerPage.focusTerminal()
|
|
|
|
await codeServerPage.page.keyboard.type(`printenv VSCODE_PROXY_URI > ${tmpFile}`)
|
|
await codeServerPage.page.keyboard.press("Enter")
|
|
|
|
const { stdout } = await output
|
|
const address = await getMaybeProxiedCodeServer(codeServerPage)
|
|
expect(stdout).toMatch(address)
|
|
})
|
|
|
|
test("should be able to invoke `code-server` to open a file", async ({ codeServerPage }) => {
|
|
const tmpFolderPath = await tmpdir(testName)
|
|
const tmpFile = path.join(tmpFolderPath, "test-file")
|
|
await fs.writeFile(tmpFile, "test")
|
|
const fileName = path.basename(tmpFile)
|
|
|
|
await codeServerPage.focusTerminal()
|
|
|
|
await codeServerPage.page.keyboard.type(`code-server ${tmpFile}`)
|
|
await codeServerPage.page.keyboard.press("Enter")
|
|
|
|
await codeServerPage.waitForTab(fileName)
|
|
})
|
|
})
|