| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299 |
- import { afterEach, describe, expect, test } from "bun:test"
- import { NodeHttpServer, NodeServices } from "@effect/platform-node"
- import { PtyID } from "@kirincode-ai/core/pty/schema"
- import { Server } from "../../src/server/server"
- import { PtyPaths } from "../../src/server/routes/instance/httpapi/groups/pty"
- import { resetDatabase } from "../fixture/db"
- import { disposeAllInstances, tmpdir, tmpdirScoped } from "../fixture/fixture"
- import { Config, Effect, Layer, Queue, Schema } from "effect"
- import { HttpClient, HttpClientRequest, HttpRouter, HttpServer } from "effect/unstable/http"
- import * as Socket from "effect/unstable/socket/Socket"
- import { HttpApiApp } from "../../src/server/routes/instance/httpapi/server"
- import { Pty } from "@kirincode-ai/core/pty"
- import { testEffect } from "../lib/effect"
- const testPty = process.platform === "win32" ? test.skip : test
- const testStateLayer = Layer.effectDiscard(
- Effect.gen(function* () {
- yield* Effect.promise(() => resetDatabase())
- yield* Effect.addFinalizer(() =>
- Effect.promise(async () => {
- await resetDatabase()
- }),
- )
- }),
- )
- const servedRoutes: Layer.Layer<never, Config.ConfigError, HttpServer.HttpServer> = HttpRouter.serve(
- HttpApiApp.routes,
- { disableListenLog: true, disableLogger: true },
- )
- const effectIt = testEffect(
- Layer.mergeAll(
- testStateLayer,
- Socket.layerWebSocketConstructorGlobal,
- servedRoutes.pipe(
- Layer.provide(Socket.layerWebSocketConstructorGlobal),
- Layer.provideMerge(NodeHttpServer.layerTest),
- Layer.provideMerge(NodeServices.layer),
- ),
- ),
- )
- function app() {
- return Server.Default().app
- }
- function serverUrl() {
- return HttpServer.HttpServer.use((server) => Effect.succeed(HttpServer.formatAddress(server.address)))
- }
- const directoryHeader = (dir: string) => HttpClientRequest.setHeader("x-opencode-directory", dir)
- afterEach(async () => {
- await disposeAllInstances()
- await resetDatabase()
- })
- describe("pty HttpApi bridge", () => {
- test("serves available shell list through experimental Effect routes", async () => {
- await using tmp = await tmpdir({ git: true, config: { formatter: false, lsp: false } })
- const response = await app().request(PtyPaths.shells, { headers: { "x-opencode-directory": tmp.path } })
- expect(response.status).toBe(200)
- expect(await response.json()).toEqual(
- expect.arrayContaining([
- expect.objectContaining({
- path: expect.any(String),
- name: expect.any(String),
- acceptable: expect.any(Boolean),
- }),
- ]),
- )
- })
- testPty("serves PTY JSON routes through experimental Effect routes", async () => {
- await using tmp = await tmpdir({ git: true, config: { formatter: false, lsp: false } })
- const headers = { "x-opencode-directory": tmp.path }
- const list = await app().request(PtyPaths.list, { headers })
- expect(list.status).toBe(200)
- expect(await list.json()).toEqual([])
- const created = await app().request(PtyPaths.create, {
- method: "POST",
- headers: { ...headers, "content-type": "application/json" },
- body: JSON.stringify({ command: "/usr/bin/env", args: ["sh", "-c", "sleep 5"], title: "demo" }),
- })
- expect(created.status).toBe(200)
- const info = await created.json()
- try {
- expect(info).toMatchObject({ title: "demo", command: "/usr/bin/env", status: "running" })
- const found = await app().request(PtyPaths.get.replace(":ptyID", info.id), { headers })
- expect(found.status).toBe(200)
- expect(await found.json()).toMatchObject({ id: info.id, title: "demo" })
- const updated = await app().request(PtyPaths.update.replace(":ptyID", info.id), {
- method: "PUT",
- headers: { ...headers, "content-type": "application/json" },
- body: JSON.stringify({ title: "renamed", size: { cols: 80, rows: 24 } }),
- })
- expect(updated.status).toBe(200)
- expect(await updated.json()).toMatchObject({ id: info.id, title: "renamed" })
- } finally {
- await app().request(PtyPaths.remove.replace(":ptyID", info.id), { method: "DELETE", headers })
- }
- const missing = await app().request(PtyPaths.get.replace(":ptyID", info.id), { headers })
- expect(missing.status).toBe(404)
- expect(await missing.json()).toEqual({
- _tag: "PtyNotFoundError",
- ptyID: info.id,
- message: `PTY session not found: ${info.id}`,
- })
- const missingUpdate = await app().request(PtyPaths.update.replace(":ptyID", info.id), {
- method: "PUT",
- headers: { ...headers, "content-type": "application/json" },
- body: JSON.stringify({ title: "missing" }),
- })
- expect(missingUpdate.status).toBe(404)
- expect(await missingUpdate.json()).toEqual({
- _tag: "PtyNotFoundError",
- ptyID: info.id,
- message: `PTY session not found: ${info.id}`,
- })
- const missingRemove = await app().request(PtyPaths.remove.replace(":ptyID", info.id), { method: "DELETE", headers })
- expect(missingRemove.status).toBe(404)
- expect(await missingRemove.json()).toEqual({
- _tag: "PtyNotFoundError",
- ptyID: info.id,
- message: `PTY session not found: ${info.id}`,
- })
- })
- testPty("hides exited sessions on the legacy surface", async () => {
- await using tmp = await tmpdir({ git: true, config: { formatter: false, lsp: false } })
- const headers = { "x-opencode-directory": tmp.path }
- const created = await app().request(PtyPaths.create, {
- method: "POST",
- headers: { ...headers, "content-type": "application/json" },
- body: JSON.stringify({ command: "/usr/bin/env", args: ["sh", "-c", "exit 0"] }),
- })
- expect(created.status).toBe(200)
- const info = await created.json()
- // Exited sessions are retained by core for the canonical surface, but the legacy
- // routes preserve pre-retention behavior: exited sessions are invisible here.
- const deadline = Date.now() + 5_000
- while (Date.now() < deadline) {
- const found = await app().request(PtyPaths.get.replace(":ptyID", info.id), { headers })
- if (found.status === 404) break
- await new Promise((resolve) => setTimeout(resolve, 50))
- }
- const found = await app().request(PtyPaths.get.replace(":ptyID", info.id), { headers })
- expect(found.status).toBe(404)
- const list = await app().request(PtyPaths.list, { headers })
- expect(list.status).toBe(200)
- expect(await list.json()).toEqual([])
- })
- testPty("disposes PTY sessions with their legacy instance", async () => {
- await using tmp = await tmpdir({ git: true, config: { formatter: false, lsp: false } })
- const headers = { "x-opencode-directory": tmp.path }
- const created = await app().request(PtyPaths.create, {
- method: "POST",
- headers: { ...headers, "content-type": "application/json" },
- body: JSON.stringify({ command: "/usr/bin/env", args: ["sh", "-c", "sleep 5"] }),
- })
- expect(created.status).toBe(200)
- await disposeAllInstances()
- const list = await app().request(PtyPaths.list, { headers })
- expect(list.status).toBe(200)
- expect(await list.json()).toEqual([])
- })
- test("returns 404 for missing PTY websocket before upgrade", async () => {
- await using tmp = await tmpdir({ git: true, config: { formatter: false, lsp: false } })
- const response = await app().request(PtyPaths.connect.replace(":ptyID", PtyID.ascending()), {
- headers: { "x-opencode-directory": tmp.path },
- })
- expect(response.status).toBe(404)
- })
- test("returns 404 for missing PTY websocket before decoding cursor query", async () => {
- await using tmp = await tmpdir({ git: true, config: { formatter: false, lsp: false } })
- const response = await app().request(`${PtyPaths.connect.replace(":ptyID", PtyID.ascending())}?cursor=a&cursor=b`, {
- headers: { "x-opencode-directory": tmp.path },
- })
- expect(response.status).toBe(404)
- })
- test("returns typed not found errors for missing PTY HTTP resources", async () => {
- await using tmp = await tmpdir({ git: true, config: { formatter: false, lsp: false } })
- const headers = { "x-opencode-directory": tmp.path }
- const missingID = String(PtyID.ascending())
- const expected = {
- _tag: "PtyNotFoundError",
- ptyID: missingID,
- message: `PTY session not found: ${missingID}`,
- }
- const found = await app().request(PtyPaths.get.replace(":ptyID", missingID), { headers })
- expect(found.status).toBe(404)
- expect(await found.json()).toEqual(expected)
- const updated = await app().request(PtyPaths.update.replace(":ptyID", missingID), {
- method: "PUT",
- headers: { ...headers, "content-type": "application/json" },
- body: JSON.stringify({ title: "missing" }),
- })
- expect(updated.status).toBe(404)
- expect(await updated.json()).toEqual(expected)
- const removed = await app().request(PtyPaths.remove.replace(":ptyID", missingID), { method: "DELETE", headers })
- expect(removed.status).toBe(404)
- expect(await removed.json()).toEqual(expected)
- })
- test("returns typed errors for PTY connect token failures", async () => {
- await using tmp = await tmpdir({ git: true, config: { formatter: false, lsp: false } })
- const headers = { "x-opencode-directory": tmp.path }
- const missingID = String(PtyID.ascending())
- const forbidden = await app().request(PtyPaths.connectToken.replace(":ptyID", missingID), {
- method: "POST",
- headers,
- })
- expect(forbidden.status).toBe(403)
- expect(await forbidden.json()).toEqual({
- _tag: "PtyForbiddenError",
- message: "Invalid PTY connect token request",
- })
- const missing = await app().request(PtyPaths.connectToken.replace(":ptyID", missingID), {
- method: "POST",
- headers: {
- ...headers,
- "x-opencode-ticket": "1",
- },
- })
- expect(missing.status).toBe(404)
- expect(await missing.json()).toEqual({
- _tag: "PtyNotFoundError",
- ptyID: missingID,
- message: `PTY session not found: ${missingID}`,
- })
- })
- ;(process.platform === "win32" ? effectIt.live.skip : effectIt.live)(
- "serves PTY websocket output and input through Effect routes",
- () =>
- Effect.gen(function* () {
- const dir = yield* tmpdirScoped({ git: true, config: { formatter: false, lsp: false } })
- const created = yield* HttpClientRequest.post(PtyPaths.create).pipe(
- directoryHeader(dir),
- HttpClientRequest.bodyJson({ command: "/bin/cat", title: "websocket" }),
- Effect.flatMap(HttpClient.execute),
- )
- expect(created.status).toBe(200)
- const info = yield* Schema.decodeUnknownEffect(Pty.Info)(yield* created.json)
- const socket = yield* Socket.makeWebSocket(
- `${(yield* serverUrl()).replace(/^http/, "ws")}${PtyPaths.connect.replace(":ptyID", info.id)}?cursor=-1&directory=${encodeURIComponent(dir)}`,
- { closeCodeIsError: () => false },
- )
- const messages = yield* Queue.unbounded<string>()
- yield* socket
- .runRaw((message) =>
- Queue.offer(messages, typeof message === "string" ? message : new TextDecoder().decode(message)),
- )
- .pipe(Effect.catch(() => Effect.void))
- .pipe(Effect.forkScoped)
- const write = yield* socket.writer
- const takeUntil = (expected: string, seen = ""): Effect.Effect<string, unknown> =>
- Effect.gen(function* () {
- const next = seen + (yield* Queue.take(messages).pipe(Effect.timeout("5 seconds")))
- if (next.includes(expected)) return next
- return yield* takeUntil(expected, next)
- })
- yield* write("ping-route\n")
- expect(yield* takeUntil("ping-route")).toContain("ping-route")
- yield* write(new Socket.CloseEvent(1000, "done")).pipe(Effect.catch(() => Effect.void))
- const removed = yield* HttpClientRequest.delete(PtyPaths.remove.replace(":ptyID", info.id)).pipe(
- directoryHeader(dir),
- HttpClient.execute,
- )
- expect(removed.status).toBe(200)
- }),
- )
- })
|