sqlite.spec.ts 29 KB

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