+21

![opencode-agent[bot] <219766164+opencode-agent[bot]@users.noreply.github.com>](/assets/img/avatar_default.png)



![opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com>](/assets/img/avatar_default.png)



James Long
Brendan Allan
Kit Langton
opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com>
Affan Ali
affanali2k3
Frank
opencode-agent[bot] <219766164+opencode-agent[bot]@users.noreply.github.com>
𝓛𝓲𝓽𝓽𝓵𝓮 𝓕𝓻𝓪𝓷𝓴
Aiden Cline
Jay V
Dax Raad
Aarav Sareen
OpeOginni
Luke Parker
Ben Guthrie
Dax
Filip
Max Anderson
Brendan Allan
Jack
Shoubhit Dash
Dustin Deus
starptech
Aiden Cline
usrnk1
Jay
runvip
opencode
Julian Coy
Vladimir Glafirov
8c94e9005f
Co-authored-by: Brendan Allan <14191578+Brendonovich@users.noreply.github.com> Co-authored-by: Kit Langton <kit.langton@gmail.com> Co-authored-by: opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com> Co-authored-by: Affan Ali <93028901+affanali2k3@users.noreply.github.com> Co-authored-by: affanali2k3 <affanalikhanxx@gmail.com> Co-authored-by: Frank <frank@anoma.ly> Co-authored-by: opencode-agent[bot] <219766164+opencode-agent[bot]@users.noreply.github.com> Co-authored-by: 𝓛𝓲𝓽𝓽𝓵𝓮 𝓕𝓻𝓪𝓷𝓴 <little-frank@opencord.local> Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com> Co-authored-by: Jay V <air@live.ca> Co-authored-by: Dax Raad <d@ironbay.co> Co-authored-by: Aarav Sareen <96787824+arvsrn@users.noreply.github.com> Co-authored-by: OpeOginni <107570612+OpeOginni@users.noreply.github.com> Co-authored-by: Luke Parker <10430890+Hona@users.noreply.github.com> Co-authored-by: Ben Guthrie <benjee.012@gmail.com> Co-authored-by: Dax <mail@thdxr.com> Co-authored-by: Filip <34747899+neriousy@users.noreply.github.com> Co-authored-by: Max Anderson <max.a.anderson95@gmail.com> Co-authored-by: Brendan Allan <git@brendonovich.dev> Co-authored-by: Jack <jack@anoma.ly> Co-authored-by: Shoubhit Dash <shoubhit2005@gmail.com> Co-authored-by: Dustin Deus <deusdustin@gmail.com> Co-authored-by: starptech <starptech@starptechs-MBP.fritz.box> Co-authored-by: Aiden Cline <aidenpcline@gmail.com> Co-authored-by: usrnk1 <7547651+usrnk1@users.noreply.github.com> Co-authored-by: Jay <53023+jayair@users.noreply.github.com> Co-authored-by: runvip <164729189+runvip@users.noreply.github.com> Co-authored-by: opencode <opencode@sst.dev> Co-authored-by: Julian Coy <julian@ex-machina.co> Co-authored-by: Vladimir Glafirov <vglafirov@gitlab.com>
298 lines
10 KiB
TypeScript
298 lines
10 KiB
TypeScript
import { describe, expect } from "bun:test"
|
|
import path from "path"
|
|
import { LayerNode } from "@opencode-ai/core/effect/layer-node"
|
|
import { Effect, Exit, Layer } from "effect"
|
|
import { FSUtil } from "@opencode-ai/core/fs-util"
|
|
import { CrossSpawnSpawner } from "@opencode-ai/core/cross-spawn-spawner"
|
|
import { Git } from "../../src/git"
|
|
import { Global } from "@opencode-ai/core/global"
|
|
import { Storage } from "@/storage/storage"
|
|
import { tmpdirScoped } from "../fixture/fixture"
|
|
import { testEffect } from "../lib/effect"
|
|
|
|
const dir = path.join(Global.Path.data, "storage")
|
|
|
|
const it = testEffect(LayerNode.compile(LayerNode.group([Storage.node, FSUtil.node, CrossSpawnSpawner.node])))
|
|
|
|
const scope = Effect.fnUntraced(function* () {
|
|
const root = ["storage_test", crypto.randomUUID()]
|
|
const fs = yield* FSUtil.Service
|
|
const svc = yield* Storage.Service
|
|
yield* Effect.addFinalizer(() =>
|
|
fs.remove(path.join(dir, ...root), { recursive: true, force: true }).pipe(Effect.ignore),
|
|
)
|
|
return { root, svc }
|
|
})
|
|
|
|
// remap(root) rewrites any path under Global.Path.data to live under `root` instead.
|
|
// Used by remappedFs to build an FSUtil that Storage thinks is the real global
|
|
// data dir but actually targets a tmp dir — letting migration tests stage legacy layouts.
|
|
// NOTE: only the 6 methods below are intercepted. If Storage starts using a different
|
|
// FSUtil method that touches Global.Path.data, add it here.
|
|
function remap(root: string, file: string) {
|
|
if (file === Global.Path.data) return root
|
|
if (file.startsWith(Global.Path.data + path.sep)) return path.join(root, path.relative(Global.Path.data, file))
|
|
return file
|
|
}
|
|
|
|
function remappedFs(root: string) {
|
|
return Layer.effect(
|
|
FSUtil.Service,
|
|
Effect.gen(function* () {
|
|
const fs = yield* FSUtil.Service
|
|
return FSUtil.Service.of({
|
|
...fs,
|
|
isDir: (file) => fs.isDir(remap(root, file)),
|
|
readJson: (file) => fs.readJson(remap(root, file)),
|
|
writeWithDirs: (file, content, mode) => fs.writeWithDirs(remap(root, file), content, mode),
|
|
readFileString: (file) => fs.readFileString(remap(root, file)),
|
|
remove: (file) => fs.remove(remap(root, file)),
|
|
glob: (pattern, options) =>
|
|
fs.glob(pattern, options?.cwd ? { ...options, cwd: remap(root, options.cwd) } : options),
|
|
})
|
|
}),
|
|
).pipe(Layer.provide(LayerNode.compile(FSUtil.node)))
|
|
}
|
|
|
|
// Layer.fresh forces a new Storage instance — without it, Effect's in-test layer cache
|
|
// returns the outer testEffect's Storage (which uses the real FSUtil), not a new
|
|
// one built on top of remappedFs.
|
|
const remappedStorage = (root: string) =>
|
|
Layer.fresh(LayerNode.compile(Storage.node, [[FSUtil.node, remappedFs(root)]]))
|
|
|
|
describe("Storage", () => {
|
|
it.live("round-trips JSON content", () =>
|
|
Effect.gen(function* () {
|
|
const { root, svc } = yield* scope()
|
|
const key = [...root, "session_diff", "roundtrip"]
|
|
const value = [{ file: "a.ts", additions: 2, deletions: 1 }]
|
|
|
|
yield* svc.write(key, value)
|
|
expect(yield* svc.read<typeof value>(key)).toEqual(value)
|
|
}),
|
|
)
|
|
|
|
it.live("maps missing reads to NotFoundError", () =>
|
|
Effect.gen(function* () {
|
|
const { root, svc } = yield* scope()
|
|
const error = yield* Effect.flip(svc.read([...root, "missing", "value"]))
|
|
expect(error).toBeInstanceOf(Storage.NotFoundError)
|
|
expect(error._tag).toBe("NotFoundError")
|
|
expect(error.message).toContain(path.join(...root, "missing", "value") + ".json")
|
|
}),
|
|
)
|
|
|
|
it.live("update on missing key throws NotFoundError", () =>
|
|
Effect.gen(function* () {
|
|
const { root, svc } = yield* scope()
|
|
const error = yield* Effect.flip(
|
|
svc.update<{ value: number }>([...root, "missing", "key"], (draft) => {
|
|
draft.value += 1
|
|
}),
|
|
)
|
|
expect(error).toBeInstanceOf(Storage.NotFoundError)
|
|
expect(error._tag).toBe("NotFoundError")
|
|
}),
|
|
)
|
|
|
|
it.live("write overwrites existing value", () =>
|
|
Effect.gen(function* () {
|
|
const { root, svc } = yield* scope()
|
|
const key = [...root, "overwrite", "test"]
|
|
|
|
yield* svc.write<{ v: number }>(key, { v: 1 })
|
|
yield* svc.write<{ v: number }>(key, { v: 2 })
|
|
|
|
expect(yield* svc.read<{ v: number }>(key)).toEqual({ v: 2 })
|
|
}),
|
|
)
|
|
|
|
it.live("remove on missing key is a no-op", () =>
|
|
Effect.gen(function* () {
|
|
const { root, svc } = yield* scope()
|
|
yield* svc.remove([...root, "nonexistent", "key"])
|
|
}),
|
|
)
|
|
|
|
it.live("list on missing prefix returns empty", () =>
|
|
Effect.gen(function* () {
|
|
const { root, svc } = yield* scope()
|
|
expect(yield* svc.list([...root, "nonexistent"])).toEqual([])
|
|
}),
|
|
)
|
|
|
|
it.live("serializes concurrent updates for the same key", () =>
|
|
Effect.gen(function* () {
|
|
const { root, svc } = yield* scope()
|
|
const key = [...root, "counter", "shared"]
|
|
|
|
yield* svc.write(key, { value: 0 })
|
|
|
|
yield* Effect.all(
|
|
Array.from({ length: 25 }, () =>
|
|
svc.update<{ value: number }>(key, (draft) => {
|
|
draft.value += 1
|
|
}),
|
|
),
|
|
{ concurrency: "unbounded" },
|
|
)
|
|
|
|
expect(yield* svc.read<{ value: number }>(key)).toEqual({ value: 25 })
|
|
}),
|
|
)
|
|
|
|
it.live("concurrent reads do not block each other", () =>
|
|
Effect.gen(function* () {
|
|
const { root, svc } = yield* scope()
|
|
const key = [...root, "concurrent", "reads"]
|
|
|
|
yield* svc.write(key, { ok: true })
|
|
|
|
const results = yield* Effect.all(
|
|
Array.from({ length: 10 }, () => svc.read(key)),
|
|
{ concurrency: "unbounded" },
|
|
)
|
|
|
|
expect(results).toHaveLength(10)
|
|
for (const r of results) expect(r).toEqual({ ok: true })
|
|
}),
|
|
)
|
|
|
|
it.live("nested keys create deep paths", () =>
|
|
Effect.gen(function* () {
|
|
const { root, svc } = yield* scope()
|
|
const key = [...root, "a", "b", "c", "deep"]
|
|
|
|
yield* svc.write<{ nested: boolean }>(key, { nested: true })
|
|
|
|
expect(yield* svc.read<{ nested: boolean }>(key)).toEqual({ nested: true })
|
|
expect(yield* svc.list([...root, "a"])).toEqual([key])
|
|
}),
|
|
)
|
|
|
|
it.live("lists and removes stored entries", () =>
|
|
Effect.gen(function* () {
|
|
const { root, svc } = yield* scope()
|
|
const a = [...root, "list", "a"]
|
|
const b = [...root, "list", "b"]
|
|
const prefix = [...root, "list"]
|
|
|
|
yield* svc.write(b, { value: 2 })
|
|
yield* svc.write(a, { value: 1 })
|
|
|
|
expect(yield* svc.list(prefix)).toEqual([a, b])
|
|
|
|
yield* svc.remove(a)
|
|
|
|
expect(yield* svc.list(prefix)).toEqual([b])
|
|
const exit = yield* svc.read(a).pipe(Effect.exit)
|
|
expect(Exit.isFailure(exit)).toBe(true)
|
|
}),
|
|
)
|
|
|
|
it.live("migration 2 runs when marker contents are invalid", () =>
|
|
Effect.gen(function* () {
|
|
const fs = yield* FSUtil.Service
|
|
const tmp = yield* tmpdirScoped()
|
|
const storage = path.join(tmp, "storage")
|
|
const diffs = [
|
|
{ additions: 2, deletions: 1 },
|
|
{ additions: 3, deletions: 4 },
|
|
]
|
|
|
|
yield* fs.writeWithDirs(path.join(storage, "migration"), "wat")
|
|
yield* fs.writeWithDirs(
|
|
path.join(storage, "session", "proj_test", "ses_test.json"),
|
|
JSON.stringify({
|
|
id: "ses_test",
|
|
projectID: "proj_test",
|
|
title: "legacy",
|
|
summary: { diffs },
|
|
}),
|
|
)
|
|
|
|
yield* Effect.gen(function* () {
|
|
const svc = yield* Storage.Service
|
|
expect(yield* svc.list(["session_diff"])).toEqual([["session_diff", "ses_test"]])
|
|
expect(yield* svc.read<typeof diffs>(["session_diff", "ses_test"])).toEqual(diffs)
|
|
expect(
|
|
yield* svc.read<{
|
|
id: string
|
|
projectID: string
|
|
title: string
|
|
summary: { additions: number; deletions: number }
|
|
}>(["session", "proj_test", "ses_test"]),
|
|
).toEqual({
|
|
id: "ses_test",
|
|
projectID: "proj_test",
|
|
title: "legacy",
|
|
summary: { additions: 5, deletions: 5 },
|
|
})
|
|
}).pipe(Effect.provide(remappedStorage(tmp)))
|
|
|
|
expect(yield* fs.readFileString(path.join(storage, "migration"))).toBe("2")
|
|
}),
|
|
)
|
|
|
|
it.live("migration 1 tolerates malformed legacy records", () =>
|
|
Effect.gen(function* () {
|
|
const fs = yield* FSUtil.Service
|
|
const tmp = yield* tmpdirScoped({ git: true })
|
|
const storage = path.join(tmp, "storage")
|
|
const legacy = path.join(tmp, "project", "legacy")
|
|
|
|
yield* fs.writeWithDirs(path.join(legacy, "storage", "session", "message", "probe", "0.json"), "[]")
|
|
yield* fs.writeWithDirs(
|
|
path.join(legacy, "storage", "session", "message", "probe", "1.json"),
|
|
JSON.stringify({ path: { root: tmp } }),
|
|
)
|
|
yield* fs.writeWithDirs(
|
|
path.join(legacy, "storage", "session", "info", "ses_legacy.json"),
|
|
JSON.stringify({ id: "ses_legacy", title: "legacy" }),
|
|
)
|
|
yield* fs.writeWithDirs(
|
|
path.join(legacy, "storage", "session", "message", "ses_legacy", "msg_legacy.json"),
|
|
JSON.stringify({ role: "user", text: "hello" }),
|
|
)
|
|
|
|
yield* Effect.gen(function* () {
|
|
const svc = yield* Storage.Service
|
|
const projects = yield* svc.list(["project"])
|
|
expect(projects).toHaveLength(1)
|
|
const project = projects[0]![1]
|
|
|
|
expect(yield* svc.list(["session", project])).toEqual([["session", project, "ses_legacy"]])
|
|
expect(yield* svc.read<{ id: string; title: string }>(["session", project, "ses_legacy"])).toEqual({
|
|
id: "ses_legacy",
|
|
title: "legacy",
|
|
})
|
|
expect(yield* svc.read<{ role: string; text: string }>(["message", "ses_legacy", "msg_legacy"])).toEqual({
|
|
role: "user",
|
|
text: "hello",
|
|
})
|
|
}).pipe(Effect.provide(remappedStorage(tmp)))
|
|
|
|
expect(yield* fs.readFileString(path.join(storage, "migration"))).toBe("2")
|
|
}),
|
|
)
|
|
|
|
it.live("failed migrations do not advance the marker", () =>
|
|
Effect.gen(function* () {
|
|
const fs = yield* FSUtil.Service
|
|
const tmp = yield* tmpdirScoped()
|
|
const storage = path.join(tmp, "storage")
|
|
const legacy = path.join(tmp, "project", "legacy")
|
|
|
|
yield* fs.writeWithDirs(path.join(legacy, "storage", "session", "message", "probe", "0.json"), "{")
|
|
|
|
yield* Effect.gen(function* () {
|
|
const svc = yield* Storage.Service
|
|
expect(yield* svc.list(["project"])).toEqual([])
|
|
}).pipe(Effect.provide(remappedStorage(tmp)))
|
|
|
|
const exit = yield* fs.access(path.join(storage, "migration")).pipe(Effect.exit)
|
|
expect(Exit.isFailure(exit)).toBe(true)
|
|
}),
|
|
)
|
|
})
|