Files
anomalyco_opencode/packages/app/src/utils/server-scope.test.ts
T
opencode-agent[bot] f6197cefe1
deploy / deploy (push) Has been cancelled
nix-eval / nix-eval (push) Has been cancelled
nix-hashes / compute-hash (blacksmith-4vcpu-ubuntu-2404, x86_64-linux) (push) Has been cancelled
nix-hashes / compute-hash (blacksmith-4vcpu-ubuntu-2404-arm, aarch64-linux) (push) Has been cancelled
nix-hashes / compute-hash (macos-15-intel, x86_64-darwin) (push) Has been cancelled
nix-hashes / compute-hash (macos-latest, aarch64-darwin) (push) Has been cancelled
nix-hashes / update-hashes (push) Has been cancelled
publish / version (push) Has been cancelled
publish / build-cli (push) Has been cancelled
publish / sign-cli-windows (push) Has been cancelled
publish / build-electron (map[bun_install_flags:--os=darwin --cpu=arm64 host:macos-26 platform_flag:--mac --arm64 target:aarch64-apple-darwin]) (push) Has been cancelled
publish / build-electron (map[bun_install_flags:--os=darwin --cpu=x64 host:macos-26-intel platform_flag:--mac --x64 target:x86_64-apple-darwin]) (push) Has been cancelled
publish / build-electron (map[host:blacksmith-4vcpu-ubuntu-2404 platform_flag:--linux target:x86_64-unknown-linux-gnu]) (push) Has been cancelled
publish / build-electron (map[host:blacksmith-4vcpu-ubuntu-2404-arm platform_flag:--linux --arm64 target:aarch64-unknown-linux-gnu]) (push) Has been cancelled
publish / build-electron (map[host:blacksmith-4vcpu-windows-2025 platform_flag:--win target:x86_64-pc-windows-msvc]) (push) Has been cancelled
publish / build-electron (map[host:windows-2025 platform_flag:--win --arm64 target:aarch64-pc-windows-msvc]) (push) Has been cancelled
publish / publish (push) Has been cancelled
storybook / storybook build (push) Has been cancelled
containers / build (push) Has been cancelled
docs-locale-sync / sync-locales (push) Has been cancelled
generate / generate (push) Has been cancelled
typecheck / typecheck (push) Has been cancelled
chore: generate
2026-06-05 06:31:37 +00:00

62 lines
2.6 KiB
TypeScript

import { describe, expect, test } from "bun:test"
import { ScopedKey, ServerScope, SessionRouteKey, SessionStateKey, migrateLegacySessionStateKeys } from "./server-scope"
describe("ServerScope", () => {
test("uses a stable local scope for the canonical sidecar", () => {
expect(String(ServerScope.fromServerKey("sidecar" as Parameters<typeof ServerScope.fromServerKey>[0]))).toBe(
"local",
)
})
test("keeps configured loopback servers distinct from the canonical sidecar", () => {
expect(
String(ServerScope.fromServerKey("http://localhost:4096" as Parameters<typeof ServerScope.fromServerKey>[0])),
).toBe("http://localhost:4096")
})
test("uses a stable local scope for an explicit canonical web server", () => {
const key = "http://localhost:4096" as Parameters<typeof ServerScope.fromServerKey>[0]
expect(String(ServerScope.fromServerKey(key, key))).toBe("local")
})
})
describe("SessionStateKey", () => {
test("combines local and remote scope with route identity", () => {
const route = SessionRouteKey.fromRoute("cmVwbw", "session-1")
expect(String(SessionStateKey.from(ServerScope.local, route))).toBe("local\0cmVwbw/session-1")
expect(String(SessionStateKey.from("https://windows.example" as ServerScope, route))).toBe(
"https://windows.example\0cmVwbw/session-1",
)
expect(SessionStateKey.from("https://debian.example" as ServerScope, route)).not.toBe(
SessionStateKey.from("https://windows.example" as ServerScope, route),
)
})
test("extracts route keys from scoped and legacy state keys", () => {
expect(String(SessionStateKey.route("cmVwbw/session-1"))).toBe("cmVwbw/session-1")
expect(String(SessionStateKey.route("local\0cmVwbw/session-1"))).toBe("cmVwbw/session-1")
expect(String(SessionStateKey.route("https://debian.example\0cmVwbw/session-1"))).toBe("cmVwbw/session-1")
})
})
describe("migrateLegacySessionStateKeys", () => {
test("copies legacy route keys into local scope without overwriting scoped state", () => {
expect(
migrateLegacySessionStateKeys({
"cmVwbw/session-1": { active: "legacy" },
"local\0cmVwbw/session-1": { active: "scoped" },
"https://debian.example\0cmVwbw/session-1": { active: "remote" },
}),
).toEqual({
"local\0cmVwbw/session-1": { active: "scoped" },
"https://debian.example\0cmVwbw/session-1": { active: "remote" },
})
})
test("rejects invalid identity fragments", () => {
expect(() => ScopedKey.from(ServerScope.local, "bad\0directory")).toThrow(
"Scoped key part cannot contain null bytes",
)
})
})