mock-server.ts 6.9 KB

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