| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- import { test } from 'node:test'
- import assert from 'node:assert/strict'
- import { promises as fs } from 'node:fs'
- import path from 'node:path'
- import { gotoChapter } from '../../../src/state-machine/flows/goto-chapter.js'
- import { makeGitBook, chapter } from '../_helper.js'
- function bookWithChapters() {
- return makeGitBook(
- { 'book.yaml': 'spec_version: "7.0"\n书名: 测\n' },
- {
- commits: [
- { message: 'ch(1): 起', files: { '定稿/正文/0001-起.md': chapter(1) } },
- { message: 'ch(2): 承', files: { '定稿/正文/0002-承.md': chapter(2) } },
- ],
- }
- )
- }
- test('回到第N章 confirm=false:列出将丢弃的提交', async () => {
- const { ctx, cleanup } = await bookWithChapters()
- try {
- const r = await gotoChapter(ctx, { chapterNum: 1, confirm: false })
- assert.equal(r.ok, true)
- assert.equal(r.needsConfirm, true)
- assert.ok(r.willLose.some((s) => s.includes('ch(2)')))
- } finally {
- await cleanup()
- }
- })
- test('回到第N章 confirm=true:reset 到该章 + 备份 ref,后续章消失', async () => {
- const { ctx, root, git, cleanup } = await bookWithChapters()
- try {
- const r = await gotoChapter(ctx, { chapterNum: 1, confirm: true })
- assert.equal(r.ok, true)
- assert.equal(r.reverted, true)
- await assert.rejects(() => fs.access(path.join(root, '定稿/正文/0002-承.md')))
- await fs.access(path.join(root, '定稿/正文/0001-起.md'))
- const { stdout } = await git(['rev-parse', '--verify', r.backupRef])
- assert.ok(stdout.trim().length >= 7)
- } finally {
- await cleanup()
- }
- })
- test('回到第N章:不存在的章 → ok=false', async () => {
- const { ctx, cleanup } = await bookWithChapters()
- try {
- const r = await gotoChapter(ctx, { chapterNum: 99, confirm: true })
- assert.equal(r.ok, false)
- } finally {
- await cleanup()
- }
- })
- test('P1-6:定稿有未登记手改 + confirm → 拒绝 reset(不丢手改)', async () => {
- const { ctx, root, git, cleanup } = await bookWithChapters()
- try {
- // 在已跟踪的第1章上手改(不提交)
- const path1 = path.join(root, '定稿/正文/0001-起.md')
- await fs.writeFile(path1, (await fs.readFile(path1, 'utf8')) + '\n手改了一句。', 'utf8')
- const r = await gotoChapter(ctx, { chapterNum: 1, confirm: true })
- assert.equal(r.ok, false, '脏树应拒绝 reset')
- assert.match(r.error, /手改/)
- // 手改仍在,未被抹掉(rescue ref 不含工作树,拒绝才安全)
- assert.ok((await fs.readFile(path1, 'utf8')).includes('手改了一句'), '手改应保留')
- // 第2章也仍在(未 reset)
- await fs.stat(path.join(root, '定稿/正文/0002-承.md'))
- void git
- } finally {
- await cleanup()
- }
- })
- test('R1:有进行中批次 → goto 直接拒绝,批次与定稿都原样', async () => {
- const { ctx, root, cleanup } = await bookWithChapters()
- try {
- const dir = path.join(root, '工作区', '待定稿', '0003-批内章')
- await fs.mkdir(dir, { recursive: true })
- await fs.writeFile(
- path.join(root, '工作区', '待定稿', '批次.json'),
- JSON.stringify({ 章列表: [{ 章号: 3, 标题: '批内章', 状态: '待审收', 目录: '0003-批内章' }] }),
- 'utf8'
- )
- const r = await gotoChapter(ctx, { chapterNum: 1, confirm: true })
- assert.equal(r.ok, false, '批次在场应拒绝回退')
- assert.match(r.error, /待定稿批次/)
- assert.match(r.error, /finalize-batch|batch-discard/)
- // 定稿未被 reset、批次原样
- await fs.access(path.join(root, '定稿/正文/0002-承.md'))
- await fs.access(dir)
- // needsConfirm 预览路径同样被拦(不给出误导性的"确认请带 confirm")
- const preview = await gotoChapter(ctx, { chapterNum: 1, confirm: false })
- assert.equal(preview.ok, false)
- assert.match(preview.error, /待定稿批次/)
- } finally {
- await cleanup()
- }
- })
|