Co-authored-by: Luke Parker <10430890+Hona@users.noreply.github.com> Co-authored-by: opencode-agent[bot] <219766164+opencode-agent[bot]@users.noreply.github.com> Co-authored-by: Aarav Sareen <96787824+arvsrn@users.noreply.github.com> Co-authored-by: Brendan Allan <14191578+Brendonovich@users.noreply.github.com> Co-authored-by: opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com> Co-authored-by: Aiden Cline <rekram1-node@users.noreply.github.com> Co-authored-by: opencode <opencode@sst.dev> Co-authored-by: Jay <53023+jayair@users.noreply.github.com> Co-authored-by: David Hill <1879069+iamdavidhill@users.noreply.github.com> Co-authored-by: BB84 <110078428+BB-84C@users.noreply.github.com> Co-authored-by: Aiden Cline <aidenpcline@gmail.com> Co-authored-by: Dax <mail@thdxr.com> Co-authored-by: Brendan Allan <git@brendonovich.dev> Co-authored-by: Jay V <air@live.ca> Co-authored-by: Adam <2363879+adamdotdevin@users.noreply.github.com> Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com> Co-authored-by: Dustin Deus <deusdustin@gmail.com> Co-authored-by: Frank <frank@anoma.ly> Co-authored-by: usrnk1 <7547651+usrnk1@users.noreply.github.com> Co-authored-by: Jack <jack@anoma.ly> Co-authored-by: Sebastian <hasta84@gmail.com> Co-authored-by: Jérôme Benoit <jerome.benoit@sap.com> Co-authored-by: Test User <test@test.com> Co-authored-by: Simon Klee <hello@simonklee.dk> Co-authored-by: Rahul A Mistry <149420892+ProdigyRahul@users.noreply.github.com> Co-authored-by: Qiping Li <liqiping1991@gmail.com> Co-authored-by: liqiping <liqiping@msh.team> Co-authored-by: OpeOginni <107570612+OpeOginni@users.noreply.github.com> Co-authored-by: Matthias Reso <13337103+mreso@users.noreply.github.com> Co-authored-by: tobwen <1864057+tobwen@users.noreply.github.com> Co-authored-by: Daniel Polito <danielbpolito@gmail.com> Co-authored-by: opencode <noreply@opencode.ai> Co-authored-by: Devin R Leopold <devin.leopold@gmail.com> Co-authored-by: Zach Bruggeman <mail@bruggie.com> Co-authored-by: Zach Bruggeman <zbruggeman@ramp.com> Co-authored-by: Kit Langton <kit.langton@gmail.com> Co-authored-by: David Siewert <david1gruppenplan@gmail.com> Co-authored-by: Andrei Dziahel <develop7@develop7.info> Co-authored-by: adityachaudhary99 <adityaachaudhary2003@gmail.com> Co-authored-by: Vladimir Glafirov <vglafirov@gitlab.com> Co-authored-by: Matt Carey <mcarey@cloudflare.com>
163 lines
6.2 KiB
TypeScript
163 lines
6.2 KiB
TypeScript
import { base64Encode } from "@opencode-ai/core/util/encode"
|
|
import { expect, test } from "@playwright/test"
|
|
import { mockOpenCodeServer } from "../utils/mock-server"
|
|
import { expectSessionTitle } from "../utils/waits"
|
|
|
|
const directory = "C:/OpenCode/ReviewOpenFile"
|
|
const projectID = "proj_review_open_file"
|
|
const sessionID = "ses_review_open_file"
|
|
const title = "Review open file"
|
|
const server = `http://${process.env.PLAYWRIGHT_SERVER_HOST ?? "127.0.0.1"}:${process.env.PLAYWRIGHT_SERVER_PORT ?? "4096"}`
|
|
|
|
test.use({ viewport: { width: 1440, height: 900 } })
|
|
|
|
test("opens and searches project files inline", async ({ page }) => {
|
|
const searches: { query: string; dirs?: string; limit?: number }[] = []
|
|
await mockOpenCodeServer(page, {
|
|
directory,
|
|
project: {
|
|
id: projectID,
|
|
worktree: directory,
|
|
vcs: "git",
|
|
name: "open-file-project",
|
|
time: { created: 1700000000000, updated: 1700000000000 },
|
|
sandboxes: [],
|
|
},
|
|
provider: {
|
|
all: [
|
|
{
|
|
id: "opencode",
|
|
name: "OpenCode",
|
|
models: { test: { id: "test", name: "Test", limit: { context: 200_000 } } },
|
|
},
|
|
],
|
|
connected: ["opencode"],
|
|
default: { providerID: "opencode", modelID: "test" },
|
|
},
|
|
sessions: [
|
|
{
|
|
id: sessionID,
|
|
slug: sessionID,
|
|
projectID,
|
|
directory,
|
|
title,
|
|
version: "dev",
|
|
time: { created: 1700000000000, updated: 1700000000000 },
|
|
},
|
|
],
|
|
vcsDiff: [fileDiff("src/changed.ts")],
|
|
fileList: (path) => {
|
|
if (path) return []
|
|
return [
|
|
fileNode("README.md"),
|
|
{ name: "src", path: "src", absolute: `${directory}/src`, type: "directory", ignored: false },
|
|
]
|
|
},
|
|
fileContent: (path) => ({ type: "text", content: `contents:${path}` }),
|
|
findFiles: (input) => {
|
|
searches.push(input)
|
|
return input.query === "nested" ? ["src/nested.ts"] : []
|
|
},
|
|
pageMessages: () => ({ items: [] }),
|
|
})
|
|
await page.addInitScript(
|
|
({ directory, server, sessionID }) => {
|
|
localStorage.setItem("settings.v3", JSON.stringify({ general: { newLayoutDesigns: true } }))
|
|
localStorage.setItem(
|
|
"opencode.global.dat:server",
|
|
JSON.stringify({
|
|
projects: { local: [{ worktree: directory, expanded: true }] },
|
|
lastProject: { local: directory },
|
|
}),
|
|
)
|
|
localStorage.setItem(
|
|
"opencode.global.dat:layout",
|
|
JSON.stringify({ review: { diffStyle: "split", panelOpened: true } }),
|
|
)
|
|
localStorage.setItem(
|
|
"opencode.global.dat:review-panel-v2",
|
|
JSON.stringify({ sidebarOpened: false, sidebarWidth: 240, expandMode: "collapse" }),
|
|
)
|
|
localStorage.setItem(
|
|
"opencode.window.browser.dat:tabs",
|
|
JSON.stringify([{ type: "session", server, sessionId: sessionID }]),
|
|
)
|
|
},
|
|
{ directory, server, sessionID },
|
|
)
|
|
|
|
await page.goto(`/server/${base64Encode(server)}/session/${sessionID}`)
|
|
await expectSessionTitle(page, title)
|
|
|
|
const panel = page.locator("#review-panel")
|
|
const sidebar = panel.locator('[data-slot="session-review-v2-sidebar"]')
|
|
const sidebarToggle = panel.getByRole("button", { name: "Toggle file tree" })
|
|
const contextButton = page.getByRole("button", { name: "View context usage" })
|
|
await contextButton.click()
|
|
await expect(panel.getByRole("tab", { name: "Context" })).toHaveAttribute("data-selected", "")
|
|
await panel.getByRole("button", { name: "Open file" }).click()
|
|
await expect(panel.getByRole("tab", { name: "Open file" })).toHaveAttribute("data-selected", "")
|
|
await expect(sidebarToggle).toBeDisabled()
|
|
await expect(sidebar).toBeVisible()
|
|
await contextButton.click()
|
|
await expect(panel.getByRole("tab", { name: "Context" })).toHaveAttribute("data-selected", "")
|
|
await expect(sidebar).toBeHidden()
|
|
await panel.getByRole("button", { name: "Open file" }).click()
|
|
const filter = panel.getByRole("combobox", { name: "Filter files" })
|
|
await expect(filter).toBeFocused()
|
|
await expect(panel.getByRole("tab", { name: "Open file" })).toHaveAttribute("data-selected", "")
|
|
await expect(panel.getByText("open-file-project", { exact: true })).toBeVisible()
|
|
|
|
await panel.getByRole("button", { name: "README.md" }).click()
|
|
await expect(panel.getByRole("tab", { name: "README.md" })).toHaveAttribute("data-selected", "")
|
|
await expect(sidebarToggle).toBeEnabled()
|
|
await expect(panel.getByText("contents:README.md", { exact: true })).toBeVisible()
|
|
await expect(sidebar).toHaveCount(0)
|
|
|
|
await panel.getByRole("button", { name: "Open file" }).click()
|
|
await expect(panel.getByRole("tab", { name: "README.md" })).toHaveCount(0)
|
|
await expect(sidebar).toBeVisible()
|
|
await filter.fill("nested")
|
|
const result = panel.getByRole("option", { name: /nested\.ts/ })
|
|
await expect(result).toBeVisible()
|
|
const resultID = await result.getAttribute("id")
|
|
expect(resultID).toBeTruthy()
|
|
await expect(filter).toHaveAttribute("aria-activedescendant", resultID!)
|
|
await filter.press("Enter")
|
|
await expect(panel.getByRole("tab", { name: "nested.ts" })).toHaveAttribute("data-selected", "")
|
|
await expect(sidebarToggle).toBeEnabled()
|
|
await expect(panel.getByText("contents:src/nested.ts", { exact: true })).toBeVisible()
|
|
expect(searches).toContainEqual({ query: "nested", dirs: "false", limit: 200 })
|
|
|
|
await panel.getByRole("button", { name: "Open file" }).click()
|
|
await expect(panel.getByRole("tab", { name: "nested.ts" })).toHaveCount(1)
|
|
await expect(panel.getByRole("tab", { name: "Open file" })).toHaveAttribute("data-selected", "")
|
|
await expect(sidebarToggle).toBeDisabled()
|
|
await panel.locator("#session-side-panel-review-tab").click()
|
|
await expect(sidebarToggle).toBeEnabled()
|
|
await panel.getByRole("tab", { name: "Open file" }).click()
|
|
await page.keyboard.press("Control+w")
|
|
await expect(panel.getByRole("tab", { name: "Open file" })).toHaveCount(0)
|
|
await expect(panel.getByRole("tab", { name: "nested.ts" })).toHaveAttribute("data-selected", "")
|
|
})
|
|
|
|
function fileNode(path: string) {
|
|
return {
|
|
name: path,
|
|
path,
|
|
absolute: `${directory}/${path}`,
|
|
type: "file",
|
|
ignored: false,
|
|
}
|
|
}
|
|
|
|
function fileDiff(file: string) {
|
|
return {
|
|
file,
|
|
before: "before\n",
|
|
after: "after\n",
|
|
additions: 1,
|
|
deletions: 1,
|
|
status: "modified",
|
|
}
|
|
}
|