mirror of
https://github.com/anomalyco/opencode.git
synced 2026-08-29 21:52:08 +00:00
487 lines
18 KiB
TypeScript
487 lines
18 KiB
TypeScript
import { expect } from "bun:test"
|
|
import { createServer } from "node:http"
|
|
import { makeMemoryDriver } from "@opencode-ai/core/environment/index"
|
|
import { Workspace } from "@opencode-ai/core/workspace"
|
|
import { WorkspaceDriver } from "@opencode-ai/core/workspace/driver"
|
|
import { Effect } from "effect"
|
|
import { tmpdir } from "../../core/test/fixture/tmpdir"
|
|
import { it } from "../../core/test/lib/effect"
|
|
import { ServerFetch } from "../src/fetch"
|
|
|
|
const options = {
|
|
app: { version: "test-version" },
|
|
database: { path: ":memory:" },
|
|
config: { project: false },
|
|
models: { fetch: false },
|
|
fs: { filewatcher: false },
|
|
} as const
|
|
|
|
type Handler = (request: Request) => Promise<Response>
|
|
|
|
function occupy(port: number, cancel = false) {
|
|
return Effect.gen(function* () {
|
|
const requests: string[] = []
|
|
// A localhost listener occupies only one family; Bun can bind the other.
|
|
const servers = ["127.0.0.1", "::1"].map((host) => ({
|
|
host,
|
|
server: createServer((request, response) => {
|
|
requests.push(request.url ?? "")
|
|
response.end(cancel ? "cancelled" : "still running", () => {
|
|
if (cancel)
|
|
servers.forEach((item) => {
|
|
// Bun clears its native handle in close(), so force-close connections first.
|
|
item.server.closeAllConnections()
|
|
item.server.close()
|
|
})
|
|
})
|
|
}),
|
|
}))
|
|
yield* Effect.addFinalizer(() =>
|
|
Effect.forEach(servers, (item) =>
|
|
Effect.callback<void>((resume) => {
|
|
item.server.closeAllConnections()
|
|
item.server.close(() => resume(Effect.void))
|
|
}),
|
|
),
|
|
)
|
|
yield* Effect.forEach(servers, (item) =>
|
|
Effect.callback<void, Error>((resume) => {
|
|
const onError = (error: Error) => resume(Effect.fail(error))
|
|
item.server.once("error", onError)
|
|
item.server.listen(port, item.host, () => {
|
|
item.server.off("error", onError)
|
|
resume(Effect.void)
|
|
})
|
|
}),
|
|
)
|
|
return requests
|
|
})
|
|
}
|
|
|
|
const ready = (handler: Handler) =>
|
|
Effect.promise(() => handler(new Request("http://opencode.local/api/model/default")))
|
|
|
|
const connectOpenAI = (handler: Handler) =>
|
|
Effect.promise(() =>
|
|
handler(
|
|
new Request("http://opencode.local/api/integration/openai/connect/oauth", {
|
|
method: "POST",
|
|
headers: { "content-type": "application/json" },
|
|
body: JSON.stringify({ methodID: "chatgpt-browser" }),
|
|
}),
|
|
),
|
|
)
|
|
|
|
const workspaceDriver = WorkspaceDriver.make({
|
|
create: ({ workspaceID }) => Effect.succeed({ binding: { workspaceID } }),
|
|
connect: () => Effect.succeed(makeMemoryDriver()),
|
|
suspendForIdle: () => Effect.void,
|
|
destroy: () => Effect.void,
|
|
})
|
|
|
|
it.live("serves the HttpApi and enforces Basic auth like the Node server", () =>
|
|
Effect.gen(function* () {
|
|
const handler = yield* ServerFetch.make({ ...options, password: "secret" })
|
|
|
|
const denied = yield* Effect.promise(() => handler(new Request("http://opencode.local/api/health")))
|
|
expect(denied.status).toBe(401)
|
|
|
|
const response = yield* Effect.promise(() =>
|
|
handler(
|
|
new Request("http://opencode.local/api/health", {
|
|
headers: { authorization: `Basic ${btoa("opencode:secret")}` },
|
|
}),
|
|
),
|
|
)
|
|
expect(response.status).toBe(200)
|
|
const body: unknown = yield* Effect.promise(() => response.json())
|
|
if (typeof body !== "object" || body === null) throw new Error("Expected a health response object")
|
|
expect((body as Record<string, unknown>)["healthy"]).toBe(true)
|
|
}),
|
|
)
|
|
|
|
it.live("activates credentials through the HttpApi", () =>
|
|
Effect.gen(function* () {
|
|
const handler = yield* ServerFetch.make(options)
|
|
const response = yield* Effect.promise(() =>
|
|
handler(new Request("http://opencode.local/api/credential/cred_missing/activate", { method: "POST" })),
|
|
)
|
|
expect(response.status).toBe(204)
|
|
}),
|
|
)
|
|
|
|
it.live("serves unauthenticated and answers CORS preflight when no password is configured", () =>
|
|
Effect.gen(function* () {
|
|
const handler = yield* ServerFetch.make(options)
|
|
|
|
const response = yield* Effect.promise(() => handler(new Request("http://opencode.local/api/health")))
|
|
expect(response.status).toBe(200)
|
|
|
|
const preflight = yield* Effect.promise(() =>
|
|
handler(
|
|
new Request("http://opencode.local/api/health", {
|
|
method: "OPTIONS",
|
|
headers: {
|
|
origin: "http://localhost:3000",
|
|
"access-control-request-method": "GET",
|
|
},
|
|
}),
|
|
),
|
|
)
|
|
expect(preflight.headers.get("access-control-allow-origin")).toBe("http://localhost:3000")
|
|
}),
|
|
)
|
|
|
|
it.live("applies custom CORS origins to HTTP responses and PTY ticket checks", () =>
|
|
Effect.gen(function* () {
|
|
const handler = yield* ServerFetch.make({
|
|
...options,
|
|
password: "secret",
|
|
cors: ["http://192.168.1.10:3001"],
|
|
})
|
|
yield* Effect.forEach(
|
|
["http://192.168.1.10:3001", "http://localhost:3000", "https://untrusted.example.com"],
|
|
(origin) =>
|
|
Effect.gen(function* () {
|
|
const allowed = origin !== "https://untrusted.example.com"
|
|
const preflight = yield* Effect.promise(() =>
|
|
handler(
|
|
new Request("http://opencode.local/api/health", {
|
|
method: "OPTIONS",
|
|
headers: {
|
|
origin,
|
|
"access-control-request-method": "GET",
|
|
"access-control-request-headers": "authorization",
|
|
},
|
|
}),
|
|
),
|
|
)
|
|
expect(preflight.status).toBe(204)
|
|
expect(preflight.headers.get("access-control-allow-origin")).toBe(allowed ? origin : null)
|
|
expect(preflight.headers.get("access-control-allow-headers")).toBe("authorization")
|
|
|
|
const response = yield* Effect.promise(() =>
|
|
handler(
|
|
new Request("http://opencode.local/api/health", {
|
|
headers: { origin, authorization: `Basic ${btoa("opencode:secret")}` },
|
|
}),
|
|
),
|
|
)
|
|
expect(response.status).toBe(200)
|
|
expect(response.headers.get("access-control-allow-origin")).toBe(allowed ? origin : null)
|
|
|
|
const ticket = yield* Effect.promise(() =>
|
|
handler(
|
|
new Request("http://opencode.local/api/experimental/persistent-pty/pty_missing/connect-token", {
|
|
method: "POST",
|
|
headers: { origin, authorization: `Basic ${btoa("opencode:secret")}`, "x-opencode-ticket": "1" },
|
|
}),
|
|
),
|
|
)
|
|
// Allowed origins pass the ticket guard and reach the missing-terminal lookup.
|
|
expect(ticket.status).toBe(allowed ? 404 : 403)
|
|
}),
|
|
)
|
|
}).pipe(Effect.scoped),
|
|
)
|
|
|
|
it.live("cancels a stale OpenAI OAuth callback server before falling back", () =>
|
|
Effect.gen(function* () {
|
|
const requests = yield* occupy(1455, true)
|
|
const handler = yield* ServerFetch.make(options)
|
|
yield* ready(handler)
|
|
const response = yield* connectOpenAI(handler)
|
|
|
|
expect(response.status).toBe(200)
|
|
expect(requests).toContain("/cancel")
|
|
const body = (yield* Effect.promise(() => response.json())) as { data: { url: string } }
|
|
expect(new URL(body.data.url).searchParams.get("redirect_uri")).toBe("http://localhost:1455/auth/callback")
|
|
}),
|
|
)
|
|
|
|
it.live("falls back to port 1457 when OpenAI OAuth port 1455 remains busy", () =>
|
|
Effect.gen(function* () {
|
|
const requests = yield* occupy(1455)
|
|
const handler = yield* ServerFetch.make(options)
|
|
yield* ready(handler)
|
|
const response = yield* connectOpenAI(handler)
|
|
|
|
expect(response.status).toBe(200)
|
|
expect(requests).toContain("/cancel")
|
|
const body = (yield* Effect.promise(() => response.json())) as { data: { url: string } }
|
|
expect(new URL(body.data.url).searchParams.get("redirect_uri")).toBe("http://localhost:1457/auth/callback")
|
|
}),
|
|
)
|
|
|
|
it.live(
|
|
"explains how to recover when both OpenAI OAuth callback ports are busy",
|
|
() =>
|
|
Effect.gen(function* () {
|
|
yield* occupy(1455)
|
|
yield* occupy(1457)
|
|
const handler = yield* ServerFetch.make(options)
|
|
yield* ready(handler)
|
|
const response = yield* connectOpenAI(handler)
|
|
|
|
expect(response.status).toBe(400)
|
|
expect(yield* Effect.promise(() => response.json())).toEqual({
|
|
_tag: "InvalidRequestError",
|
|
message:
|
|
"OpenAI browser login needs local port 1455 or 1457, but both are already in use. Stop the processes using those ports or choose ChatGPT Pro/Plus (headless), then try again.",
|
|
kind: "integration_authorization",
|
|
})
|
|
}),
|
|
// Real retries wait 18 * 200 ms; startup and scoped cleanup also count toward the deadline.
|
|
{ timeout: 10_000 },
|
|
)
|
|
|
|
it.live("treats destroying a missing workspace as success", () =>
|
|
Effect.gen(function* () {
|
|
const handler = yield* ServerFetch.make(options)
|
|
const response = yield* Effect.promise(() =>
|
|
handler(
|
|
new Request(`http://opencode.local/api/workspace/${Workspace.ID.create()}`, {
|
|
method: "DELETE",
|
|
}),
|
|
),
|
|
)
|
|
|
|
expect(response.status).toBe(200)
|
|
expect(yield* Effect.promise(() => response.json())).toEqual({ destroyed: false })
|
|
}),
|
|
)
|
|
|
|
it.live("creates idempotent caller-identified workspaces through the HttpApi", () =>
|
|
Effect.gen(function* () {
|
|
const handler = yield* ServerFetch.make(options, {
|
|
overrides: [
|
|
[WorkspaceDriver.node, WorkspaceDriver.registryNode({ fake: workspaceDriver, other: workspaceDriver })],
|
|
],
|
|
})
|
|
const id = Workspace.ID.create()
|
|
const create = (body: unknown) =>
|
|
Effect.promise(() =>
|
|
handler(
|
|
new Request("http://opencode.local/api/workspace", {
|
|
method: "POST",
|
|
headers: { "content-type": "application/json" },
|
|
body: JSON.stringify(body),
|
|
}),
|
|
),
|
|
)
|
|
|
|
const supplied = yield* create({ id, provider: "fake" })
|
|
expect(supplied.status).toBe(200)
|
|
expect(yield* Effect.promise(() => supplied.json())).toEqual({ data: id })
|
|
|
|
const repeated = yield* create({ id, provider: "fake" })
|
|
expect(repeated.status).toBe(200)
|
|
expect(yield* Effect.promise(() => repeated.json())).toEqual({ data: id })
|
|
|
|
const conflict = yield* create({ id, provider: "other" })
|
|
expect(conflict.status).toBe(409)
|
|
expect(yield* Effect.promise(() => conflict.json())).toMatchObject({
|
|
_tag: "ConflictError",
|
|
resource: id,
|
|
})
|
|
|
|
expect((yield* create({ id: "invalid", provider: "fake" })).status).toBe(400)
|
|
|
|
const minted = yield* create({ provider: "fake" })
|
|
expect(minted.status).toBe(200)
|
|
expect(yield* Effect.promise(() => minted.json())).toMatchObject({ data: expect.stringMatching(/^wrk_/) })
|
|
}),
|
|
)
|
|
|
|
it.live("serves the session view operation and missing-session error", () =>
|
|
Effect.gen(function* () {
|
|
const handler = yield* ServerFetch.make(options)
|
|
const created = yield* Effect.promise(() =>
|
|
handler(
|
|
new Request("http://opencode.local/api/session", {
|
|
method: "POST",
|
|
headers: { "content-type": "application/json" },
|
|
body: "{}",
|
|
}),
|
|
).then((response) => response.json()),
|
|
)
|
|
if (typeof created !== "object" || created === null || !("data" in created))
|
|
return yield* Effect.die(new Error("Expected a session response"))
|
|
const data = created.data
|
|
if (typeof data !== "object" || data === null || !("id" in data) || typeof data.id !== "string")
|
|
return yield* Effect.die(new Error("Expected a session ID"))
|
|
|
|
const viewed = yield* Effect.promise(() =>
|
|
handler(
|
|
new Request(`http://opencode.local/api/session/${data.id}/view`, {
|
|
method: "POST",
|
|
headers: { "content-type": "application/json" },
|
|
body: JSON.stringify({ idle: 0 }),
|
|
}),
|
|
),
|
|
)
|
|
expect(viewed.status).toBe(204)
|
|
|
|
const invalid = yield* Effect.promise(() =>
|
|
handler(new Request(`http://opencode.local/api/session/${data.id}/view`, { method: "POST" })),
|
|
)
|
|
expect(invalid.status).toBe(400)
|
|
|
|
const missing = yield* Effect.promise(() =>
|
|
handler(
|
|
new Request("http://opencode.local/api/session/ses_missing_view/view", {
|
|
method: "POST",
|
|
headers: { "content-type": "application/json" },
|
|
body: JSON.stringify({ idle: 0 }),
|
|
}),
|
|
),
|
|
)
|
|
expect(missing.status).toBe(404)
|
|
}),
|
|
)
|
|
|
|
it.live("does not load a location when reading pending session requests", () =>
|
|
Effect.gen(function* () {
|
|
const config = yield* Effect.acquireDisposable(Effect.promise(() => tmpdir("opencode-pending-read-")))
|
|
const handler = yield* ServerFetch.make({
|
|
...options,
|
|
config: {
|
|
directory: config.path,
|
|
project: false,
|
|
content: JSON.stringify({ permissions: [{ action: "shell", resource: "*", effect: "ask" }] }),
|
|
},
|
|
})
|
|
const created = (yield* Effect.promise(() =>
|
|
handler(
|
|
new Request("http://opencode.local/api/session", {
|
|
method: "POST",
|
|
headers: { "content-type": "application/json" },
|
|
body: "{}",
|
|
}),
|
|
).then((response) => response.json()),
|
|
)) as { data: { id: string } }
|
|
|
|
const loaded = () =>
|
|
Effect.promise(() =>
|
|
handler(new Request("http://opencode.local/api/debug/location")).then(
|
|
(response) => response.json() as Promise<unknown[]>,
|
|
),
|
|
)
|
|
|
|
expect(yield* loaded()).toEqual([])
|
|
for (const resource of ["permission", "form"]) {
|
|
const response = yield* Effect.promise(() =>
|
|
handler(new Request(`http://opencode.local/api/session/${created.data.id}/${resource}`)),
|
|
)
|
|
expect(response.status).toBe(200)
|
|
expect(yield* Effect.promise(() => response.json())).toEqual({ data: [] })
|
|
|
|
const missing = yield* Effect.promise(() =>
|
|
handler(new Request(`http://opencode.local/api/session/ses_missing_pending/${resource}`)),
|
|
)
|
|
expect(missing.status).toBe(404)
|
|
}
|
|
const global = yield* Effect.promise(() =>
|
|
handler(
|
|
new Request("http://opencode.local/api/session/global/form", {
|
|
headers: { "x-opencode-directory": encodeURIComponent(process.cwd()) },
|
|
}),
|
|
),
|
|
)
|
|
expect(global.status).toBe(200)
|
|
expect(yield* Effect.promise(() => global.json())).toEqual({ data: [] })
|
|
expect(yield* loaded()).toEqual([])
|
|
|
|
const createdForm = yield* Effect.promise(() =>
|
|
handler(
|
|
new Request(`http://opencode.local/api/session/${created.data.id}/form`, {
|
|
method: "POST",
|
|
headers: { "content-type": "application/json" },
|
|
body: JSON.stringify({ title: "Test form", fields: [{ key: "answer", type: "string" }] }),
|
|
}),
|
|
),
|
|
)
|
|
expect(createdForm.status).toBe(200)
|
|
|
|
const forms = yield* Effect.promise(() =>
|
|
handler(new Request(`http://opencode.local/api/session/${created.data.id}/form`)),
|
|
)
|
|
expect(forms.status).toBe(200)
|
|
expect(yield* Effect.promise(() => forms.json())).toMatchObject({
|
|
data: [{ title: "Test form" }],
|
|
})
|
|
expect(yield* loaded()).toHaveLength(1)
|
|
|
|
const globalForm = yield* Effect.promise(() =>
|
|
handler(
|
|
new Request("http://opencode.local/api/session/global/form", {
|
|
method: "POST",
|
|
headers: {
|
|
"content-type": "application/json",
|
|
"x-opencode-directory": encodeURIComponent(process.cwd()),
|
|
},
|
|
body: JSON.stringify({ title: "Global form", fields: [{ key: "answer", type: "string" }] }),
|
|
}),
|
|
),
|
|
)
|
|
expect(globalForm.status).toBe(200)
|
|
|
|
const globalForms = yield* Effect.promise(() =>
|
|
handler(
|
|
new Request("http://opencode.local/api/session/global/form", {
|
|
headers: { "x-opencode-directory": encodeURIComponent(process.cwd()) },
|
|
}),
|
|
),
|
|
)
|
|
expect(globalForms.status).toBe(200)
|
|
expect(yield* Effect.promise(() => globalForms.json())).toMatchObject({ data: [{ title: "Global form" }] })
|
|
|
|
// Agent permission policy is installed by plugin activation.
|
|
expect((yield* ready(handler)).status).toBe(200)
|
|
const createdPermission = yield* Effect.promise(() =>
|
|
handler(
|
|
new Request(`http://opencode.local/api/session/${created.data.id}/permission`, {
|
|
method: "POST",
|
|
headers: { "content-type": "application/json" },
|
|
body: JSON.stringify({ id: "per_pending_read", action: "shell", resources: ["pwd"] }),
|
|
}),
|
|
),
|
|
)
|
|
expect(createdPermission.status).toBe(200)
|
|
expect(yield* Effect.promise(() => createdPermission.json())).toEqual({
|
|
data: { id: "per_pending_read", effect: "ask" },
|
|
})
|
|
|
|
const permissions = yield* Effect.promise(() =>
|
|
handler(new Request(`http://opencode.local/api/session/${created.data.id}/permission`)),
|
|
)
|
|
expect(permissions.status).toBe(200)
|
|
expect(yield* Effect.promise(() => permissions.json())).toMatchObject({
|
|
data: [{ id: "per_pending_read", sessionID: created.data.id, action: "shell", resources: ["pwd"] }],
|
|
})
|
|
expect(yield* loaded()).toHaveLength(1)
|
|
}),
|
|
)
|
|
|
|
// Pins the eager-boot guarantee: the application layer is built before the handler returns, so
|
|
// an aborted first request cannot interrupt layer construction and wedge every later request
|
|
// (the Effect-TS/effect#6319 failure class that lazy first-request builds are prone to).
|
|
it.live("stays serviceable when the first request aborts", () =>
|
|
Effect.gen(function* () {
|
|
const handler = yield* ServerFetch.make(options)
|
|
|
|
const aborted = yield* Effect.promise(() => {
|
|
const controller = new AbortController()
|
|
const first = handler(new Request("http://opencode.local/api/health", { signal: controller.signal }))
|
|
controller.abort()
|
|
return first.then(
|
|
() => "resolved" as const,
|
|
() => "rejected" as const,
|
|
)
|
|
})
|
|
expect(["resolved", "rejected"]).toContain(aborted)
|
|
|
|
const second = yield* Effect.promise(() => handler(new Request("http://opencode.local/api/health")))
|
|
expect(second.status).toBe(200)
|
|
}),
|
|
)
|