mock-server.ts 6.4 KB

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