sqlite.spec.ts 27 KB

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