51677f0819
* refactor: remove stylelint * refactor: move shellcheck to separate job * refactor: add helm script and job * refactor: add eslint job and yarn script * fix(test/tsconfig): exclude test-plugin * refactor: delete lint, add typecheck job * refactor: remove prebuild * wip: add notes about unit test refactor * refactor: delete buggy socket test This test was really added to in get cover specific lines but it's buggy and only passes sometimes locally. I think it's okay to remove because: - it's an implementation detail (not user facing) - not preventing any specific regressions * refactor: move test-plugin to integration suite This seems more appropriate given this tests how a plugin might work within code-server. * wip * wip: refactor vscode integration tests * refactor: move unit tests to separate job * fix: formatting * Revert "wip: refactor vscode integration tests" This reverts commit13286bf4c9
. * Revert "refactor: move unit tests to separate job" This reverts commit6c87b540b4
. * feat: collect codecov integration tests * fixup! feat: collect codecov integration tests * fixup! feat: collect codecov integration tests * fixup!: move helm step * fixup!: update ids for caching * trigger ci * trigger ci * chore: clean up names in security.yaml * fixup!: remove .tsx * fixup!: change to src/**" * fixup!: move helm cmd to yaml * fixup!: always build test plugin * fixup!: fix plugin typings * fixup! add back flakey test * fixup!: only install helm deps if changes * fixup!: revert node mod caching * dont keep, test for asher * fixup!: add make to centos * refactor: add test:native This adds a new script to run native tests (i.e. --help which should run in ci on all platforms). * try updating glibc * try 2.25 * Revert "refactor: move test-plugin to integration suite" This reverts commitbc02005dc0
. I couldn't get past some GLIBC errors in CI so moving back to unit tests. * Revert "try updating glibc" This reverts commit02ed560f22
. * fixup! * asher: again * try this for ts changes * fixup * refactor: scripts.yml -> scripts.yaml * fixup!: move lint-sh to scripts.yaml * fixup!: use apk for lint scripts * fixup! fixup!: use apk for lint scripts * fixup!: remove typecheck step * fix: pattern for lint ts files * test: lint should fail * fixup! fixup!: use apk for lint scripts * Revert "test: lint should fail" This reverts commit158c64db04
. * fixup!: skip cancel workflow on forks Looks like the cancel action workflow can't run on forks due to secrets. See https://github.com/andymckay/cancel-action/issues/4 * fixup: remove cancel-workflow * fixup! fixup! fixup!: use apk for lint scripts * fixup! fixup! fixup!: use apk for lint scripts * fixup!: fix yarn key * fixup!: add fetch-depth 0
138 lines
4.3 KiB
TypeScript
138 lines
4.3 KiB
TypeScript
import { promises as fs } from "fs"
|
|
import * as path from "path"
|
|
import { clean, tmpdir } from "../../../utils/helpers"
|
|
import * as httpserver from "../../../utils/httpserver"
|
|
import * as integration from "../../../utils/integration"
|
|
|
|
// TODO@jsjoeio - move these to integration tests since they rely on Code
|
|
// to be built
|
|
describe("vscode", () => {
|
|
let codeServer: httpserver.HttpServer | undefined
|
|
|
|
const testName = "vscode"
|
|
beforeAll(async () => {
|
|
await clean(testName)
|
|
})
|
|
|
|
afterEach(async () => {
|
|
if (codeServer) {
|
|
await codeServer.dispose()
|
|
codeServer = undefined
|
|
}
|
|
})
|
|
|
|
const routes = ["/", "/vscode", "/vscode/"]
|
|
|
|
it("should load all route variations", async () => {
|
|
codeServer = await integration.setup(["--auth=none"], "")
|
|
|
|
for (const route of routes) {
|
|
const resp = await codeServer.fetch(route)
|
|
expect(resp.status).toBe(200)
|
|
const html = await resp.text()
|
|
const url = new URL(resp.url) // Check there were no redirections.
|
|
expect(url.pathname + url.search).toBe(route)
|
|
switch (route) {
|
|
case "/":
|
|
case "/vscode/":
|
|
expect(html).toMatch(/src="\.\/[a-z]+-[0-9a-z]+\/static\//)
|
|
break
|
|
case "/vscode":
|
|
expect(html).toMatch(/src="\.\/vscode\/[a-z]+-[0-9a-z]+\/static\//)
|
|
break
|
|
}
|
|
}
|
|
})
|
|
|
|
it("should redirect to the passed in workspace using human-readable query", async () => {
|
|
const workspace = path.join(await tmpdir(testName), "test.code-workspace")
|
|
await fs.writeFile(workspace, "")
|
|
codeServer = await integration.setup(["--auth=none", workspace], "")
|
|
|
|
const resp = await codeServer.fetch("/")
|
|
const url = new URL(resp.url)
|
|
expect(url.pathname).toBe("/")
|
|
expect(url.search).toBe(`?workspace=${workspace}`)
|
|
})
|
|
|
|
it("should redirect to the passed in folder using human-readable query", async () => {
|
|
const folder = await tmpdir(testName)
|
|
codeServer = await integration.setup(["--auth=none", folder], "")
|
|
|
|
const resp = await codeServer.fetch("/")
|
|
const url = new URL(resp.url)
|
|
expect(url.pathname).toBe("/")
|
|
expect(url.search).toBe(`?folder=${folder}`)
|
|
})
|
|
|
|
it("should redirect to last query folder/workspace", async () => {
|
|
codeServer = await integration.setup(["--auth=none"], "")
|
|
|
|
const folder = await tmpdir(testName)
|
|
const workspace = path.join(await tmpdir(testName), "test.code-workspace")
|
|
await fs.writeFile(workspace, "")
|
|
let resp = await codeServer.fetch("/", undefined, {
|
|
folder,
|
|
workspace,
|
|
})
|
|
expect(resp.status).toBe(200)
|
|
await resp.text()
|
|
|
|
// If you visit again without query parameters it will re-attach them by
|
|
// redirecting. It should always redirect to the same route.
|
|
for (const route of routes) {
|
|
resp = await codeServer.fetch(route)
|
|
const url = new URL(resp.url)
|
|
expect(url.pathname).toBe(route)
|
|
expect(url.search).toBe(`?folder=${folder}&workspace=${workspace}`)
|
|
await resp.text()
|
|
}
|
|
|
|
// Closing the folder should stop the redirecting.
|
|
resp = await codeServer.fetch("/", undefined, { ew: "true" })
|
|
let url = new URL(resp.url)
|
|
expect(url.pathname).toBe("/")
|
|
expect(url.search).toBe("?ew=true")
|
|
await resp.text()
|
|
|
|
resp = await codeServer.fetch("/")
|
|
url = new URL(resp.url)
|
|
expect(url.pathname).toBe("/")
|
|
expect(url.search).toBe("")
|
|
await resp.text()
|
|
})
|
|
|
|
it("should do nothing when nothing is passed in", async () => {
|
|
codeServer = await integration.setup(["--auth=none"], "")
|
|
|
|
const resp = await codeServer.fetch("/", undefined)
|
|
|
|
expect(resp.status).toBe(200)
|
|
const url = new URL(resp.url)
|
|
expect(url.search).toBe("")
|
|
await resp.text()
|
|
})
|
|
|
|
it("should not redirect when last opened is ignored", async () => {
|
|
codeServer = await integration.setup(["--auth=none", "--ignore-last-opened"], "")
|
|
|
|
const folder = await tmpdir(testName)
|
|
const workspace = path.join(await tmpdir(testName), "test.code-workspace")
|
|
await fs.writeFile(workspace, "")
|
|
|
|
let resp = await codeServer.fetch("/", undefined, {
|
|
folder,
|
|
workspace,
|
|
})
|
|
expect(resp.status).toBe(200)
|
|
await resp.text()
|
|
|
|
// No redirections.
|
|
resp = await codeServer.fetch("/")
|
|
const url = new URL(resp.url)
|
|
expect(url.pathname).toBe("/")
|
|
expect(url.search).toBe("")
|
|
await resp.text()
|
|
})
|
|
})
|