| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- import { expect, test } from "bun:test"
- import { setTimeout as sleep } from "node:timers/promises"
- import { AppNodeBuilder } from "@kirincode-ai/core/effect/app-node-builder"
- import { Effect, Layer } from "effect"
- import { FSUtil } from "@kirincode-ai/core/fs-util"
- import { McpAuth } from "../../src/mcp/auth"
- function authFile() {
- let raw = ""
- let activeWrites = 0
- let sawOverlap = false
- const fsLayer = Layer.effect(
- FSUtil.Service,
- Effect.gen(function* () {
- const fs = yield* FSUtil.Service
- return FSUtil.Service.of({
- ...fs,
- readJson: (file) =>
- file.endsWith("mcp-auth.json")
- ? Effect.try({
- try: () => {
- if (!raw) throw new Error("mcp-auth.json missing")
- return JSON.parse(raw)
- },
- catch: (cause) => new FSUtil.FileSystemError({ method: "readJson", cause }),
- })
- : fs.readJson(file),
- writeJson: (file, value, mode) =>
- file.endsWith("mcp-auth.json")
- ? Effect.promise(async () => {
- activeWrites++
- sawOverlap = sawOverlap || activeWrites > 1
- raw = ""
- await sleep(10)
- const next = JSON.stringify(value, null, 2)
- raw = sawOverlap ? `${next}\n}` : next
- activeWrites--
- })
- : fs.writeJson(file, value, mode),
- })
- }),
- ).pipe(Layer.provide(AppNodeBuilder.build(FSUtil.node)))
- return { fsLayer, raw: () => raw }
- }
- function authService(fsLayer: Layer.Layer<FSUtil.Service>) {
- return McpAuth.Service.use((auth) => Effect.succeed(auth)).pipe(
- Effect.provide(AppNodeBuilder.build(McpAuth.node, [[FSUtil.node, fsLayer]])),
- )
- }
- test("serializes concurrent auth file updates across service instances", async () => {
- const file = authFile()
- await Effect.runPromise(
- Effect.gen(function* () {
- const first = yield* authService(file.fsLayer)
- const second = yield* authService(file.fsLayer)
- yield* Effect.all(
- [
- first.updateTokens("posthog", { accessToken: "access-token" }, "https://mcp.posthog.com/mcp"),
- second.updateClientInfo("posthog", { clientId: "client-id" }, "https://mcp.posthog.com/mcp"),
- ],
- { concurrency: "unbounded" },
- )
- const entry = yield* first.get("posthog")
- expect(entry?.tokens?.accessToken).toBe("access-token")
- expect(entry?.clientInfo?.clientId).toBe("client-id")
- expect(entry?.serverUrl).toBe("https://mcp.posthog.com/mcp")
- expect(() => JSON.parse(file.raw())).not.toThrow()
- }),
- )
- })
|