f61ec4a41c
Add CLI flag to disable workspace trust feature, as described in documentation: https://code.visualstudio.com/docs/editor/workspace-trust Add test for workspace trust argument.
49 lines
1.6 KiB
TypeScript
49 lines
1.6 KiB
TypeScript
import { promises as fs } from "fs"
|
|
import * as path from "path"
|
|
import { clean } from "../utils/helpers"
|
|
import { describe, test, expect } from "./baseFixture"
|
|
|
|
describe("Downloads (enabled)", ["--disable-workspace-trust"], {}, async () => {
|
|
const testName = "downloads-enabled"
|
|
test.beforeAll(async () => {
|
|
await clean(testName)
|
|
})
|
|
|
|
test("should see the 'Download...' option", async ({ codeServerPage }) => {
|
|
// Setup
|
|
const workspaceDir = await codeServerPage.workspaceDir
|
|
const tmpFilePath = path.join(workspaceDir, "unique-file.txt")
|
|
await fs.writeFile(tmpFilePath, "hello world")
|
|
|
|
// Action
|
|
const fileInExplorer = await codeServerPage.page.waitForSelector("text=unique-file.txt")
|
|
await fileInExplorer.click({
|
|
button: "right",
|
|
})
|
|
|
|
expect(await codeServerPage.page.isVisible("text=Download...")).toBe(true)
|
|
})
|
|
})
|
|
|
|
describe("Downloads (disabled)", ["--disable-workspace-trust", "--disable-file-downloads"], {}, async () => {
|
|
const testName = "downloads-disabled"
|
|
test.beforeAll(async () => {
|
|
await clean(testName)
|
|
})
|
|
|
|
test("should not see the 'Download...' option", async ({ codeServerPage }) => {
|
|
// Setup
|
|
const workspaceDir = await codeServerPage.workspaceDir
|
|
const tmpFilePath = path.join(workspaceDir, "unique-file.txt")
|
|
await fs.writeFile(tmpFilePath, "hello world")
|
|
|
|
// Action
|
|
const fileInExplorer = await codeServerPage.page.waitForSelector("text=unique-file.txt")
|
|
await fileInExplorer.click({
|
|
button: "right",
|
|
})
|
|
|
|
expect(await codeServerPage.page.isVisible("text=Download...")).toBe(false)
|
|
})
|
|
})
|