mock-server.ts 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. import type { Page, Route } from "@playwright/test"
  2. const emptyList = new Set(["/skill", "/command", "/lsp", "/formatter", "/vcs/status", "/vcs/diff"])
  3. const emptyObject = new Set(["/global/config", "/config", "/provider/auth", "/mcp", "/experimental/resource"])
  4. export interface MockServerConfig {
  5. provider: unknown
  6. directory: string
  7. project: unknown
  8. sessions: ({ id: string } & Record<string, unknown>)[]
  9. pageMessages: (sessionId: string, limit: number, before?: string) => { items: unknown[]; cursor?: string }
  10. vcsDiff?: unknown[]
  11. messageDelay?: number
  12. beforeMessagesResponse?: (input: { sessionID: string; before?: string }) => Promise<void>
  13. onMessages?: (input: { sessionID: string; before?: string; phase: "start" | "end" }) => void
  14. message?: (sessionID: string, messageID: string) => unknown
  15. onMessage?: (input: { sessionID: string; messageID: string }) => void
  16. events?: () => unknown[]
  17. eventRetry?: number
  18. permissions?: unknown[] | (() => unknown[])
  19. questions?: unknown[] | (() => unknown[])
  20. fileList?: (path: string) => unknown | Promise<unknown>
  21. fileContent?: (path: string) => unknown | Promise<unknown>
  22. sessionStatus?: unknown
  23. }
  24. export async function mockOpenCodeServer(page: Page, config: MockServerConfig) {
  25. const cursors = new Map<string, string>()
  26. let nextCursor = 0
  27. const staticRoutes: Record<string, unknown> = {
  28. "/provider": config.provider,
  29. "/path": {
  30. state: config.directory,
  31. config: config.directory,
  32. worktree: config.directory,
  33. directory: config.directory,
  34. home: "C:/OpenCode",
  35. },
  36. "/project": [config.project],
  37. "/project/current": config.project,
  38. "/agent": [{ name: "build", mode: "primary" }],
  39. "/vcs": { branch: "main", default_branch: "main" },
  40. "/session": config.sessions,
  41. }
  42. await page.route("**/*", async (route) => {
  43. const url = new URL(route.request().url())
  44. const targetPort = process.env.PLAYWRIGHT_SERVER_PORT ?? "4096"
  45. const appPort = new URL(
  46. process.env.PLAYWRIGHT_BASE_URL ?? `http://127.0.0.1:${process.env.PLAYWRIGHT_PORT ?? "3000"}`,
  47. ).port
  48. if (url.port !== targetPort && url.port !== appPort) return route.fallback()
  49. const path = url.pathname
  50. if (path === "/global/event" || path === "/event") return sse(route, config.events?.(), config.eventRetry)
  51. if (path === "/global/health") return json(route, { healthy: true })
  52. if (path === "/experimental/capabilities") return json(route, { backgroundSubagents: true })
  53. if (path === "/permission")
  54. return json(route, typeof config.permissions === "function" ? config.permissions() : (config.permissions ?? []))
  55. if (path === "/question")
  56. return json(route, typeof config.questions === "function" ? config.questions() : (config.questions ?? []))
  57. if (path === "/session/status") return json(route, config.sessionStatus ?? {})
  58. if (path === "/vcs/diff" && config.vcsDiff) return json(route, config.vcsDiff)
  59. if (path === "/file" && config.fileList)
  60. return json(route, await config.fileList(url.searchParams.get("path") ?? ""))
  61. if (path === "/file/content" && config.fileContent)
  62. return json(route, await config.fileContent(url.searchParams.get("path") ?? ""))
  63. if (path === "/api/reference")
  64. return json(route, {
  65. location: {
  66. directory: config.directory,
  67. project: { id: (config.project as { id?: string }).id, directory: config.directory },
  68. },
  69. data: [],
  70. })
  71. if (emptyObject.has(path)) return json(route, {})
  72. if (emptyList.has(path)) return json(route, [])
  73. if (path in staticRoutes) return json(route, staticRoutes[path])
  74. const sessionMatch = path.match(/^\/session\/([^/]+)$/)
  75. if (sessionMatch) {
  76. const session = config.sessions.find((s) => s.id === sessionMatch[1])
  77. return json(route, session ?? {})
  78. }
  79. const projectMatch = path.match(/^\/project\/([^/]+)$/)
  80. if (projectMatch) return json(route, config.project)
  81. const messageMatch = path.match(/^\/session\/([^/]+)\/message\/([^/]+)$/)
  82. if (messageMatch) {
  83. config.onMessage?.({ sessionID: messageMatch[1]!, messageID: messageMatch[2]! })
  84. if (config.messageDelay !== undefined) await new Promise((resolve) => setTimeout(resolve, config.messageDelay))
  85. const message = config.message?.(messageMatch[1]!, messageMatch[2]!)
  86. if (message === undefined) return json(route, { error: "Message not found" }, undefined, 404)
  87. return json(route, message)
  88. }
  89. if (/^\/session\/[^/]+\/(children|diff)$/.test(path)) return json(route, [])
  90. const messagesMatch = path.match(/^\/session\/([^/]+)\/message$/)
  91. if (messagesMatch) {
  92. const token = url.searchParams.get("before") ?? undefined
  93. const before = token ? cursors.get(token) : undefined
  94. if (token && !before) return json(route, { error: "Invalid cursor" }, undefined, 400)
  95. config.onMessages?.({ sessionID: messagesMatch[1], before, phase: "start" })
  96. await config.beforeMessagesResponse?.({ sessionID: messagesMatch[1]!, before })
  97. if (config.messageDelay !== undefined) await new Promise((resolve) => setTimeout(resolve, config.messageDelay))
  98. const limit = Number(url.searchParams.get("limit") ?? 80)
  99. const pageData = config.pageMessages(messagesMatch[1], limit, before)
  100. config.onMessages?.({ sessionID: messagesMatch[1], before, phase: "end" })
  101. if (!pageData.cursor) return json(route, pageData.items)
  102. const cursor = `cursor_${++nextCursor}`
  103. cursors.set(cursor, pageData.cursor)
  104. return json(route, pageData.items, { "x-next-cursor": cursor })
  105. }
  106. if (url.port === targetPort && targetPort !== appPort) return json(route, {})
  107. return route.fallback()
  108. })
  109. }
  110. function json(route: Route, body: unknown, headers?: Record<string, string>, status = 200) {
  111. return route.fulfill({
  112. status,
  113. contentType: "application/json",
  114. headers: {
  115. "access-control-allow-origin": "*",
  116. "access-control-expose-headers": "x-next-cursor",
  117. ...headers,
  118. },
  119. body: JSON.stringify(body ?? null),
  120. })
  121. }
  122. function sse(route: Route, events?: unknown[], retry?: number) {
  123. return route.fulfill({
  124. status: 200,
  125. contentType: "text/event-stream",
  126. body: `${retry === undefined ? "" : `retry: ${retry}\n\n`}${events?.map((event) => `data: ${JSON.stringify(event)}\n\n`).join("") || ": ok\n\n"}`,
  127. })
  128. }