summaryrefslogtreecommitdiffhomepage
path: root/packages/app/src/utils/scoped-cache.test.ts
diff options
context:
space:
mode:
authorAdam <[email protected]>2026-02-06 09:37:49 -0600
committerGitHub <[email protected]>2026-02-06 09:37:49 -0600
commita4bc883595df9ea0f752079519081bc602408553 (patch)
tree583f21642f431899abe1dfb1f6bd9b2c01dc0206 /packages/app/src/utils/scoped-cache.test.ts
parentc07077f96c0019b2e18e0e8e1e0383deda08b3e6 (diff)
downloadopencode-a4bc883595df9ea0f752079519081bc602408553.tar.gz
opencode-a4bc883595df9ea0f752079519081bc602408553.zip
chore: refactoring and tests (#12468)
Diffstat (limited to 'packages/app/src/utils/scoped-cache.test.ts')
-rw-r--r--packages/app/src/utils/scoped-cache.test.ts69
1 files changed, 69 insertions, 0 deletions
diff --git a/packages/app/src/utils/scoped-cache.test.ts b/packages/app/src/utils/scoped-cache.test.ts
new file mode 100644
index 000000000..0c6189daf
--- /dev/null
+++ b/packages/app/src/utils/scoped-cache.test.ts
@@ -0,0 +1,69 @@
+import { describe, expect, test } from "bun:test"
+import { createScopedCache } from "./scoped-cache"
+
+describe("createScopedCache", () => {
+ test("evicts least-recently-used entry when max is reached", () => {
+ const disposed: string[] = []
+ const cache = createScopedCache((key) => ({ key }), {
+ maxEntries: 2,
+ dispose: (value) => disposed.push(value.key),
+ })
+
+ const a = cache.get("a")
+ const b = cache.get("b")
+ expect(a.key).toBe("a")
+ expect(b.key).toBe("b")
+
+ cache.get("a")
+ const c = cache.get("c")
+
+ expect(c.key).toBe("c")
+ expect(cache.peek("a")?.key).toBe("a")
+ expect(cache.peek("b")).toBeUndefined()
+ expect(cache.peek("c")?.key).toBe("c")
+ expect(disposed).toEqual(["b"])
+ })
+
+ test("disposes entries on delete and clear", () => {
+ const disposed: string[] = []
+ const cache = createScopedCache((key) => ({ key }), {
+ dispose: (value) => disposed.push(value.key),
+ })
+
+ cache.get("a")
+ cache.get("b")
+
+ const removed = cache.delete("a")
+ expect(removed?.key).toBe("a")
+ expect(cache.peek("a")).toBeUndefined()
+
+ cache.clear()
+ expect(cache.peek("b")).toBeUndefined()
+ expect(disposed).toEqual(["a", "b"])
+ })
+
+ test("expires stale entries with ttl and recreates on get", () => {
+ let clock = 0
+ let count = 0
+ const disposed: string[] = []
+ const cache = createScopedCache((key) => ({ key, count: ++count }), {
+ ttlMs: 10,
+ now: () => clock,
+ dispose: (value) => disposed.push(`${value.key}:${value.count}`),
+ })
+
+ const first = cache.get("a")
+ expect(first.count).toBe(1)
+
+ clock = 9
+ expect(cache.peek("a")?.count).toBe(1)
+
+ clock = 11
+ expect(cache.peek("a")).toBeUndefined()
+ expect(disposed).toEqual(["a:1"])
+
+ const second = cache.get("a")
+ expect(second.count).toBe(2)
+ expect(disposed).toEqual(["a:1"])
+ })
+})