transcript-adapter.spec.ts 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455
  1. /**
  2. * TranscriptAdapter over the raw append-only window: log-ordered projection of
  3. * append-origin events, one marker per landed compaction, replacement copies
  4. * hidden, command-lifecycle folding, node/array identity, call pairing, and
  5. * host-provided wire views.
  6. */
  7. import { createUserMessage, CallId, createMessage, createToolResultMessage } from '@deepseek-ai/dsh-llm'
  8. import { describe, expect, it } from 'vitest'
  9. import type { SessionEvent } from '@deepseek-ai/dsh-session/types'
  10. import { TranscriptAdapter } from '../src/client/sessions/transcript-adapter.ts'
  11. import { ev, plainTurn } from './event-script.ts'
  12. const at = (seq: number, e: Record<string, unknown>): SessionEvent =>
  13. ({ seq, time: 1_700_000_000_000 + seq, ...e }) as unknown as SessionEvent
  14. /** A `compact/summary` provenance event (log-only, no surfaceOp). */
  15. function compactSummary(seq: number, summary: unknown = [{ type: 'text', text: '# 摘要\n\n保留事实' }]): SessionEvent {
  16. return at(seq, {
  17. type: 'compact/summary',
  18. data: {
  19. summary,
  20. shadowedRange: { start: 1, end: 3 },
  21. shadowedSeqs: [1, 3],
  22. shadowedTokenCount: 100,
  23. provider: 'fake',
  24. model: 'compact-1',
  25. },
  26. })
  27. }
  28. /** The replacement user message a compaction backend lands (the checkpoint). */
  29. function checkpoint(
  30. seq: number,
  31. summarySeq: number,
  32. { start = 1, end = 3, sourceEventSeqs = [summarySeq, start, end] }: {
  33. start?: number
  34. end?: number
  35. sourceEventSeqs?: number[]
  36. } = {},
  37. ): SessionEvent {
  38. return at(seq, {
  39. type: 'user/message',
  40. surfaceOp: { op: 'replace', start, end },
  41. sourceEventSeqs,
  42. data: createUserMessage({
  43. content: [{ type: 'text', text: '<context_checkpoint>model only</context_checkpoint>' }],
  44. source: { kind: 'plugin', plugin: 'compact' },
  45. }),
  46. })
  47. }
  48. describe('TranscriptAdapter', () => {
  49. it('projects a window starting past seq 0 at its own log positions', () => {
  50. const adapter = new TranscriptAdapter()
  51. adapter.reset(plainTurn(100, 5, '偏移问', '偏移答'))
  52. expect(adapter.nodes().map(n => [n.kind, n.seq])).toEqual([['user', 101], ['assistant', 103]])
  53. })
  54. it('appends incrementally keeping old node references (materialize-once identity)', () => {
  55. const adapter = new TranscriptAdapter()
  56. adapter.reset(plainTurn(0, 0, 'a', 'b'))
  57. const first = adapter.nodes()
  58. adapter.append(ev.user(6, '追加'))
  59. const second = adapter.nodes()
  60. expect(second).toHaveLength(3)
  61. expect(second[0]).toBe(first[0])
  62. expect(second[1]).toBe(first[1])
  63. expect(second).not.toBe(first) // a real change swaps the array
  64. })
  65. it('keeps the array reference across a chunk storm and swaps it when a node lands', () => {
  66. const adapter = new TranscriptAdapter()
  67. adapter.reset(plainTurn(0, 0, 'a', 'b'))
  68. const settled = adapter.nodes()
  69. adapter.append(ev.chunkStart(6, 1))
  70. expect(adapter.nodes()).toBe(settled)
  71. adapter.append(ev.chunkText(7, 1, '流式'))
  72. expect(adapter.nodes()).toBe(settled)
  73. adapter.append(ev.assistant(8, 1, '流式完成'))
  74. const finalized = adapter.nodes()
  75. expect(finalized).not.toBe(settled)
  76. expect(finalized.at(-1)).toMatchObject({ kind: 'assistant', seq: 8 })
  77. })
  78. it('materializes every append-origin variant with field mapping', () => {
  79. const adapter = new TranscriptAdapter()
  80. adapter.reset([
  81. ev.user(0, '用户'),
  82. ev.assistant(1, 0, '助手'),
  83. at(2, { type: 'user/message', surfaceOp: 'append', data: createUserMessage({
  84. content: [{ type: 'text', text: '上下文' }], source: { kind: 'plugin', plugin: 'p' },
  85. }) }),
  86. ev.toolCall(3, 0, 'c1', 'echo', '{"x":1}'),
  87. ev.toolResult(4, 0, 'c1', '结果'),
  88. ])
  89. const nodes = adapter.nodes()
  90. expect(nodes.map(n => n.kind)).toEqual(['user', 'assistant', 'context', 'tool-result'])
  91. expect(nodes.find(n => n.kind === 'tool-result')).toMatchObject({
  92. callId: 'c1', call: { name: 'echo', argsRaw: '{"x":1}' }, isError: false,
  93. })
  94. })
  95. it('skips events core does not call surface-eligible, marker or not', () => {
  96. // The transcript is the append-origin surface, so log-only events (a chunk,
  97. // a turn boundary, a compact/* provenance record) and a future type core
  98. // has not admitted contribute no node.
  99. const adapter = new TranscriptAdapter()
  100. adapter.reset([
  101. ev.turnStart(0, 1),
  102. at(1, { type: 'notice/message', surfaceOp: 'append', data: { note: 1 } }),
  103. compactSummary(2),
  104. ev.user(3, '唯一的一条'),
  105. ev.turnEnd(4, 1),
  106. ])
  107. expect(adapter.nodes().map(n => [n.kind, n.seq])).toEqual([['user', 3]])
  108. })
  109. describe('compaction markers', () => {
  110. it('keeps the original messages and full tool output, hiding replacement copies', () => {
  111. const adapter = new TranscriptAdapter()
  112. adapter.reset([
  113. ev.user(0, '原始问题'),
  114. ev.assistant(1, 0, '原始回答'),
  115. ev.toolCall(4, 0, 'c1', 'echo', '{}'),
  116. ev.toolResult(5, 0, 'c1', '完整工具输出'),
  117. // A pruned tool/result copy: rewrites one node for the model, marks nothing.
  118. at(6, { type: 'tool/result', surfaceOp: { op: 'replace', start: 5, end: 5 }, sourceEventSeqs: [5], data: {
  119. turn: 0, step: 0,
  120. message: createToolResultMessage({ callId: CallId('c1'), content: [{ type: 'text', text: '已裁剪' }], isError: false }),
  121. } }),
  122. compactSummary(7),
  123. checkpoint(8, 7, { start: 1, end: 5, sourceEventSeqs: [7, 1, 5] }),
  124. // A regenerated assistant/message: also a silent model-only rewrite.
  125. at(9, { type: 'assistant/message', surfaceOp: { op: 'replace', start: 8, end: 8 }, sourceEventSeqs: [8], data: {
  126. turn: 0, step: 0,
  127. message: createMessage({
  128. role: 'assistant',
  129. content: [{ type: 'text', text: '通用 replacement 副本' }],
  130. source: { kind: 'model', ...{ provider: 'x', model: 'copy' } },
  131. }),
  132. } }),
  133. ])
  134. const nodes = adapter.nodes()
  135. expect(nodes.map(n => [n.kind, n.seq])).toEqual([
  136. ['user', 0], ['assistant', 1], ['tool-result', 5], ['compaction', 8],
  137. ])
  138. expect(nodes[2]).toMatchObject({ kind: 'tool-result', content: [{ type: 'text', text: '完整工具输出' }] })
  139. expect(nodes[3]).toMatchObject({ kind: 'compaction', summary: '# 摘要\n\n保留事实' })
  140. })
  141. it('adds one marker per landed compaction, in log order', () => {
  142. const adapter = new TranscriptAdapter()
  143. adapter.reset([
  144. ev.user(0, 'a'),
  145. compactSummary(1, [{ type: 'text', text: 'first' }]),
  146. checkpoint(2, 1, { start: 0, end: 0, sourceEventSeqs: [1, 0] }),
  147. ev.user(3, 'b'),
  148. compactSummary(4, [{ type: 'text', text: 'second' }]),
  149. checkpoint(5, 4, { start: 2, end: 3, sourceEventSeqs: [4, 2, 3] }),
  150. ])
  151. expect(adapter.nodes().filter(n => n.kind === 'compaction')).toEqual([
  152. { kind: 'compaction', seq: 2, time: 1_700_000_000_002, summary: 'first' },
  153. { kind: 'compaction', seq: 5, time: 1_700_000_000_005, summary: 'second' },
  154. ])
  155. })
  156. it('renders the marker when the shadowed range is outside the window and logs nothing', () => {
  157. // The pagination hole A1 left open: quota is no longer spent on
  158. // replacement copies, so a page can carry a checkpoint whose
  159. // surfaceOp.start lies below the window head. The old surface fold threw
  160. // on the missing range and degraded with a console error; a log-ordered
  161. // projection has no range to resolve.
  162. const adapter = new TranscriptAdapter()
  163. const noise = { error: console.error, warn: console.warn }
  164. const logged: unknown[] = []
  165. console.error = (...args: unknown[]) => logged.push(args)
  166. console.warn = (...args: unknown[]) => logged.push(args)
  167. try {
  168. adapter.reset([
  169. compactSummary(80, [{ type: 'text', text: '窗外范围' }]),
  170. checkpoint(81, 80, { start: 3, end: 40, sourceEventSeqs: [80, 3, 40] }),
  171. ev.user(82, '压缩后的新问题'),
  172. ])
  173. expect(adapter.nodes().map(n => [n.kind, n.seq])).toEqual([['compaction', 81], ['user', 82]])
  174. expect(adapter.nodes()[0]).toMatchObject({ summary: '窗外范围' })
  175. } finally {
  176. console.error = noise.error
  177. console.warn = noise.warn
  178. }
  179. expect(logged).toEqual([])
  180. })
  181. it('treats an APPENDING plugin-sourced user/message as injected context, not a compaction', () => {
  182. // A session-reference card carries the same plugin source shape; only the
  183. // replacement marker makes an event a checkpoint.
  184. const adapter = new TranscriptAdapter()
  185. adapter.reset([
  186. at(0, { type: 'user/message', surfaceOp: 'append', data: createUserMessage({
  187. content: [{ type: 'text', text: '注入的上下文' }],
  188. source: { kind: 'plugin', plugin: 'compact' },
  189. }) }),
  190. ])
  191. expect(adapter.nodes()).toMatchObject([{ kind: 'context', seq: 0 }])
  192. })
  193. it('ignores a foreign plugin s replacement user/message', () => {
  194. const adapter = new TranscriptAdapter()
  195. adapter.reset([
  196. ev.user(0, '保留'),
  197. at(1, { type: 'user/message', surfaceOp: { op: 'replace', start: 0, end: 0 }, sourceEventSeqs: [0], data: createUserMessage({
  198. content: [{ type: 'text', text: '别的插件重写' }],
  199. source: { kind: 'plugin', plugin: 'not-compact' },
  200. }) }),
  201. ])
  202. expect(adapter.nodes().map(n => [n.kind, n.seq])).toEqual([['user', 0]])
  203. })
  204. it.each([
  205. ['absent provenance', undefined],
  206. ['text-less summary blocks', compactSummary(1, [{ type: 'image', data: 'nope' }])],
  207. ['a whitespace-only summary', compactSummary(1, [{ type: 'text', text: ' ' }])],
  208. ['an empty summary array', compactSummary(1, [])],
  209. ['a non-array summary', compactSummary(1, 'plain string')],
  210. ])('degrades %s to a non-expandable marker', (_label, summary) => {
  211. const adapter = new TranscriptAdapter()
  212. adapter.reset([
  213. ...(summary === undefined ? [] : [summary]),
  214. checkpoint(2, 1, { start: 0, end: 0, sourceEventSeqs: [1, 0] }),
  215. ])
  216. expect(adapter.nodes()).toEqual([
  217. { kind: 'compaction', seq: 2, time: 1_700_000_000_002, summary: null },
  218. ])
  219. })
  220. it('keeps the text of a mixed-block summary, skipping the blocks it cannot render', () => {
  221. // ContentBlock is merge-extensible and the payload type is ContentBlock[],
  222. // so a non-text block must not discard recoverable text beside it.
  223. const adapter = new TranscriptAdapter()
  224. adapter.reset([
  225. compactSummary(1, [{ type: 'text', text: '可用摘要' }, { type: 'image', data: 'nope' }]),
  226. checkpoint(2, 1, { start: 0, end: 0, sourceEventSeqs: [1, 0] }),
  227. ])
  228. expect(adapter.nodes()).toEqual([
  229. { kind: 'compaction', seq: 2, time: 1_700_000_000_002, summary: '可用摘要' },
  230. ])
  231. })
  232. it('leaves the summary null when the checkpoint records no provenance at all', () => {
  233. const adapter = new TranscriptAdapter()
  234. adapter.reset([at(2, {
  235. type: 'user/message',
  236. surfaceOp: { op: 'replace', start: 0, end: 0 },
  237. data: createUserMessage({
  238. content: [{ type: 'text', text: '<context_checkpoint>x</context_checkpoint>' }],
  239. source: { kind: 'plugin', plugin: 'compact' },
  240. }),
  241. })])
  242. expect(adapter.nodes()).toEqual([{ kind: 'compaction', seq: 2, time: 1_700_000_000_002, summary: null }])
  243. })
  244. it('skips a non-summary provenance seq before reaching the real one', () => {
  245. const adapter = new TranscriptAdapter()
  246. adapter.reset([
  247. ev.user(0, '被压缩的问题'),
  248. at(1, { type: 'compact/start', data: { turn: 0 } }),
  249. compactSummary(2, [{ type: 'text', text: '第三个来源才是摘要' }]),
  250. checkpoint(3, 2, { start: 0, end: 0, sourceEventSeqs: [1, 2, 0] }),
  251. ])
  252. expect(adapter.nodes().at(-1)).toMatchObject({ kind: 'compaction', summary: '第三个来源才是摘要' })
  253. })
  254. it('resolves the summary once an older page supplies the provenance', () => {
  255. const adapter = new TranscriptAdapter()
  256. const landed = checkpoint(8, 7, { start: 0, end: 0, sourceEventSeqs: [7, 0] })
  257. adapter.reset([landed])
  258. expect(adapter.nodes()[0]).toMatchObject({ kind: 'compaction', summary: null })
  259. adapter.reset([compactSummary(7, [{ type: 'text', text: '分页补齐的摘要' }]), landed])
  260. expect(adapter.nodes()[0]).toMatchObject({ kind: 'compaction', summary: '分页补齐的摘要' })
  261. })
  262. it('creates the marker on the live append path', () => {
  263. const adapter = new TranscriptAdapter()
  264. adapter.reset(plainTurn(0, 0, 'a', 'b'))
  265. adapter.append(compactSummary(6, [{ type: 'text', text: '直播摘要' }]))
  266. adapter.append(checkpoint(7, 6, { start: 1, end: 3, sourceEventSeqs: [6, 1, 3] }))
  267. const nodes = adapter.nodes()
  268. // The compacted history is still there; the marker is one more row after it.
  269. expect(nodes.map(n => [n.kind, n.seq])).toEqual([['user', 1], ['assistant', 3], ['compaction', 7]])
  270. expect(nodes.at(-1)).toMatchObject({ kind: 'compaction', seq: 7, summary: '直播摘要' })
  271. })
  272. })
  273. it('returns call:null for a tool-result whose call fell outside the window', () => {
  274. const adapter = new TranscriptAdapter()
  275. adapter.reset([ev.toolResult(50, 3, 'outside-call', '孤儿结果')])
  276. expect(adapter.nodes()[0]).toMatchObject({ kind: 'tool-result', callId: 'outside-call', call: null })
  277. })
  278. it('materializes a tool-result error field when present', () => {
  279. const adapter = new TranscriptAdapter()
  280. adapter.reset([
  281. at(0, { type: 'tool/result', surfaceOp: 'append', data: {
  282. turn: 0, step: 0,
  283. message: createToolResultMessage({ callId: CallId('c1'), content: [], isError: true }),
  284. error: { name: 'Boom', code: 'boom' },
  285. } }),
  286. ])
  287. expect(adapter.nodes()[0]).toMatchObject({ kind: 'tool-result', isError: true, error: { code: 'boom' } })
  288. })
  289. it('attaches wire views to the materialized result node', () => {
  290. const adapter = new TranscriptAdapter()
  291. const callView = { for: 'call' as const, view: { card: 'terminal' as const, command: 'ls' } }
  292. const resultView = { for: 'result' as const, view: { card: 'generic' as const, title: '完成' } }
  293. adapter.reset([
  294. ev.toolCall(0, 1, 'c1', 'bash', '{"cmd":"ls"}'),
  295. ev.toolResult(1, 1, 'c1', 'listing'),
  296. ], [callView, resultView] as never)
  297. expect(adapter.nodes().find(n => n.kind === 'tool-result')).toMatchObject({
  298. callView: { card: 'terminal' }, resultView: { card: 'generic', title: '完成' },
  299. })
  300. })
  301. it('attaches views on the live append path and defaults to null without views', () => {
  302. const adapter = new TranscriptAdapter()
  303. adapter.reset(plainTurn(0, 0, 'a', 'b')) // no views argument
  304. adapter.append(ev.toolCall(6, 1, 'c2', 'echo', '{}'), { for: 'call', view: { card: 'generic', title: '回声' } } as never)
  305. adapter.append(ev.toolResult(7, 1, 'c2', 'ok')) // no view on the result
  306. expect(adapter.nodes().find(n => n.kind === 'tool-result')).toMatchObject({
  307. callView: { title: '回声' }, resultView: null,
  308. })
  309. })
  310. it('leaves callView null when the paired call fell outside the window (cross-page break)', () => {
  311. const adapter = new TranscriptAdapter()
  312. const resultView = { for: 'result' as const, view: { card: 'generic' as const, title: '孤儿' } }
  313. adapter.reset([ev.toolResult(50, 3, 'outside', '窗外配对')], [resultView] as never)
  314. expect(adapter.nodes()[0]).toMatchObject({
  315. kind: 'tool-result', call: null, callView: null, resultView: { title: '孤儿' },
  316. })
  317. })
  318. describe('command lifecycle nodes', () => {
  319. it('folds a run/done pair into one settled node merged into flow order by seq', () => {
  320. const adapter = new TranscriptAdapter()
  321. adapter.reset([
  322. ev.user(0, '先说话'),
  323. ev.commandRun(1, 'cmd-1', 'plan'),
  324. ev.commandDone(2, 'cmd-1', 'success', '已进入 plan mode'),
  325. ev.assistant(3, 0, '然后回答'),
  326. ])
  327. const nodes = adapter.nodes()
  328. expect(nodes.map(n => [n.kind, n.seq])).toEqual([['user', 0], ['command', 1], ['assistant', 3]])
  329. expect(nodes[1]).toMatchObject({
  330. kind: 'command', commandId: 'cmd-1', name: 'plan', args: '',
  331. outcome: { kind: 'success', text: '已进入 plan mode' },
  332. })
  333. })
  334. it('renders a run with no done as still executing (outcome null)', () => {
  335. const adapter = new TranscriptAdapter()
  336. adapter.reset([ev.commandRun(0, 'cmd-2', 'goal', ' ship it')])
  337. expect(adapter.nodes()[0]).toMatchObject({ kind: 'command', name: 'goal', args: ' ship it', outcome: null })
  338. })
  339. it('soft-falls a done-only window into a node built from the done (cross-window cut)', () => {
  340. const adapter = new TranscriptAdapter()
  341. adapter.reset([ev.commandDone(80, 'cmd-3', 'error', '失败了')])
  342. expect(adapter.nodes()[0]).toMatchObject({
  343. kind: 'command', seq: 80, commandId: 'cmd-3', name: null, args: null,
  344. outcome: { kind: 'error', text: '失败了' },
  345. })
  346. })
  347. it('settles a live-appended done in place, keeping the node at the run seq', () => {
  348. const adapter = new TranscriptAdapter()
  349. adapter.reset(plainTurn(0, 0, 'q', 'a'))
  350. adapter.append(ev.commandRun(6, 'cmd-4', 'clear'))
  351. const running = adapter.nodes().find(n => n.kind === 'command')
  352. expect(running).toMatchObject({ outcome: null })
  353. adapter.append(ev.commandDone(7, 'cmd-4'))
  354. const settled = adapter.nodes().find(n => n.kind === 'command')
  355. expect(settled).toMatchObject({ seq: 6, outcome: { kind: 'success' } })
  356. // Settlement replaced the node object rather than mutating the published one.
  357. expect(settled).not.toBe(running)
  358. })
  359. it('tails command nodes whose seq is past every transcript node', () => {
  360. const adapter = new TranscriptAdapter()
  361. adapter.reset([ev.user(0, '问'), ev.commandRun(1, 'cmd-tail', 'plan')])
  362. expect(adapter.nodes().map(n => n.kind)).toEqual(['user', 'command'])
  363. })
  364. it('renders the /compact row alongside the marker its own command produced', () => {
  365. // The row that reports the compaction is a command node; dropping command
  366. // folding would delete it together with every other slash-command row.
  367. const adapter = new TranscriptAdapter()
  368. adapter.reset([
  369. ev.user(0, '压缩前的问题'),
  370. ev.commandRun(1, 'cmd-compact', 'compact'),
  371. compactSummary(2, [{ type: 'text', text: '手动压缩摘要' }]),
  372. checkpoint(3, 2, { start: 0, end: 0, sourceEventSeqs: [2, 0] }),
  373. ev.commandDone(4, 'cmd-compact', 'success', '已压缩'),
  374. ])
  375. const nodes = adapter.nodes()
  376. expect(nodes.map(n => [n.kind, n.seq])).toEqual([['user', 0], ['command', 1], ['compaction', 3]])
  377. expect(nodes[1]).toMatchObject({ name: 'compact', outcome: { kind: 'success', text: '已压缩' } })
  378. })
  379. })
  380. describe('assistant timing', () => {
  381. const base = 1_700_000_000_000
  382. it('derives step timing across a window rebuild (start + first token + completion)', () => {
  383. const adapter = new TranscriptAdapter()
  384. adapter.reset([
  385. ev.turnStart(0, 0),
  386. ev.user(1, '问'),
  387. ev.stepStart(2, 0),
  388. ev.chunkStart(3, 0),
  389. ev.chunkText(4, 0, '答'),
  390. ev.chunkText(5, 0, '案'),
  391. ev.assistant(6, 0, '答案'),
  392. ev.turnEnd(7, 0),
  393. ])
  394. const assistant = adapter.nodes().find(n => n.kind === 'assistant')
  395. expect(assistant).toMatchObject({
  396. timing: { stepStartTime: base + 2, firstTokenTime: base + 4, completedTime: base + 6 },
  397. })
  398. })
  399. it('derives the same timing on the live append path, first token winning once', () => {
  400. const adapter = new TranscriptAdapter()
  401. adapter.reset([ev.user(0, '问')])
  402. adapter.append(ev.stepStart(1, 0))
  403. adapter.append(ev.chunkText(2, 0, '首'))
  404. adapter.append(ev.chunkText(3, 0, '次'))
  405. adapter.append(ev.assistant(4, 0, '首次'))
  406. const assistant = adapter.nodes().find(n => n.kind === 'assistant')
  407. expect(assistant).toMatchObject({
  408. timing: { stepStartTime: base + 1, firstTokenTime: base + 2, completedTime: base + 4 },
  409. })
  410. })
  411. it('soft-falls to null boundaries when the step opening fell outside the window', () => {
  412. const adapter = new TranscriptAdapter()
  413. adapter.reset([ev.assistant(100, 0, '被切窗的答案')])
  414. const assistant = adapter.nodes().find(n => n.kind === 'assistant')
  415. expect(assistant).toMatchObject({
  416. timing: { stepStartTime: null, firstTokenTime: null, completedTime: base + 100 },
  417. })
  418. })
  419. })
  420. })