sqlite.spec.ts 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599
  1. import { afterEach, describe, expect, it } from 'vitest'
  2. import { Context } from 'cordis'
  3. import { existsSync } from 'node:fs'
  4. import { chmod, mkdtemp, rm, stat, writeFile } from 'node:fs/promises'
  5. import { tmpdir } from 'node:os'
  6. import { dirname, join } from 'node:path'
  7. import SessionStore, { SessionId } from '@deepseek-ai/dsh-session'
  8. import type { Session, SessionEvent, SurfaceEvent, SurfaceEventType } from '@deepseek-ai/dsh-session'
  9. import SessionPersistenceSqlite, { SCHEMA_VERSION } from '@deepseek-ai/dsh-session-persistence-sqlite'
  10. import { openDatabase, rowToEvent, scanRows, type EventRow } from '../src/schema.ts'
  11. import { runPersistenceContract, meta, oneTurnLog, appendLog } from '../../session-persistence/tests/contract.ts'
  12. import { runCoordinatorContract, type CoordinatorFixture } from '../../session-persistence/tests/coordinator-contract.ts'
  13. const dirs: string[] = []
  14. afterEach(async () => { for (const d of dirs.splice(0)) await rm(d, { recursive: true, force: true }) })
  15. async function expectParallelFlushError(promise: Promise<unknown>, message: RegExp): Promise<void> {
  16. try {
  17. await promise
  18. } catch (error) {
  19. expect(error).toBeInstanceOf(AggregateError)
  20. const [cause] = (error as AggregateError).errors as unknown[]
  21. expect(cause).toBeInstanceOf(Error)
  22. expect((cause as Error).message).toMatch(message)
  23. return
  24. }
  25. throw new Error('expected parallel flush to reject')
  26. }
  27. async function freshDbPath(): Promise<string> {
  28. const dir = await mkdtemp(join(tmpdir(), 'dsh-sqlite-'))
  29. dirs.push(dir)
  30. return join(dir, 'sessions.db')
  31. }
  32. /** A context with the session store + SQLite backend, plus a teardown. */
  33. async function backend(path = ':memory:'): Promise<{ ctx: Context; dispose: () => Promise<void> }> {
  34. const ctx = new Context()
  35. await ctx.plugin(SessionStore)
  36. const fiber = await ctx.plugin(SessionPersistenceSqlite, { path })
  37. return { ctx, dispose: () => fiber.dispose() }
  38. }
  39. // Run the same backend-agnostic contract as JSONL to pin identical semantics.
  40. runPersistenceContract('sqlite', async () => {
  41. const ctx = new Context()
  42. await ctx.plugin(SessionStore)
  43. const fiber = await ctx.plugin(SessionPersistenceSqlite, { path: ':memory:' })
  44. return {
  45. persistence: ctx.sessionPersistence,
  46. dispose: async () => { await fiber.dispose() },
  47. }
  48. })
  49. // A file-backed database lets two mounts share rows across reload. `corruptTail` inserts invalid
  50. // JSON past the committed seq, exercising coordinator repair against real database rows.
  51. runCoordinatorContract('sqlite', async (): Promise<CoordinatorFixture> => {
  52. const dir = await mkdtemp(join(tmpdir(), 'dsh-sqlite-coord-'))
  53. const path = join(dir, 'sessions.db')
  54. return {
  55. mount: async ctx => ctx.plugin(SessionPersistenceSqlite, { path }),
  56. corruptTail: async (id) => {
  57. // A row past the committed region whose `data` does not parse: scanRows
  58. // bounds the preserved prefix at it and returns its seq as tornFrom, which
  59. // the backend surfaces to the coordinator as the tornMarker to delete from.
  60. const db = openDatabase(path, 'wal')
  61. const next = (db.prepare('SELECT COALESCE(MAX(seq), -1) + 1 AS n FROM events WHERE session_id = ?')
  62. .get(id) as { n: number }).n
  63. db.prepare('INSERT INTO events (session_id, seq, type, time, data) VALUES (?, ?, ?, ?, ?)')
  64. .run(id, next, 'assistant/chunk', 99, '{not valid json')
  65. db.close()
  66. },
  67. cleanup: async () => { await rm(dir, { recursive: true, force: true }) },
  68. }
  69. })
  70. describe('scanRows', () => {
  71. // scanRows works off EventRows (data is a JSON string column); build them from SessionEvents
  72. // so the unit tests read in terms of the event vocabulary. Surface metadata is serialized to
  73. // its nullable columns so the conversion remains faithful.
  74. const rows = (events: SessionEvent[]): EventRow[] =>
  75. events.map((e) => {
  76. const se = e as SessionEvent<SurfaceEventType>
  77. return {
  78. seq: e.seq, type: e.type, time: e.time, data: JSON.stringify(e.data),
  79. source_event_seqs: se.sourceEventSeqs !== undefined ? JSON.stringify(se.sourceEventSeqs) : null,
  80. surface_op: se.surfaceOp !== undefined ? JSON.stringify(se.surfaceOp) : null,
  81. }
  82. })
  83. it('preserves the full log when it ends exactly on a turn/end (no torn tail)', () => {
  84. const { preserved, tornFrom } = scanRows(rows(oneTurnLog()))
  85. expect(preserved).toEqual(oneTurnLog())
  86. expect(tornFrom).toBeUndefined()
  87. })
  88. it('PRESERVES the real events of an interrupted turn after the last turn/end', () => {
  89. // turn 1 committed (0..5) + a crashed turn 2 (turn/start 6, step/start 7, no
  90. // close): all 8 rows are intact, so the whole prefix is preserved and there
  91. // is no torn fragment to delete. (load() then synthesizes the closers.)
  92. const withOpenTurn: SessionEvent[] = [
  93. ...oneTurnLog(),
  94. { type: 'turn/start', seq: 6, time: 7, data: { turn: 2, trigger: { kind: 'message', source: { kind: 'user' } } } },
  95. { type: 'step/start', seq: 7, time: 8, data: { turn: 2, step: 1 } },
  96. ]
  97. const { preserved, tornFrom } = scanRows(rows(withOpenTurn))
  98. expect(preserved.map(e => e.seq)).toEqual([0, 1, 2, 3, 4, 5, 6, 7])
  99. expect(tornFrom).toBeUndefined()
  100. })
  101. it('preserves the contiguous prefix and flags a torn tail at a seq gap', () => {
  102. // A gap after seq 0 (no committed turn/end): seq 0 is the preserved
  103. // interrupted-turn event; the gap bounds it and marks the torn fragment.
  104. const gapped: SessionEvent[] = [
  105. { type: 'turn/start', seq: 0, time: 1, data: { turn: 1, trigger: { kind: 'message', source: { kind: 'user' } } } },
  106. { type: 'step/start', seq: 2, time: 2, data: { turn: 1, step: 1 } }, // seq 1 missing
  107. ]
  108. const { preserved, tornFrom } = scanRows(rows(gapped))
  109. expect(preserved.map(e => e.seq)).toEqual([0])
  110. expect(tornFrom).toBe(1)
  111. })
  112. it('an empty log preserves nothing and has no torn tail', () => {
  113. expect(scanRows([])).toEqual({ preserved: [] })
  114. })
  115. it('throws on a seq gap inside the committed region (before the last turn/end)', () => {
  116. const gapped: SessionEvent[] = [
  117. { type: 'turn/start', seq: 0, time: 1, data: { turn: 1, trigger: { kind: 'message', source: { kind: 'user' } } } },
  118. { type: 'step/start', seq: 2, time: 2, data: { turn: 1, step: 1 } }, // seq 1 missing
  119. { type: 'turn/end', seq: 3, time: 3, data: { turn: 1, reason: { kind: 'completed' } } },
  120. ]
  121. expect(() => scanRows(rows(gapped))).toThrow(/seq gap in committed region/)
  122. })
  123. it('throws on an unparsable row inside the committed region', () => {
  124. const withCorruptCommitted: EventRow[] = [
  125. { seq: 0, type: 'turn/start', time: 1, data: '{not json', source_event_seqs: null, surface_op: null }, // corrupt, sits before a turn/end
  126. { seq: 1, type: 'turn/end', time: 2, data: JSON.stringify({ turn: 1, reason: { kind: 'completed' } }), source_event_seqs: null, surface_op: null },
  127. ]
  128. expect(() => scanRows(withCorruptCommitted)).toThrow(/unparsable committed event/)
  129. })
  130. it('tolerates an unparsable torn-tail row after the last turn/end', () => {
  131. const withCorruptTail: EventRow[] = [
  132. ...rows(oneTurnLog()),
  133. { seq: 6, type: 'turn/start', time: 7, data: '{not json', source_event_seqs: null, surface_op: null }, // torn fragment, no committed turn/end after
  134. ]
  135. const { preserved, tornFrom } = scanRows(withCorruptTail)
  136. expect(preserved).toEqual(oneTurnLog())
  137. expect(tornFrom).toBe(6)
  138. })
  139. })
  140. describe('SessionPersistenceSqlite: durability and crash semantics', () => {
  141. it('rejects a stored v0 log containing a legacy request/header-delta event', async () => {
  142. const path = await freshDbPath()
  143. const m = meta('legacy-header-delta', '/legacy')
  144. const db = openDatabase(path, 'wal')
  145. db.prepare('INSERT INTO sessions (id, version, created_at, cwd, parent_session, seed_length) VALUES (?, ?, ?, ?, NULL, NULL)')
  146. .run(m.id, m.version, m.createdAt, m.cwd ?? null)
  147. const insert = db.prepare('INSERT INTO events (session_id, seq, type, time, data) VALUES (?, ?, ?, ?, ?)')
  148. insert.run(m.id, 0, 'turn/start', 1, JSON.stringify({ turn: 1, trigger: { kind: 'message', source: { kind: 'user' } } }))
  149. insert.run(m.id, 1, 'request/header-delta', 2, JSON.stringify({ config: { model: 'legacy' } }))
  150. insert.run(m.id, 2, 'turn/end', 3, JSON.stringify({ turn: 1, reason: { kind: 'completed' } }))
  151. db.close()
  152. const mounted = await backend(path)
  153. await expect(mounted.ctx.sessionPersistence.load(m.id)).rejects.toThrow(/unsupported legacy request\/header-delta event at seq 1/)
  154. await mounted.dispose()
  155. })
  156. it('rejects a stored v0 full header carrying the legacy fallback reason', async () => {
  157. const path = await freshDbPath()
  158. const m = meta('legacy-header-fallback', '/legacy')
  159. const db = openDatabase(path, 'wal')
  160. db.prepare('INSERT INTO sessions (id, version, created_at, cwd, parent_session, seed_length) VALUES (?, ?, ?, ?, NULL, NULL)')
  161. .run(m.id, m.version, m.createdAt, m.cwd ?? null)
  162. db.prepare('INSERT INTO events (session_id, seq, type, time, data) VALUES (?, ?, ?, ?, ?)')
  163. .run(m.id, 0, 'request/header', 1, JSON.stringify({
  164. header: { config: { model: 'legacy' } },
  165. reason: 'fallback',
  166. }))
  167. db.close()
  168. const mounted = await backend(path)
  169. await expect(mounted.ctx.sessionPersistence.load(m.id))
  170. .rejects.toThrow(/unsupported legacy request\/header reason "fallback" at seq 0/)
  171. await mounted.dispose()
  172. })
  173. it('has no independent per-session log location', async () => {
  174. const { ctx, dispose } = await backend()
  175. expect(ctx.sessionPersistence.locate(meta('sqlite-location'))).toBeUndefined()
  176. await dispose()
  177. })
  178. it('an interrupted turn (rows after the last turn/end) is PRESERVED and closed during load', async () => {
  179. const path = await freshDbPath()
  180. const m = meta('crash')
  181. // Run 1: persist a complete turn, then a half-written second turn (no turn/end).
  182. const ctx1 = new Context()
  183. await ctx1.plugin(SessionStore)
  184. const fiber1 = await ctx1.plugin(SessionPersistenceSqlite, { path })
  185. await ctx1.sessionPersistence.create(m)
  186. await ctx1.sessionPersistence.append(m.id, oneTurnLog())
  187. await ctx1.sessionPersistence.append(m.id, [
  188. { type: 'turn/start', seq: 6, time: 7, data: { turn: 2, trigger: { kind: 'message', source: { kind: 'user' } } } },
  189. { type: 'step/start', seq: 7, time: 8, data: { turn: 2, step: 1 } },
  190. ])
  191. await fiber1.dispose()
  192. // Run 2: load PRESERVES the interrupted turn's real events (a turn can be huge
  193. // — never truncated) and closes the orphaned turn with synthetic boundary
  194. // events: step/end (the step was open) then turn/end {interrupted}.
  195. const ctx2 = new Context()
  196. await ctx2.plugin(SessionStore)
  197. const fiber2 = await ctx2.plugin(SessionPersistenceSqlite, { path })
  198. const loaded = await ctx2.sessionPersistence.load(m.id)
  199. expect(loaded.events.map(e => e.type)).toEqual([
  200. 'turn/start', 'user/message', 'step/start', 'assistant/message', 'step/end', 'turn/end', // turn 1
  201. 'turn/start', 'step/start', 'step/end', 'turn/end', // turn 2: real events + synthetic closers
  202. ])
  203. expect(loaded.events.map(e => e.seq)).toEqual([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
  204. const last = loaded.events.at(-1)!
  205. expect(last.type === 'turn/end' && last.data.reason).toEqual({ kind: 'interrupted' })
  206. // load durably closed the turn, so the next append continues at the balanced
  207. // length (seq 10) and a reload round-trips identically.
  208. await ctx2.sessionPersistence.append(m.id, [
  209. { type: 'turn/start', seq: 10, time: 9, data: { turn: 3, trigger: { kind: 'message', source: { kind: 'user' } } } },
  210. { type: 'turn/end', seq: 11, time: 10, data: { turn: 3, reason: { kind: 'completed' } } },
  211. ])
  212. const reloaded = await ctx2.sessionPersistence.load(m.id)
  213. expect(reloaded.events.map(e => e.seq)).toEqual([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11])
  214. await fiber2.dispose()
  215. })
  216. it('load() durably closes the interrupted turn: the synthetic closers are on disk after load', async () => {
  217. const path = await freshDbPath()
  218. const m = meta('load-closes')
  219. const b1 = await backend(path)
  220. await b1.ctx.sessionPersistence.create(m)
  221. await b1.ctx.sessionPersistence.append(m.id, oneTurnLog()) // seqs 0..5
  222. await b1.dispose()
  223. // Hand-write an interrupted turn (turn/start seq 6, no turn/end).
  224. const db = openDatabase(path, 'wal')
  225. db.prepare('INSERT INTO events (session_id, seq, type, time, data) VALUES (?, 6, ?, 7, ?)')
  226. .run(m.id, 'turn/start', JSON.stringify({ turn: 2, trigger: { kind: 'message', source: { kind: 'user' } } }))
  227. db.close()
  228. const b2 = await backend(path)
  229. const loaded = await b2.ctx.sessionPersistence.load(m.id)
  230. // turn 2's real turn/start (seq 6) is preserved + a synthetic turn/end (seq 7).
  231. expect(loaded.events.map(e => e.seq)).toEqual([0, 1, 2, 3, 4, 5, 6, 7])
  232. expect(loaded.events.at(-1)!.type).toBe('turn/end')
  233. // load() is mutating: the synthetic turn/end MUST be on disk so the stored log
  234. // is balanced and the cursor is truthful (contract: load closes, not defers).
  235. const probe = openDatabase(path, 'wal')
  236. const stored = probe.prepare('SELECT seq, type FROM events WHERE session_id = ? ORDER BY seq').all(m.id) as { seq: number; type: string }[]
  237. probe.close()
  238. expect(stored.map(r => r.seq)).toEqual([0, 1, 2, 3, 4, 5, 6, 7])
  239. expect(stored.at(-1)!.type).toBe('turn/end')
  240. await b2.dispose()
  241. })
  242. it('all-tail load: a session whose only turn never closed is preserved and closed on load', async () => {
  243. const path = await freshDbPath()
  244. const m = meta('all-tail')
  245. const b1 = await backend(path)
  246. await b1.ctx.sessionPersistence.create(m)
  247. // A first turn that NEVER completed: turn/start + user/message, no turn/end.
  248. await b1.ctx.sessionPersistence.append(m.id, [
  249. { type: 'turn/start', seq: 0, time: 1, data: { turn: 1, trigger: { kind: 'message', source: { kind: 'user' } } } },
  250. { type: 'user/message', seq: 1, time: 2, data: { content: [{ type: 'text', text: 'hi' }], source: { kind: 'user' } } },
  251. ])
  252. await b1.dispose()
  253. // A fresh backend loads it: the interrupted (only) turn's real events are
  254. // preserved and closed with a synthetic turn/end {interrupted} — NOT
  255. // truncated. The session was materialized, so list() reports it present.
  256. const b2 = await backend(path)
  257. const loaded = await b2.ctx.sessionPersistence.load(m.id)
  258. expect(loaded.events.map(e => e.type)).toEqual(['turn/start', 'user/message', 'turn/end'])
  259. expect(loaded.events.at(-1)!.type === 'turn/end' && loaded.events.at(-1)!.data).toMatchObject({ reason: { kind: 'interrupted' } })
  260. expect((await b2.ctx.sessionPersistence.list()).map(x => x.id)).toContain(m.id)
  261. await b2.dispose()
  262. })
  263. it('rejects opening a database whose schema version is not the current build (newer OR older)', async () => {
  264. const path = await freshDbPath()
  265. openDatabase(path, 'wal').close() // stamp user_version = SCHEMA_VERSION
  266. // Bump user_version past what this build supports.
  267. const dbNewer = openDatabase(path, 'wal')
  268. dbNewer.exec(`PRAGMA user_version = ${SCHEMA_VERSION + 1}`)
  269. dbNewer.close()
  270. expect(() => openDatabase(path, 'wal')).toThrow(/incompatible with this build/)
  271. // A stale OLDER version (e.g. a pre-summary-drop v1 DB) is also rejected —
  272. // we do not migrate (unreleased software, no backward-compat).
  273. const olderPath = await freshDbPath()
  274. openDatabase(olderPath, 'wal').close()
  275. const dbOlder = openDatabase(olderPath, 'wal')
  276. dbOlder.exec('PRAGMA user_version = 1')
  277. dbOlder.close()
  278. expect(() => openDatabase(olderPath, 'wal')).toThrow(/incompatible with this build/)
  279. })
  280. it('rejects a sibling v3 database (the merge-collided version) rather than opening it against missing columns', async () => {
  281. // Two unmerged branches each shipped a DISTINCT layout under user_version 3 (one added only
  282. // `seed_length`, the other only the surface columns). The merged v4 cannot interpret that
  283. // ambiguous, incomplete layout and must reject it.
  284. const path = await freshDbPath()
  285. openDatabase(path, 'wal').close() // creates + stamps user_version = SCHEMA_VERSION (4)
  286. const db = openDatabase(path, 'wal')
  287. db.exec('PRAGMA user_version = 3')
  288. db.close()
  289. expect(() => openDatabase(path, 'wal')).toThrow(/schema version 3, incompatible with this build/)
  290. })
  291. it('a corrupt-JSON row in the uncommitted tail is discarded on load, not unloadable', async () => {
  292. const path = await freshDbPath()
  293. const m = meta('corrupt-tail')
  294. const b1 = await backend(path)
  295. await b1.ctx.sessionPersistence.create(m)
  296. await b1.ctx.sessionPersistence.append(m.id, oneTurnLog()) // committed: seqs 0..5
  297. await b1.dispose()
  298. // A torn row after the last committed turn has invalid JSON. `scanRows` locates the boundary
  299. // from seq/type columns without parsing the tail, preserves the committed prefix, and load
  300. // deletes the row; invalid JSON inside the committed region would remain fatal.
  301. const db = openDatabase(path, 'wal')
  302. db.prepare('INSERT INTO events (session_id, seq, type, time, data) VALUES (?, 6, ?, 7, ?)')
  303. .run(m.id, 'turn/start', '{not valid json')
  304. db.close()
  305. const b2 = await backend(path)
  306. const loaded = await b2.ctx.sessionPersistence.load(m.id)
  307. expect(loaded.events).toEqual(oneTurnLog()) // torn tail discarded, committed intact (turn 1 already balanced → no closers)
  308. // load physically deleted the corrupt tail row, so a fresh append continues.
  309. await b2.ctx.sessionPersistence.append(m.id, [
  310. { type: 'turn/start', seq: 6, time: 8, data: { turn: 2, trigger: { kind: 'message', source: { kind: 'user' } } } },
  311. { type: 'turn/end', seq: 7, time: 9, data: { turn: 2, reason: { kind: 'completed' } } },
  312. ])
  313. const reloaded = await b2.ctx.sessionPersistence.load(m.id)
  314. expect(reloaded.events.map(e => e.seq)).toEqual([0, 1, 2, 3, 4, 5, 6, 7])
  315. await b2.dispose()
  316. })
  317. it('append rolls back the whole batch on a mid-batch seq collision (transaction)', async () => {
  318. const ctx = new Context()
  319. await ctx.plugin(SessionStore)
  320. const fiber = await ctx.plugin(SessionPersistenceSqlite, { path: ':memory:' })
  321. const m = meta('rollback')
  322. await ctx.sessionPersistence.create(m)
  323. await ctx.sessionPersistence.append(m.id, oneTurnLog()) // seqs 0..5
  324. // A batch that re-states an already-stored seq must be rejected and leave
  325. // the stored log unchanged (the UNIQUE (session_id, seq) constraint fires
  326. // inside the transaction → ROLLBACK).
  327. await expect(ctx.sessionPersistence.append(m.id, oneTurnLog())).rejects.toThrow()
  328. const loaded = await ctx.sessionPersistence.load(m.id)
  329. expect(loaded.events).toEqual(oneTurnLog()) // unchanged
  330. await fiber.dispose()
  331. })
  332. it('persists across separate backend instances over the same file', async () => {
  333. const path = await freshDbPath()
  334. const m = meta('persist', '/proj')
  335. const ctx1 = new Context()
  336. await ctx1.plugin(SessionStore)
  337. const fiber1 = await ctx1.plugin(SessionPersistenceSqlite, { path })
  338. await ctx1.sessionPersistence.create(m)
  339. await ctx1.sessionPersistence.append(m.id, oneTurnLog())
  340. await fiber1.dispose()
  341. const ctx2 = new Context()
  342. await ctx2.plugin(SessionStore)
  343. const fiber2 = await ctx2.plugin(SessionPersistenceSqlite, { path })
  344. expect((await ctx2.sessionPersistence.list()).map(x => x.id)).toContain(m.id)
  345. const loaded = await ctx2.sessionPersistence.load(m.id)
  346. expect(loaded.meta).toMatchObject({ id: m.id, cwd: '/proj' })
  347. expect(loaded.events).toEqual(oneTurnLog())
  348. await fiber2.dispose()
  349. })
  350. it('exposes the schema version constant', () => {
  351. expect(SCHEMA_VERSION).toBe(5)
  352. })
  353. })
  354. describe('SessionPersistenceSqlite: edge cases', () => {
  355. it('creates a new database and WAL sidecars with owner-only modes without changing its parent mode', async () => {
  356. if (process.platform === 'win32') return
  357. const path = await freshDbPath()
  358. const dir = dirname(path)
  359. await chmod(dir, 0o755)
  360. const b = await backend(path)
  361. await b.ctx.sessionPersistence.list()
  362. expect((await stat(dir)).mode & 0o777).toBe(0o755)
  363. expect((await stat(path)).mode & 0o777).toBe(0o600)
  364. expect((await stat(`${path}-wal`)).mode & 0o777).toBe(0o600)
  365. expect((await stat(`${path}-shm`)).mode & 0o777).toBe(0o600)
  366. await b.dispose()
  367. })
  368. it('creates a persistent rollback journal with owner-only mode', async () => {
  369. if (process.platform === 'win32') return
  370. const path = await freshDbPath()
  371. const ctx = new Context()
  372. await ctx.plugin(SessionStore)
  373. const fiber = await ctx.plugin(SessionPersistenceSqlite, { path, journalMode: 'persist' })
  374. const m = meta('persist-permissions')
  375. await ctx.sessionPersistence.create(m)
  376. await ctx.sessionPersistence.append(m.id, oneTurnLog())
  377. expect((await stat(path)).mode & 0o777).toBe(0o600)
  378. expect((await stat(`${path}-journal`)).mode & 0o777).toBe(0o600)
  379. await fiber.dispose()
  380. })
  381. it('preserves the mode of an existing database file', async () => {
  382. if (process.platform === 'win32') return
  383. const path = await freshDbPath()
  384. await writeFile(path, '', { mode: 0o644 })
  385. await chmod(path, 0o644)
  386. const ctx = new Context()
  387. await ctx.plugin(SessionStore)
  388. const fiber = await ctx.plugin(SessionPersistenceSqlite, { path, journalMode: 'delete' })
  389. await ctx.sessionPersistence.list()
  390. expect((await stat(path)).mode & 0o777).toBe(0o644)
  391. await fiber.dispose()
  392. })
  393. it('surfaces an invalid database path during pre-creation', async () => {
  394. const path = await freshDbPath()
  395. const b = await backend(`${path}\0`)
  396. await expect(b.ctx.sessionPersistence.list()).rejects.toMatchObject({ code: 'ERR_INVALID_ARG_VALUE' })
  397. await b.dispose()
  398. })
  399. it('append rolls back and rethrows when an event INSERT fails inside the transaction', async () => {
  400. const path = await freshDbPath()
  401. const m = meta('rollback-insert')
  402. const b1 = await backend(path)
  403. await b1.ctx.sessionPersistence.create(m)
  404. await b1.ctx.sessionPersistence.append(m.id, oneTurnLog())
  405. // A SECOND backend over the same file loads the session first, so it adopts
  406. // cursor 6 (the committed length) into its OWN in-memory state.
  407. const b2 = await backend(path)
  408. await b2.ctx.sessionPersistence.load(m.id) // cursor 6 in b2
  409. const turn2: SessionEvent[] = [
  410. { type: 'turn/start', seq: 6, time: 7, data: { turn: 2, trigger: { kind: 'message', source: { kind: 'user' } } } },
  411. { type: 'turn/end', seq: 7, time: 8, data: { turn: 2, reason: { kind: 'completed' } } },
  412. ]
  413. // b1 commits seq 6..7 first.
  414. await b1.ctx.sessionPersistence.append(m.id, turn2)
  415. // b2 still thinks its cursor is 6, so this batch passes the contiguity check
  416. // but its INSERT of seq 6 hits the UNIQUE (session_id, seq) constraint
  417. // mid-transaction → ROLLBACK + rethrow.
  418. await expect(b2.ctx.sessionPersistence.append(m.id, turn2)).rejects.toThrow(/UNIQUE/)
  419. // b1's turn is intact; b2's rolled-back attempt left nothing extra.
  420. const loaded = await b1.ctx.sessionPersistence.load(m.id)
  421. expect(loaded.events.map(e => e.seq)).toEqual([0, 1, 2, 3, 4, 5, 6, 7])
  422. await b1.dispose()
  423. await b2.dispose()
  424. })
  425. it('journalMode config reaches the database (default wal, rollback modes selectable)', async () => {
  426. // :memory: databases always report journal_mode=memory, so probe file DBs.
  427. const walPath = await freshDbPath()
  428. const bWal = await backend(walPath)
  429. await bWal.ctx.sessionPersistence.create(meta('jm-wal'))
  430. expect((openDatabase(walPath, 'wal').prepare('PRAGMA journal_mode').get() as { journal_mode: string }).journal_mode).toBe('wal')
  431. await bWal.dispose()
  432. const deletePath = await freshDbPath()
  433. const ctx = new Context()
  434. await ctx.plugin(SessionStore)
  435. const fiber = await ctx.plugin(SessionPersistenceSqlite, { path: deletePath, journalMode: 'delete' })
  436. await ctx.sessionPersistence.create(meta('jm-delete'))
  437. // Probe through a second connection: journal_mode=delete is a per-database
  438. // property only insofar as no WAL files exist — assert the world, not the
  439. // backend's self-report (no -wal sidecar after writes in delete mode).
  440. const db = openDatabase(deletePath, 'delete')
  441. expect((db.prepare('PRAGMA journal_mode').get() as { journal_mode: string }).journal_mode).toBe('delete')
  442. db.close()
  443. expect(existsSync(`${deletePath}-wal`)).toBe(false)
  444. await fiber.dispose()
  445. })
  446. it('HMR: a DIFFERENT session colliding with a materialized on-disk id is rejected', async () => {
  447. const path = await freshDbPath()
  448. // Instance 1 materializes a session and disposes.
  449. const b1 = await backend(path)
  450. const s1 = b1.ctx.sessions.create(SessionId('hmr-collide'))
  451. appendLog(s1, oneTurnLog())
  452. await b1.ctx.parallel('session/flush', s1)
  453. await b1.dispose()
  454. // A fresh context with an UNRELATED live session reusing the id meets a
  455. // materialized row that is NOT a prefix of its events → reject.
  456. const ctx = new Context()
  457. await ctx.plugin(SessionStore)
  458. let session!: Session
  459. await ctx.plugin(Object.assign((inner: Context) => {
  460. session = inner.sessions.create(SessionId('hmr-collide'))
  461. }, { inject: ['sessions'] }))
  462. session.append('turn/start', { turn: 9, trigger: { kind: 'message', source: { kind: 'user' } } })
  463. await ctx.plugin(SessionPersistenceSqlite, { path })
  464. await expectParallelFlushError(ctx.parallel('session/flush', session), /id collision/)
  465. await ctx.fiber.dispose()
  466. })
  467. })
  468. describe('surface field round-trip', () => {
  469. it('rowToEvent parses surface fields from EventRow columns', () => {
  470. const row: EventRow = {
  471. seq: 0, type: 'assistant/message', time: 1,
  472. data: JSON.stringify({ turn: 1, step: 1, content: [] }),
  473. source_event_seqs: JSON.stringify([3, 5]),
  474. surface_op: JSON.stringify('append'),
  475. }
  476. const event = rowToEvent(row)
  477. expect((event as SurfaceEvent).sourceEventSeqs).toEqual([3, 5])
  478. expect((event as SurfaceEvent).surfaceOp).toBe('append')
  479. })
  480. it('rowToEvent handles replace surfaceOp object', () => {
  481. const row: EventRow = {
  482. seq: 0, type: 'assistant/message', time: 1,
  483. data: JSON.stringify({ turn: 1, step: 1, content: [] }),
  484. source_event_seqs: JSON.stringify([0, 1]),
  485. surface_op: JSON.stringify({ op: 'replace', start: 0, end: 1 }),
  486. }
  487. const event = rowToEvent(row)
  488. expect((event as SurfaceEvent).sourceEventSeqs).toEqual([0, 1])
  489. expect((event as SurfaceEvent).surfaceOp).toEqual({ op: 'replace', start: 0, end: 1 })
  490. })
  491. it('scanRows with surface columns reconstructs events with surface fields', () => {
  492. const rows: EventRow[] = [
  493. { seq: 0, type: 'user/message', time: 1,
  494. data: JSON.stringify({ content: [{ type: 'text', text: 'hi' }], source: { kind: 'user' } }),
  495. source_event_seqs: null, surface_op: '{"op":"replace","start":0,"end":0}' },
  496. { seq: 1, type: 'turn/end', time: 2,
  497. data: JSON.stringify({ turn: 1, reason: { kind: 'completed' } }),
  498. source_event_seqs: null, surface_op: null },
  499. ]
  500. const { preserved } = scanRows(rows)
  501. expect(preserved).toHaveLength(2)
  502. expect((preserved[0]! as SurfaceEvent).surfaceOp).toEqual({ op: 'replace', start: 0, end: 0 })
  503. expect((preserved[0]! as SurfaceEvent).sourceEventSeqs).toBeUndefined()
  504. expect((preserved[1] as SessionEvent<SurfaceEventType>).surfaceOp).toBeUndefined()
  505. })
  506. it('append and load round-trips surface fields through SQLite', async () => {
  507. const ctx = new Context()
  508. await ctx.plugin(SessionStore)
  509. const fiber = await ctx.plugin(SessionPersistenceSqlite, { path: ':memory:' })
  510. const session = ctx.sessions.create(SessionId('roundtrip-surface'))
  511. session.append('turn/start', { turn: 1, trigger: { kind: 'message', source: { kind: 'user' } } })
  512. session.append('user/message', { content: [{ type: 'text', text: 'hi' }], source: { kind: 'user' } }, { surfaceOp: 'append' })
  513. session.append('assistant/message', { provenance: { provider: 'mock', model: 'mock' }, turn: 1, step: 1, content: [] }, { surfaceOp: 'append', sourceEventSeqs: [0] })
  514. session.append('turn/end', { turn: 1, reason: { kind: 'completed' } })
  515. await ctx.parallel('session/flush', session)
  516. const loaded = await ctx.sessionPersistence.load(SessionId('roundtrip-surface'))
  517. expect(loaded.events).toHaveLength(4)
  518. const um = loaded.events[1]!
  519. expect((um as SurfaceEvent).surfaceOp).toBe('append')
  520. expect((um as SurfaceEvent).sourceEventSeqs).toBeUndefined()
  521. const am = loaded.events[2]!
  522. expect((am as SurfaceEvent).surfaceOp).toBe('append')
  523. expect((am as SurfaceEvent).sourceEventSeqs).toEqual([0])
  524. await fiber.dispose()
  525. })
  526. it('persists events with surfaceOp but no sourceEventSeqs (covers null branch in surfaceBindings)', async () => {
  527. const ctx = new Context()
  528. await ctx.plugin(SessionStore)
  529. const fiber = await ctx.plugin(SessionPersistenceSqlite, { path: ':memory:' })
  530. const session = ctx.sessions.create(SessionId('surface-noseq'))
  531. session.append('turn/start', { turn: 1, trigger: { kind: 'message', source: { kind: 'user' } } })
  532. session.append('steering/message', { turn: 1, content: [], source: { kind: 'user' } }, { surfaceOp: 'append' })
  533. session.append('turn/end', { turn: 1, reason: { kind: 'completed' } })
  534. await ctx.parallel('session/flush', session)
  535. const loaded = await ctx.sessionPersistence.load(SessionId('surface-noseq'))
  536. expect((loaded.events[1]! as SurfaceEvent).surfaceOp).toBe('append')
  537. expect((loaded.events[1]! as SurfaceEvent).sourceEventSeqs).toBeUndefined()
  538. await fiber.dispose()
  539. })
  540. })