Compare commits

..

2 Commits

Author SHA1 Message Date
bing 958bb18539 fix(ui): make chapter bridge manual-only and add release gate
Remove auto chapter-bridge prompt on book/chapter open so users trigger it from the cockpit. Fix AiPanel duplicate import that broke dev builds, and add release smoke tests plus test:release/test:ci scripts.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-09 19:09:18 +08:00
bing 8e5045b882 fix(test): stabilize E2E cockpit flow and add LM Studio novel integration test
Harden cockpit dismiss timing and global settings navigation in E2E helpers, tune short-chapter AI prompts for local models, fix electron-updater CJS loading, and add a 10-chapter auto-writing integration test against LM Studio.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-09 14:03:19 +08:00
32 changed files with 571 additions and 84 deletions
+2
View File
@@ -11,6 +11,8 @@ logs/
.DS_Store
Thumbs.db
release/
!tests/release/
!tests/release/**
*.novel
*.novel-all
test-results/
+4 -2
View File
@@ -76,8 +76,10 @@ npm run dev
```bash
npm run build
npm run test # 单元 / 集成测试
npm run test:e2e # E2E 测试(需先 build
npm run test:release # 发布前快速门禁:build + 导入/产物检查 + 启动冒烟 E2E
npm run test # 全量单元/集成(含 LM Studio 十章小说 IT,耗时长
npm run test:ci # 完整 CIbuild + 全量 UT/IT + 全量 E2E
npm run test:e2e # 仅 E2E(需先 build
```
**AI 相关测试前置条件**:本地 [LM Studio](http://127.0.0.1:1234) 需运行,模型默认 `gemma-4-e4b-it`(可通过环境变量 `BILIN_AI_MODEL` / `BILIN_AI_BASE_URL` 覆盖)。
+13 -6
View File
@@ -25,15 +25,22 @@ async function createAndOpenBook(page: Page, name = 'AI测试书'): Promise<void
await page.locator('.dialog-content input').first().fill(name)
await page.getByRole('button', { name: '创建' }).click()
await expect(page.locator('#editor-layout')).toBeVisible({ timeout: 15_000 })
await dismissCockpitIfOpen(page)
}
async function dismissCockpitIfOpen(page: Page): Promise<void> {
const cockpit = page.locator('[data-testid="cockpit-modal"]')
try {
await cockpit.waitFor({ state: 'visible', timeout: 15_000 })
await cockpit.locator('.modal-close').click()
await expect(cockpit).toBeHidden({ timeout: 5000 })
} catch {
/* cockpit did not open */
}
}
async function openGlobalSettings(page: Page): Promise<void> {
const topSettings = page.locator('#topbar button.top-btn').filter({ hasText: '⚙' })
if (await topSettings.isVisible()) {
await topSettings.click()
} else {
await page.getByRole('button', { name: /系统设置/ }).click()
}
await page.getByTestId('topbar-settings').click()
await expect(page.locator('#settings-page')).toBeVisible({ timeout: 10_000 })
}
+6 -2
View File
@@ -28,9 +28,12 @@ async function skipOnboarding(page: Page): Promise<void> {
async function dismissCockpitIfOpen(page: Page): Promise<void> {
const cockpit = page.locator('[data-testid="cockpit-modal"]')
if (await cockpit.isVisible({ timeout: 3000 }).catch(() => false)) {
await page.locator('[data-testid="cockpit-modal"] .modal-close').click()
try {
await cockpit.waitFor({ state: 'visible', timeout: 15_000 })
await cockpit.locator('.modal-close').click()
await expect(cockpit).toBeHidden({ timeout: 5000 })
} catch {
/* cockpit did not open */
}
}
@@ -43,6 +46,7 @@ async function createAndOpenBook(page: Page, name: string): Promise<void> {
}
async function ensureChapterEditor(page: Page): Promise<void> {
await dismissCockpitIfOpen(page)
const items = page.locator('.chapter-item')
if ((await items.count()) === 0) {
await page.getByRole('button', { name: '+ 新章' }).click()
+21 -3
View File
@@ -20,7 +20,19 @@ async function skipOnboarding(page: Page): Promise<void> {
}
}
async function dismissCockpitIfOpen(page: Page): Promise<void> {
const cockpit = page.locator('[data-testid="cockpit-modal"]')
try {
await cockpit.waitFor({ state: 'visible', timeout: 15_000 })
await cockpit.locator('.modal-close').click()
await expect(cockpit).toBeHidden({ timeout: 5000 })
} catch {
/* cockpit did not open */
}
}
async function ensureChapterEditor(page: Page): Promise<void> {
await dismissCockpitIfOpen(page)
await page.getByRole('button', { name: '+ 新章' }).click()
await expect(page.locator('.ProseMirror')).toBeVisible({ timeout: 10_000 })
}
@@ -30,6 +42,7 @@ async function openBookWithContent(page: Page): Promise<void> {
await page.locator('.dialog-content input').first().fill('自动测试书')
await page.getByRole('button', { name: '创建' }).click()
await expect(page.locator('#editor-layout')).toBeVisible({ timeout: 15_000 })
await dismissCockpitIfOpen(page)
await ensureChapterEditor(page)
const editor = page.locator('.ProseMirror')
await editor.click()
@@ -48,8 +61,11 @@ async function openAutoPanel(page: Page): Promise<void> {
async function planAutoScenes(page: Page): Promise<void> {
await page.getByTestId('auto-goal-input').fill('林远通过入门考核,展现天赋震惊众人')
const wordInputs = page.locator('.auto-word-range input')
await wordInputs.nth(0).fill('180')
await wordInputs.nth(1).fill('220')
await page.getByTestId('auto-plan-scenes').click()
await expect(page.getByTestId('auto-start-generate')).toBeVisible({ timeout: 240_000 })
await expect(page.getByTestId('auto-start-generate')).toBeVisible({ timeout: 360_000 })
}
async function generateOneAutoScene(page: Page): Promise<void> {
@@ -68,6 +84,7 @@ async function generateOneAutoScene(page: Page): Promise<void> {
}
test.describe('Auto writing', () => {
test.describe.configure({ retries: 1 })
let userDataDir: string
test.beforeEach(() => {
@@ -92,13 +109,14 @@ test.describe('Auto writing', () => {
await page.locator('.dialog-content input').first().fill('空书')
await page.getByRole('button', { name: '创建' }).click()
await expect(page.locator('#editor-layout')).toBeVisible({ timeout: 15_000 })
await dismissCockpitIfOpen(page)
await page.getByTestId('panel-tab-ai').click()
await expect(page.getByTestId('ai-mode-tab-auto')).toBeDisabled({ timeout: 10_000 })
await app.close()
})
test('E2E-AUTO-01: auto flow creates chapter', async () => {
test.setTimeout(300_000)
test.setTimeout(600_000)
const app = await launchApp(userDataDir)
const page = await app.firstWindow()
await skipOnboarding(page)
@@ -113,7 +131,7 @@ test.describe('Auto writing', () => {
})
test('E2E-AUTO-02: pause and handoff to interactive', async () => {
test.setTimeout(300_000)
test.setTimeout(600_000)
const app = await launchApp(userDataDir)
const page = await app.firstWindow()
await skipOnboarding(page)
+33 -15
View File
@@ -27,9 +27,12 @@ async function skipOnboarding(page: Page): Promise<void> {
async function dismissCockpitIfOpen(page: Page): Promise<void> {
const cockpit = page.locator('[data-testid="cockpit-modal"]')
if (await cockpit.isVisible({ timeout: 3000 }).catch(() => false)) {
await page.locator('[data-testid="cockpit-modal"] .modal-close').click()
try {
await cockpit.waitFor({ state: 'visible', timeout: 15_000 })
await cockpit.locator('.modal-close').click()
await expect(cockpit).toBeHidden({ timeout: 5000 })
} catch {
/* cockpit did not open */
}
}
@@ -47,7 +50,9 @@ async function createCharacterSetting(page: Page, name: string): Promise<void> {
await page.getByTestId('setting-name-input').fill(name)
await page.locator('.dialog-content select').selectOption('character')
await page.getByRole('button', { name: '创建' }).click()
await expect(page.getByTestId(/setting-item-/)).toContainText(name, { timeout: 10_000 })
await expect(page.getByTestId(/setting-item-/).filter({ hasText: name })).toBeVisible({
timeout: 10_000
})
}
test.describe('Character graph P7', () => {
@@ -75,11 +80,15 @@ test.describe('Character graph P7', () => {
await createCharacterSetting(page, '角色甲')
await createCharacterSetting(page, '角色乙')
await page.getByText('角色甲').click()
await page.getByTestId(/setting-item-/).filter({ hasText: '角色甲' }).click()
await expect(page.getByTestId('setting-relationships')).toBeVisible({ timeout: 10_000 })
await page.getByTestId('setting-relationship-add').click()
await page.locator('.setting-relationship-form select').selectOption({ label: '角色乙' })
await page.locator('.setting-relationship-form input[type="text"]').fill('挚友')
await expect(page.locator('.setting-relationship-form select')).toBeVisible({ timeout: 10_000 })
await page.locator('.setting-relationship-form select').selectOption({ index: 1 })
await expect(page.locator('.setting-relationship-form input.form-control')).toBeVisible({
timeout: 10_000
})
await page.locator('.setting-relationship-form input.form-control').fill('挚友')
await page.locator('.setting-relationship-form .btn-primary').click()
await expect(page.getByTestId('setting-relationships')).toContainText('挚友')
@@ -98,21 +107,30 @@ test.describe('Character graph P7', () => {
await createCharacterSetting(page, '节点A')
await createCharacterSetting(page, '节点B')
await page.getByText('节点A').click()
await page.getByTestId(/setting-item-/).filter({ hasText: '节点A' }).click()
await page.getByTestId('setting-relationship-add').click()
await page.locator('.setting-relationship-form select').selectOption({ label: '节点B' })
await page.locator('.setting-relationship-form input[type="text"]').fill('同门')
await expect(page.locator('.setting-relationship-form select')).toBeVisible({ timeout: 10_000 })
await page.locator('.setting-relationship-form select').selectOption({ index: 1 })
await expect(page.locator('.setting-relationship-form input.form-control')).toBeVisible({
timeout: 10_000
})
await page.locator('.setting-relationship-form input.form-control').fill('同门')
await page.locator('.setting-relationship-form .btn-primary').click()
await page.getByTestId('setting-open-graph').click()
await expect(page.getByTestId('character-graph-cy')).toBeVisible({ timeout: 10_000 })
const cyBox = await page.getByTestId('character-graph-cy').boundingBox()
expect(cyBox).toBeTruthy()
await page.getByTestId('character-graph-cy').click({
position: { x: (cyBox!.width ?? 200) / 2, y: (cyBox!.height ?? 200) / 2 }
await page.evaluate(() => {
const el = document.querySelector('[data-testid="character-graph-cy"]') as HTMLElement & {
__bilinCy?: { nodes: () => { trigger: (e: string) => void }[] }
}
const cy = el?.__bilinCy
if (!cy) throw new Error('cytoscape not ready')
const nodes = cy.nodes()
if (!nodes.length) throw new Error('no graph nodes')
nodes[0]!.trigger('tap')
})
await expect(page.getByTestId('character-graph-sidebar')).toContainText(/节点/, {
timeout: 5000
await expect(page.getByTestId('character-graph-sidebar')).toContainText(/节点A|节点B/, {
timeout: 10_000
})
await app.close()
})
+12 -3
View File
@@ -27,9 +27,12 @@ async function skipOnboarding(page: Page): Promise<void> {
async function dismissCockpitIfOpen(page: Page): Promise<void> {
const cockpit = page.locator('[data-testid="cockpit-modal"]')
if (await cockpit.isVisible({ timeout: 3000 }).catch(() => false)) {
await page.locator('[data-testid="cockpit-modal"] .modal-close').click()
try {
await cockpit.waitFor({ state: 'visible', timeout: 15_000 })
await cockpit.locator('.modal-close').click()
await expect(cockpit).toBeHidden({ timeout: 5000 })
} catch {
/* cockpit did not open */
}
}
@@ -133,7 +136,7 @@ test.describe('Cockpit & Knowledge P5', () => {
await app.close()
})
test('E2E-BRIDGE-01: new chapter triggers bridge modal', async () => {
test('E2E-BRIDGE-01: bridge modal opens from cockpit manually', async () => {
const app = await launchApp(userDataDir)
const page = await app.firstWindow()
await skipOnboarding(page)
@@ -147,6 +150,9 @@ test.describe('Cockpit & Knowledge P5', () => {
await dismissCockpitIfOpen(page)
await page.getByRole('button', { name: '+ 新章' }).click()
await dismissCockpitIfOpen(page)
await expect(page.locator('[data-testid="bridge-modal"]')).toBeHidden({ timeout: 3000 })
await page.locator('[data-testid="topbar-cockpit"]').click()
await page.locator('[data-testid="cockpit-bridge-check"]').click()
await expect(page.locator('[data-testid="bridge-modal"]')).toBeVisible({ timeout: 10_000 })
await expect(page.locator('[data-testid="bridge-previous-tail"]')).toBeVisible({ timeout: 60_000 })
await expect(page.locator('[data-testid="bridge-previous-tail"]')).not.toHaveText('(无)')
@@ -184,6 +190,9 @@ test.describe('Cockpit & Knowledge P5', () => {
await dismissCockpitIfOpen(page)
await page.getByRole('button', { name: '+ 新章' }).click()
await dismissCockpitIfOpen(page)
await expect(page.locator('[data-testid="bridge-modal"]')).toBeHidden({ timeout: 3000 })
await page.locator('[data-testid="topbar-cockpit"]').click()
await page.locator('[data-testid="cockpit-bridge-check"]').click()
await expect(page.locator('[data-testid="bridge-modal"]')).toBeVisible({ timeout: 15_000 })
await expect(page.locator('[data-testid="bridge-ai-suggestion"]')).not.toBeEmpty({ timeout: 240_000 })
await app.close()
+11 -2
View File
@@ -23,12 +23,20 @@ export async function skipOnboarding(page: Page): Promise<void> {
export async function dismissCockpitIfOpen(page: Page): Promise<void> {
const cockpit = page.locator('[data-testid="cockpit-modal"]')
if (await cockpit.isVisible({ timeout: 3000 }).catch(() => false)) {
await page.locator('[data-testid="cockpit-modal"] .modal-close').click()
try {
await cockpit.waitFor({ state: 'visible', timeout: 15_000 })
await cockpit.locator('.modal-close').click()
await expect(cockpit).toBeHidden({ timeout: 5000 })
} catch {
/* cockpit did not open */
}
}
export async function openGlobalSettings(page: Page): Promise<void> {
await page.getByTestId('topbar-settings').click()
await expect(page.locator('#settings-page')).toBeVisible({ timeout: 10_000 })
}
export async function createBookAndOpenEditor(page: Page, name: string): Promise<void> {
await page.getByRole('button', { name: /新建书籍/ }).first().click()
await page.locator('.dialog-content input').first().fill(name)
@@ -38,6 +46,7 @@ export async function createBookAndOpenEditor(page: Page, name: string): Promise
}
export async function ensureChapterEditor(page: Page): Promise<void> {
await dismissCockpitIfOpen(page)
const editor = page.locator('.ProseMirror')
if (await editor.isVisible().catch(() => false)) return
await page.getByRole('button', { name: '+ 新章' }).click()
+21 -5
View File
@@ -20,7 +20,19 @@ async function skipOnboarding(page: Page): Promise<void> {
}
}
async function dismissCockpitIfOpen(page: Page): Promise<void> {
const cockpit = page.locator('[data-testid="cockpit-modal"]')
try {
await cockpit.waitFor({ state: 'visible', timeout: 15_000 })
await cockpit.locator('.modal-close').click()
await expect(cockpit).toBeHidden({ timeout: 5000 })
} catch {
/* cockpit did not open */
}
}
async function ensureChapterEditor(page: Page): Promise<void> {
await dismissCockpitIfOpen(page)
await page.getByRole('button', { name: '+ 新章' }).click()
await expect(page.locator('.ProseMirror')).toBeVisible({ timeout: 10_000 })
}
@@ -30,6 +42,7 @@ async function openBookWithContent(page: Page): Promise<void> {
await page.locator('.dialog-content input').first().fill('交互测试书')
await page.getByRole('button', { name: '创建' }).click()
await expect(page.locator('#editor-layout')).toBeVisible({ timeout: 15_000 })
await dismissCockpitIfOpen(page)
await ensureChapterEditor(page)
const editor = page.locator('.ProseMirror')
await editor.click()
@@ -39,6 +52,7 @@ async function openBookWithContent(page: Page): Promise<void> {
}
test.describe('Interactive writing', () => {
test.describe.configure({ retries: 1 })
let userDataDir: string
test.beforeEach(() => {
@@ -63,13 +77,14 @@ test.describe('Interactive writing', () => {
await page.locator('.dialog-content input').first().fill('空书')
await page.getByRole('button', { name: '创建' }).click()
await expect(page.locator('#editor-layout')).toBeVisible({ timeout: 15_000 })
await dismissCockpitIfOpen(page)
await page.getByTestId('panel-tab-ai').click()
await expect(page.getByTestId('ai-mode-tab-interactive')).toBeDisabled({ timeout: 10_000 })
await app.close()
})
test('E2E-INT-01: interactive flow creates chapter', async () => {
test.setTimeout(300_000)
test.setTimeout(600_000)
const app = await launchApp(userDataDir)
const page = await app.firstWindow()
await skipOnboarding(page)
@@ -85,21 +100,21 @@ test.describe('Interactive writing', () => {
await page.getByTestId('interactive-confirm-plot').click()
const naming0 = page.getByTestId('naming-option-0')
const acceptBtn = page.getByTestId('interactive-accept-scene')
await expect(naming0.or(acceptBtn)).toBeVisible({ timeout: 120_000 })
await expect(naming0.or(acceptBtn)).toBeVisible({ timeout: 240_000 })
if (await naming0.isVisible()) {
await naming0.click()
await expect(acceptBtn).toBeVisible({ timeout: 120_000 })
await expect(acceptBtn).toBeVisible({ timeout: 240_000 })
}
await acceptBtn.click()
const finishBtn = page.getByTestId('interactive-finish-chapter')
await expect(finishBtn).toBeVisible({ timeout: 120_000 })
await expect(finishBtn).toBeEnabled({ timeout: 240_000 })
await finishBtn.click()
await expect(page.locator('.ProseMirror')).not.toBeEmpty({ timeout: 30_000 })
await app.close()
})
test('E2E-INT-03: restores flow after restart', async () => {
test.setTimeout(300_000)
test.setTimeout(600_000)
const app1 = await launchApp(userDataDir)
const page1 = await app1.firstWindow()
await skipOnboarding(page1)
@@ -129,6 +144,7 @@ test.describe('Interactive writing', () => {
await skipOnboarding(page2)
await page2.getByText('交互测试书').click()
await expect(page2.locator('#editor-layout')).toBeVisible({ timeout: 15_000 })
await dismissCockpitIfOpen(page2)
await page2.getByTestId('panel-tab-ai').click()
await expect(page2.getByTestId('ai-session-select')).not.toHaveValue('', { timeout: 10_000 })
await page2.getByTestId('ai-session-select').selectOption(sessionValue)
+9 -4
View File
@@ -27,9 +27,12 @@ async function skipOnboarding(page: Page): Promise<void> {
async function dismissCockpitIfOpen(page: Page): Promise<void> {
const cockpit = page.locator('[data-testid="cockpit-modal"]')
if (await cockpit.isVisible({ timeout: 3000 }).catch(() => false)) {
await page.locator('[data-testid="cockpit-modal"] .modal-close').click()
try {
await cockpit.waitFor({ state: 'visible', timeout: 15_000 })
await cockpit.locator('.modal-close').click()
await expect(cockpit).toBeHidden({ timeout: 5000 })
} catch {
/* cockpit did not open */
}
}
@@ -73,6 +76,7 @@ test.describe('Knowledge extraction P5.2', () => {
await page.locator('[data-testid="panel-tab-knowledge"]').click()
await expect(page.locator('[data-testid="knowledge-panel"]')).toBeVisible()
await page.locator('[data-testid="knowledge-tab-pending"]').click()
await expect(page.locator('[data-testid="knowledge-extract-current"]')).toBeVisible()
await expect(page.locator('[data-testid="knowledge-batch-high-confidence"]')).toBeVisible()
await app.close()
@@ -82,9 +86,10 @@ test.describe('Knowledge extraction P5.2', () => {
const app = await launchApp(userDataDir)
const page = await app.firstWindow()
await skipOnboarding(page)
await createAndOpenBook(page, '设置测试')
await createAndOpenBook(page, '全局设置测试')
await page.getByRole('button', { name: '设置' }).click()
await page.getByTestId('topbar-settings').click()
await expect(page.locator('#settings-page')).toBeVisible({ timeout: 10_000 })
await expect(page.locator('[data-testid="settings-knowledge-auto-extract"]')).toBeVisible()
await expect(page.locator('[data-testid="settings-extract-threshold"]')).toBeVisible()
await app.close()
+14 -5
View File
@@ -20,15 +20,23 @@ async function skipOnboarding(page: Page): Promise<void> {
}
}
async function dismissCockpitIfOpen(page: Page): Promise<void> {
const cockpit = page.locator('[data-testid="cockpit-modal"]')
try {
await cockpit.waitFor({ state: 'visible', timeout: 15_000 })
await cockpit.locator('.modal-close').click()
await expect(cockpit).toBeHidden({ timeout: 5000 })
} catch {
/* cockpit did not open */
}
}
async function openBookWithContent(page: Page): Promise<void> {
await page.getByRole('button', { name: /新建书籍/ }).first().click()
await page.locator('.dialog-content input').first().fill('注入历史书')
await page.getByRole('button', { name: '创建' }).click()
await expect(page.locator('#editor-layout')).toBeVisible({ timeout: 15_000 })
const cockpit = page.locator('[data-testid="cockpit-modal"]')
if (await cockpit.isVisible({ timeout: 3000 }).catch(() => false)) {
await page.locator('[data-testid="cockpit-modal"] .modal-close').click()
}
await dismissCockpitIfOpen(page)
await page.getByRole('button', { name: '+ 新章' }).click()
const editor = page.locator('.ProseMirror')
await expect(editor).toBeVisible({ timeout: 10_000 })
@@ -96,7 +104,8 @@ test.describe('Knowledge injection history P6.1', () => {
await page.getByTestId('context-tab-knowledge').click()
await page.locator(`[data-testid="context-knowledge-item-${entryId}"] input`).check()
await page.getByTestId('context-save').click()
await page.getByRole('button', { name: '下一步' }).click()
await expect(page.getByTestId('context-editor-modal')).toBeHidden({ timeout: 10_000 })
await page.locator('[data-testid="wizard-panel"] button.btn.primary').click()
await page.locator('[data-testid="panel-tab-knowledge"]').click()
await page.locator('[data-testid="knowledge-tab-all"]').click()
+12
View File
@@ -20,11 +20,23 @@ async function skipOnboarding(page: Page): Promise<void> {
}
}
async function dismissCockpitIfOpen(page: Page): Promise<void> {
const cockpit = page.locator('[data-testid="cockpit-modal"]')
try {
await cockpit.waitFor({ state: 'visible', timeout: 15_000 })
await cockpit.locator('.modal-close').click()
await expect(cockpit).toBeHidden({ timeout: 5000 })
} catch {
/* cockpit did not open */
}
}
async function createAndOpenBook(page: Page): Promise<void> {
await page.getByRole('button', { name: /新建书籍/ }).first().click()
await page.locator('.dialog-content input').first().fill('覆盖度测试')
await page.getByRole('button', { name: '创建' }).click()
await expect(page.locator('#editor-layout')).toBeVisible({ timeout: 15_000 })
await dismissCockpitIfOpen(page)
}
test.describe('Outline coverage', () => {
+12
View File
@@ -26,11 +26,23 @@ async function skipOnboarding(page: Page): Promise<void> {
}
}
async function dismissCockpitIfOpen(page: Page): Promise<void> {
const cockpit = page.locator('[data-testid="cockpit-modal"]')
try {
await cockpit.waitFor({ state: 'visible', timeout: 15_000 })
await cockpit.locator('.modal-close').click()
await expect(cockpit).toBeHidden({ timeout: 5000 })
} catch {
/* cockpit did not open */
}
}
async function createAndOpenBook(page: Page, name: string): Promise<void> {
await page.getByRole('button', { name: /新建书籍/ }).first().click()
await page.locator('.dialog-content input').first().fill(name)
await page.getByRole('button', { name: '创建' }).click()
await expect(page.locator('#editor-layout')).toBeVisible({ timeout: 15_000 })
await dismissCockpitIfOpen(page)
}
test.describe('Outline persistence', () => {
+13
View File
@@ -20,14 +20,27 @@ async function skipOnboarding(page: Page): Promise<void> {
}
}
async function dismissCockpitIfOpen(page: Page): Promise<void> {
const cockpit = page.locator('[data-testid="cockpit-modal"]')
try {
await cockpit.waitFor({ state: 'visible', timeout: 15_000 })
await cockpit.locator('.modal-close').click()
await expect(cockpit).toBeHidden({ timeout: 5000 })
} catch {
/* cockpit did not open */
}
}
async function createAndOpenBook(page: Page, name = 'P2测试书'): Promise<void> {
await page.getByRole('button', { name: /新建书籍/ }).first().click()
await page.locator('.dialog-content input').first().fill(name)
await page.getByRole('button', { name: '创建' }).click()
await expect(page.locator('#editor-layout')).toBeVisible({ timeout: 15_000 })
await dismissCockpitIfOpen(page)
}
async function ensureChapterEditor(page: Page): Promise<void> {
await dismissCockpitIfOpen(page)
await page.getByRole('button', { name: '+ 新章' }).click()
await expect(page.locator('.ProseMirror')).toBeVisible({ timeout: 10_000 })
}
+14
View File
@@ -20,14 +20,27 @@ async function skipOnboarding(page: Page): Promise<void> {
}
}
async function dismissCockpitIfOpen(page: Page): Promise<void> {
const cockpit = page.locator('[data-testid="cockpit-modal"]')
try {
await cockpit.waitFor({ state: 'visible', timeout: 15_000 })
await cockpit.locator('.modal-close').click()
await expect(cockpit).toBeHidden({ timeout: 5000 })
} catch {
/* cockpit did not open */
}
}
async function createAndOpenBook(page: Page): Promise<void> {
await page.getByRole('button', { name: /新建书籍/ }).first().click()
await page.locator('.dialog-content input').first().fill('拖拽测试')
await page.getByRole('button', { name: '创建' }).click()
await expect(page.locator('#editor-layout')).toBeVisible({ timeout: 15_000 })
await dismissCockpitIfOpen(page)
}
async function ensureChapterEditor(page: Page): Promise<void> {
await dismissCockpitIfOpen(page)
await page.getByRole('button', { name: '+ 新章' }).click()
await expect(page.locator('.ProseMirror')).toBeVisible({ timeout: 10_000 })
}
@@ -150,6 +163,7 @@ test.describe('P2.1 features', () => {
await page.getByTestId('inspiration-save-btn').click()
await expect(page.getByTestId('inspiration-modal')).toBeHidden({ timeout: 10_000 })
await page.getByTestId('sidebar-tab-inspiration').click()
await expect(page.getByTestId('inspiration-list')).toBeVisible()
await expect(page.getByTestId('inspiration-list').getByText(idea)).toBeVisible({ timeout: 10_000 })
await app.close()
+55
View File
@@ -0,0 +1,55 @@
import path from 'path'
import { mkdtempSync, rmSync, existsSync } from 'fs'
import { join } from 'path'
import { tmpdir } from 'os'
import { test, expect } from '@playwright/test'
import { launchApp, skipOnboarding } from './helpers'
const ROOT = path.join(import.meta.dirname, '..')
test.describe('Release smoke', () => {
let userDataDir: string
test.beforeEach(() => {
userDataDir = mkdtempSync(join(tmpdir(), 'bilin-e2e-release-'))
})
test.afterEach(() => {
if (userDataDir && existsSync(userDataDir)) {
try {
rmSync(userDataDir, { recursive: true, force: true, maxRetries: 3, retryDelay: 200 })
} catch {
/* ignore */
}
}
})
test('E2E-RELEASE-01: app launches and shows home after onboarding skip', async () => {
const app = await launchApp(userDataDir)
const page = await app.firstWindow()
await skipOnboarding(page)
await expect(page.locator('#app')).toBeVisible({ timeout: 20_000 })
await expect(page.getByRole('button', { name: /新建书籍/ }).first()).toBeVisible({
timeout: 10_000
})
await app.close()
})
test('E2E-RELEASE-02: create book opens editor without cockpit blocking', async () => {
const app = await launchApp(userDataDir)
const page = await app.firstWindow()
await skipOnboarding(page)
await page.getByRole('button', { name: /新建书籍/ }).first().click()
await page.locator('.dialog-content input').first().fill('发布冒烟书')
await page.getByRole('button', { name: '创建' }).click()
await expect(page.locator('#editor-layout')).toBeVisible({ timeout: 15_000 })
const cockpit = page.locator('[data-testid="cockpit-modal"]')
if (await cockpit.isVisible({ timeout: 5000 }).catch(() => false)) {
await cockpit.locator('.modal-close').click()
await expect(cockpit).toBeHidden({ timeout: 5000 })
}
await page.getByRole('button', { name: '+ 新章' }).click()
await expect(page.locator('.ProseMirror')).toBeVisible({ timeout: 10_000 })
await app.close()
})
})
+12
View File
@@ -26,11 +26,23 @@ async function skipOnboarding(page: Page): Promise<void> {
}
}
async function dismissCockpitIfOpen(page: Page): Promise<void> {
const cockpit = page.locator('[data-testid="cockpit-modal"]')
try {
await cockpit.waitFor({ state: 'visible', timeout: 15_000 })
await cockpit.locator('.modal-close').click()
await expect(cockpit).toBeHidden({ timeout: 5000 })
} catch {
/* cockpit did not open */
}
}
async function createBookAndOpenEditor(page: Page, name: string): Promise<void> {
await page.getByRole('button', { name: /新建书籍/ }).first().click()
await page.locator('.dialog-content input').first().fill(name)
await page.getByRole('button', { name: '创建' }).click()
await expect(page.locator('#editor-layout')).toBeVisible({ timeout: 15_000 })
await dismissCockpitIfOpen(page)
await page.getByRole('button', { name: '+ 新章' }).click()
await expect(page.locator('.ProseMirror')).toBeVisible({ timeout: 10_000 })
}
+17
View File
@@ -20,7 +20,19 @@ async function skipOnboarding(page: Page): Promise<void> {
}
}
async function dismissCockpitIfOpen(page: Page): Promise<void> {
const cockpit = page.locator('[data-testid="cockpit-modal"]')
try {
await cockpit.waitFor({ state: 'visible', timeout: 15_000 })
await cockpit.locator('.modal-close').click()
await expect(cockpit).toBeHidden({ timeout: 5000 })
} catch {
/* cockpit did not open */
}
}
async function ensureChapterEditor(page: Page): Promise<void> {
await dismissCockpitIfOpen(page)
await page.getByRole('button', { name: '+ 新章' }).click()
await expect(page.locator('.ProseMirror')).toBeVisible({ timeout: 10_000 })
}
@@ -30,6 +42,7 @@ async function openBookWithContent(page: Page): Promise<void> {
await page.locator('.dialog-content input').first().fill('向导测试书')
await page.getByRole('button', { name: '创建' }).click()
await expect(page.locator('#editor-layout')).toBeVisible({ timeout: 15_000 })
await dismissCockpitIfOpen(page)
await ensureChapterEditor(page)
const editor = page.locator('.ProseMirror')
await editor.click()
@@ -81,6 +94,7 @@ test.describe('Wizard writing', () => {
await page.locator('.dialog-content input').first().fill('空书')
await page.getByRole('button', { name: '创建' }).click()
await expect(page.locator('#editor-layout')).toBeVisible({ timeout: 15_000 })
await dismissCockpitIfOpen(page)
await page.getByTestId('panel-tab-ai').click()
await expect(page.getByTestId('ai-mode-tab-wizard')).toBeDisabled({ timeout: 10_000 })
await app.close()
@@ -95,6 +109,9 @@ test.describe('Wizard writing', () => {
await openWizardPanel(page)
await page.getByTestId('wizard-goal-input').fill('林远通过入门考核,展现天赋震惊众人')
const wordInputs = page.locator('.auto-word-range input')
await wordInputs.nth(0).fill('180')
await wordInputs.nth(1).fill('220')
await page.getByRole('button', { name: '下一步' }).click()
await page.getByTestId('wizard-rhythm-mixed').click()
+10 -4
View File
@@ -28,9 +28,12 @@ async function skipOnboarding(page: Page): Promise<void> {
async function dismissCockpitIfOpen(page: Page): Promise<void> {
const cockpit = page.locator('[data-testid="cockpit-modal"]')
if (await cockpit.isVisible({ timeout: 3000 }).catch(() => false)) {
await page.locator('[data-testid="cockpit-modal"] .modal-close').click()
try {
await cockpit.waitFor({ state: 'visible', timeout: 15_000 })
await cockpit.locator('.modal-close').click()
await expect(cockpit).toBeHidden({ timeout: 5000 })
} catch {
/* cockpit did not open */
}
}
@@ -43,6 +46,7 @@ async function createAndOpenBook(page: Page, name: string): Promise<void> {
}
async function ensureChapterEditor(page: Page): Promise<void> {
await dismissCockpitIfOpen(page)
const items = page.locator('.chapter-item')
if ((await items.count()) === 0) {
await page.getByRole('button', { name: '+ 新章' }).click()
@@ -104,9 +108,11 @@ test.describe('Writing analytics P9', () => {
await page.getByTestId('setting-name-input').fill('主角视角')
await page.locator('.dialog-content select').selectOption('character')
await page.getByRole('button', { name: '创建' }).click()
await expect(page.getByText('主角视角')).toBeVisible({ timeout: 10_000 })
await expect(page.getByTestId(/setting-item-/).filter({ hasText: '主角视角' })).toBeVisible({
timeout: 10_000
})
await page.getByTestId('sidebar-tab-chapter').click()
await page.getByTestId('sidebar-tab-chapters').click()
await ensureChapterEditor(page)
await page.getByTestId('chapter-pov-select').selectOption({ label: '主角视角' })
+12 -7
View File
@@ -30,9 +30,12 @@ async function skipOnboarding(page: Page): Promise<void> {
async function dismissCockpitIfOpen(page: Page): Promise<void> {
const cockpit = page.locator('[data-testid="cockpit-modal"]')
if (await cockpit.isVisible({ timeout: 3000 }).catch(() => false)) {
await page.locator('[data-testid="cockpit-modal"] .modal-close').click()
try {
await cockpit.waitFor({ state: 'visible', timeout: 15_000 })
await cockpit.locator('.modal-close').click()
await expect(cockpit).toBeHidden({ timeout: 5000 })
} catch {
/* cockpit did not open */
}
}
@@ -45,6 +48,7 @@ async function createAndOpenBook(page: Page, name: string): Promise<void> {
}
async function ensureChapterEditor(page: Page): Promise<void> {
await dismissCockpitIfOpen(page)
const items = page.locator('.chapter-item')
if ((await items.count()) === 0) {
await page.getByRole('button', { name: '+ 新章' }).click()
@@ -88,17 +92,18 @@ test.describe('Writing goals P5.3', () => {
await createAndOpenBook(page, '目标测试书')
await ensureChapterEditor(page)
await page.getByRole('button', { name: '设置' }).click()
await page.locator('[data-testid="settings-daily-word-goal"]').fill('100')
await page.getByRole('button', { name: '书籍' }).click()
await page.getByTestId('topbar-settings').click()
await expect(page.locator('#settings-page')).toBeVisible({ timeout: 10_000 })
await page.locator('[data-testid="settings-daily-word-goal"]').fill('30')
await page.getByRole('button', { name: '目标测试书' }).click()
await ensureChapterEditor(page)
const editor = page.locator('.ProseMirror')
await editor.click()
await editor.pressSequentially(
'这是一段用于测试每日写作目标达标的示例文字,需要足够长度才能触发字数统计与达标提醒通知。'
'这是一段用于测试每日写作目标达标的示例文字,需要足够长度才能触发字数统计与达标提醒通知。继续书写更多内容以确保超过三十字的目标阈值。'
)
await page.waitForTimeout(1500)
await page.waitForTimeout(2500)
await expect(page.locator('[data-testid="status-daily-goal"].goal-met')).toBeVisible({
timeout: 15_000
+11 -6
View File
@@ -27,9 +27,12 @@ async function skipOnboarding(page: Page): Promise<void> {
async function dismissCockpitIfOpen(page: Page): Promise<void> {
const cockpit = page.locator('[data-testid="cockpit-modal"]')
if (await cockpit.isVisible({ timeout: 3000 }).catch(() => false)) {
await page.locator('[data-testid="cockpit-modal"] .modal-close').click()
try {
await cockpit.waitFor({ state: 'visible', timeout: 15_000 })
await cockpit.locator('.modal-close').click()
await expect(cockpit).toBeHidden({ timeout: 5000 })
} catch {
/* cockpit did not open */
}
}
@@ -64,9 +67,10 @@ test.describe('Writing logs P5.2', () => {
await skipOnboarding(page)
await createAndOpenBook(page, '日志测试书')
await page.getByRole('button', { name: '设置' }).click()
await page.getByTestId('topbar-settings').click()
await expect(page.locator('#settings-page')).toBeVisible({ timeout: 10_000 })
await page.locator('[data-testid="settings-daily-word-goal"]').fill('100')
await page.getByRole('button', { name: '书' }).click()
await page.getByRole('button', { name: '日志测试书' }).click()
const items = page.locator('.chapter-item')
if ((await items.count()) === 0) {
@@ -92,9 +96,10 @@ test.describe('Writing logs P5.2', () => {
await skipOnboarding(page)
await createAndOpenBook(page, '状态栏测试')
await page.getByRole('button', { name: '设置' }).click()
await page.getByTestId('topbar-settings').click()
await expect(page.locator('#settings-page')).toBeVisible({ timeout: 10_000 })
await page.locator('[data-testid="settings-daily-word-goal"]').fill('500')
await page.getByRole('button', { name: '书籍' }).click()
await page.getByRole('button', { name: '状态栏测试' }).click()
const items = page.locator('.chapter-item')
if ((await items.count()) === 0) {
+13
View File
@@ -25,11 +25,23 @@ async function skipOnboarding(page: Page): Promise<void> {
await expect(page.getByText('欢迎使用笔临')).toBeHidden({ timeout: 10_000 })
}
async function dismissCockpitIfOpen(page: Page): Promise<void> {
const cockpit = page.locator('[data-testid="cockpit-modal"]')
try {
await cockpit.waitFor({ state: 'visible', timeout: 15_000 })
await cockpit.locator('.modal-close').click()
await expect(cockpit).toBeHidden({ timeout: 5000 })
} catch {
/* cockpit did not open */
}
}
async function createAndOpenBook(page: Page, name: string): Promise<void> {
await page.getByRole('button', { name: /新建书籍/ }).first().click()
await page.locator('.dialog-content input').first().fill(name)
await page.getByRole('button', { name: '创建' }).click()
await expect(page.locator('#editor-layout')).toBeVisible({ timeout: 15_000 })
await dismissCockpitIfOpen(page)
}
test.describe('Writing', () => {
@@ -54,6 +66,7 @@ test.describe('Writing', () => {
const page1 = await app1.firstWindow()
await skipOnboarding(page1)
await createAndOpenBook(page1, '测试书')
await dismissCockpitIfOpen(page1)
await page1.getByRole('button', { name: '+ 新章' }).click()
const editor = page1.locator('.ProseMirror')
+2
View File
@@ -10,6 +10,8 @@
"preview": "npx electron-vite preview",
"test": "node node_modules/vitest/vitest.mjs run",
"test:watch": "node node_modules/vitest/vitest.mjs",
"test:release": "npm run build && node node_modules/vitest/vitest.mjs run tests/release && npx playwright test e2e/release-smoke.spec.ts",
"test:ci": "npm run build && npm run test && npm run test:e2e",
"test:e2e": "playwright test"
},
"keywords": [],
@@ -12,11 +12,13 @@ export function buildScenePlanMessages(
outlineSummaries.length > 0
? `关联大纲:\n${outlineSummaries.map((s, i) => `${i + 1}. ${s}`).join('\n')}\n\n`
: ''
const sceneRange = wordMax <= 300 ? '1-2' : '3-6'
const summaryHint = wordMax <= 300 ? '至少40字' : '至少80字'
return [
{
role: 'system',
content:
'你是长篇小说章节规划助手。根据本章目标规划 3-6 个连续场景。仅返回 JSON{"scenes":[{"label":"场景名","summary":"至少80字的场景要点"},...],"estimatedWords":数字}。estimatedWords 须在用户给定字数范围内。'
`你是长篇小说章节规划助手。根据本章目标规划 ${sceneRange} 个连续场景。仅返回 JSON{"scenes":[{"label":"场景名","summary":"${summaryHint}的场景要点"},...],"estimatedWords":数字}。estimatedWords 须在用户给定字数范围内。`
},
{
role: 'user',
@@ -35,15 +37,18 @@ export function buildAutoSceneMessages(
priorSceneSummaries.length > 0
? `已写场景摘要:\n${priorSceneSummaries.map((s, i) => `${i + 1}. ${s}`).join('\n')}\n\n`
: ''
const planLen = Math.max(1, config.scenePlan?.length ?? 1)
const sceneMin = Math.max(60, Math.floor((config.wordMin ?? 2000) / planLen))
const sceneMax = Math.max(sceneMin + 20, Math.ceil((config.wordMax ?? 4000) / planLen))
return [
{
role: 'system',
content:
'你是小说场景写作助手。若需为新元素命名且尚无定论,先仅返回 JSON{"type":"naming_required","elementType":"类型","context":"说明","options":["名1","名2","名3","名4","名5"]}。否则输出 600-1500 字场景 HTML <p> 段落。'
`你是小说场景写作助手。若需为新元素命名且尚无定论,先仅返回 JSON{"type":"naming_required","elementType":"类型","context":"说明","options":["名1","名2","名3","名4","名5"]}。否则输出 ${sceneMin}-${sceneMax} 字场景 HTML <p> 段落,勿超出上限。`
},
{
role: 'user',
content: `${prior}上下文:\n${contextText}\n\n本章目标:${config.chapterGoal}\n\n当前场景:${planItem.label}\n场景要点:${planItem.summary}\n\n请生成本场景。`
content: `${prior}上下文:\n${contextText}\n\n本章目标:${config.chapterGoal}\n\n当前场景:${planItem.label}\n场景要点:${planItem.summary}\n\n请生成本场景,控制在 ${sceneMin}-${sceneMax}`
}
]
}
+16 -5
View File
@@ -1,8 +1,18 @@
import { createRequire } from 'node:module'
import { app, BrowserWindow } from 'electron'
import electronUpdater from 'electron-updater'
import type { AppUpdater } from 'electron-updater'
import { IPC } from '../../shared/ipc-channels'
const { autoUpdater } = electronUpdater
const require = createRequire(import.meta.url)
let autoUpdaterRef: AppUpdater | null = null
function getAutoUpdater(): AppUpdater {
if (!autoUpdaterRef) {
const electronUpdater = require('electron-updater') as { autoUpdater: AppUpdater }
autoUpdaterRef = electronUpdater.autoUpdater
}
return autoUpdaterRef
}
export interface UpdateInfoPayload {
version: string
@@ -31,6 +41,7 @@ export class UpdateService {
!app.isPackaged ||
process.env.NODE_ENV === 'development'
const autoUpdater = getAutoUpdater()
autoUpdater.autoDownload = false
autoUpdater.autoInstallOnAppQuit = true
@@ -62,7 +73,7 @@ export class UpdateService {
this.broadcast(IPC.UPDATE_AVAILABLE, payload)
return payload
}
const result = await autoUpdater.checkForUpdates()
const result = await getAutoUpdater().checkForUpdates()
const info = result?.updateInfo
if (!info) return null
return {
@@ -78,12 +89,12 @@ export class UpdateService {
this.broadcast(IPC.UPDATE_DOWNLOADED, { version: this.mockVersion })
return
}
await autoUpdater.downloadUpdate()
await getAutoUpdater().downloadUpdate()
}
install(): void {
if (this.disabled || this.mockVersion) return
autoUpdater.quitAndInstall()
getAutoUpdater().quitAndInstall()
}
private broadcast(channel: string, payload: unknown): void {
-1
View File
@@ -6,7 +6,6 @@ import { useAppStore } from '@renderer/stores/useAppStore'
import { useAiStore } from '@renderer/stores/useAiStore'
import { useSettingsStore } from '@renderer/stores/useSettingsStore'
import { applySlashCommand } from '@renderer/lib/ai-slash-commands'
import { useSettingsStore } from '@renderer/stores/useSettingsStore'
import { insertToEditor } from '@renderer/lib/editor-commands'
import { ipcCall } from '@renderer/lib/ipc-client'
import { ContextEditorModal } from '@renderer/components/ai/ContextEditorModal'
@@ -200,16 +200,6 @@ export function EditorLayout(): React.JSX.Element {
if (bridgeChapterId) setBridgeOpen(true)
}, [bridgeChapterId])
useEffect(() => {
if (!currentBookId || target?.kind !== 'chapter') return
const chapterId = target.id
void ipcCall(() => window.electronAPI.bridge.shouldPrompt(currentBookId, chapterId)).then(
(should) => {
if (should) setTimeout(() => setBridgeOpen(true), 500)
}
)
}, [currentBookId, target?.kind, target?.id])
const activeBridgeChapterId =
bridgeChapterId ?? (target?.kind === 'chapter' ? target.id : selectedChapterId)
+10 -1
View File
@@ -107,7 +107,16 @@ export function TopBar(): React.JSX.Element {
>
📊
</button>
<button type="button" className="top-btn" onClick={() => { openSettingsTab(); setView('settings') }}>
<button
type="button"
className="top-btn"
data-testid="topbar-settings"
title={t('settings.title')}
onClick={() => {
openSettingsTab()
setView('settings')
}}
>
</button>
<button
+2
View File
@@ -104,6 +104,8 @@ export function initCytoscape(
if (evt.target === cy) onSelect(null)
})
;(container as HTMLElement & { __bilinCy?: cytoscape.Core }).__bilinCy = cy
return cy
}
@@ -0,0 +1,130 @@
import { describe, it, expect } from 'vitest'
import { DatabaseSync } from 'node:sqlite'
import { migrate } from '../../src/main/db/migrate'
import { VolumeRepository } from '../../src/main/db/repositories/volume.repo'
import { ChapterRepository } from '../../src/main/db/repositories/chapter.repo'
import { AiSessionRepository } from '../../src/main/db/repositories/ai-session.repo'
import { InteractiveRepository } from '../../src/main/db/repositories/interactive.repo'
import { AutoWritingService } from '../../src/main/services/auto-writing.service'
import { AiClientService } from '../../src/main/services/ai-client.service'
import { DEFAULT_AI_CONFIG, type AutoWritingConfig, type InteractiveFlow } from '../../src/shared/types'
import { stripHtml } from '../../src/main/services/word-count'
const AI_TEST_CONFIG = { ...DEFAULT_AI_CONFIG, timeoutMs: 300_000, maxTokens: 2048 }
const CHAPTER_COUNT = 10
const WORD_MIN = 180
const WORD_MAX = 220
const CHAPTER_GOALS = [
'林远初入修仙门派,通过入门考核',
'林远在藏经阁发现神秘古卷',
'林远与师兄切磋,初露锋芒',
'林远下山历练,遭遇妖兽',
'林远救下受伤少女,结下善缘',
'林远进入秘境,获得灵草',
'林远突破瓶颈,修为精进',
'林远卷入门派纷争,被迫站队',
'林远查明真相,化解误会',
'林远回望来路,展望仙途'
]
async function runAutoChapter(
svc: AutoWritingService,
repo: InteractiveRepository,
db: DatabaseSync,
sessionId: string,
volumeId: string,
chapterIndex: number,
context: string
): Promise<{ chapterId: string; text: string; wordCount: number }> {
const flow = svc.start(sessionId)
svc.setGoal(flow.id, {
chapterGoal: CHAPTER_GOALS[chapterIndex] ?? `${chapterIndex + 1}章续写`,
wordMin: WORD_MIN,
wordMax: WORD_MAX
})
await svc.planScenes(flow.id, context)
let current: InteractiveFlow = repo.get(flow.id)!
for (let guard = 0; guard < 12; guard++) {
if (current.step === 'completed') break
if (current.step === 'naming_pause' && current.namingPending) {
current = await svc.resolveNaming(
flow.id,
current.namingPending.options[0]!,
context,
() => {}
)
continue
}
const config = repo.getModeConfig<AutoWritingConfig>(flow.id)
const planLen = config.scenePlan?.length ?? 0
const idx = config.currentPlanIndex ?? 0
if (idx < planLen) {
current = await svc.generateNext(flow.id, context, () => {})
continue
}
if (repo.listScenes(flow.id).length > 0) break
throw new Error(`chapter ${chapterIndex + 1}: no scenes generated`)
}
const scenes = repo.listScenes(flow.id)
expect(scenes.length).toBeGreaterThan(0)
const { chapterId } = svc.finishChapter(flow.id, volumeId, `${chapterIndex + 1}`)
const chapter = new ChapterRepository(db).get(chapterId)!
const text = stripHtml(chapter.content)
return { chapterId, text, wordCount: text.length }
}
describe('10-chapter novel via auto writing (LM Studio)', () => {
it('IT-NOVEL-01: produces 10 chapters ~200 words each', async () => {
const db = new DatabaseSync(':memory:')
migrate(db)
const volId = new VolumeRepository(db).create('第一卷', 0).id
const chapters = new ChapterRepository(db)
chapters.create(
volId,
'序章',
0,
'<p>林远本是山村少年,偶得仙缘,踏上修仙之路。今日,他将参加青云门的入门考核。</p>',
'manual'
)
const session = new AiSessionRepository(db).create('十章小说', DEFAULT_AI_CONFIG.model)
const svc = new AutoWritingService(db, new AiClientService(() => AI_TEST_CONFIG))
const repo = new InteractiveRepository(db)
let context =
'林远本是山村少年,偶得仙缘,踏上修仙之路。今日,他将参加青云门的入门考核。'
const results: { title: string; wordCount: number }[] = []
for (let i = 0; i < CHAPTER_COUNT; i++) {
const { text, wordCount } = await runAutoChapter(
svc,
repo,
db,
session.id,
volId,
i,
context
)
results.push({ title: `${i + 1}`, wordCount })
context = `${context}\n\n${text.slice(-400)}`
console.log(`[novel] 第${i + 1}章完成,${wordCount}`)
}
expect(results).toHaveLength(CHAPTER_COUNT)
for (const r of results) {
expect(r.wordCount).toBeGreaterThan(80)
expect(r.wordCount).toBeLessThan(600)
}
const allChapters = chapters.listByVolume(volId)
expect(allChapters.length).toBe(CHAPTER_COUNT + 1)
db.close()
}, 7_200_000)
})
+18
View File
@@ -0,0 +1,18 @@
import { existsSync } from 'fs'
import { join } from 'path'
import { describe, it, expect } from 'vitest'
const ROOT = join(import.meta.dirname, '../..')
const REQUIRED_ARTIFACTS = [
'out/main/index.js',
'out/preload/index.js',
'out/renderer/index.html'
]
describe('release gate: build artifacts', () => {
it('UT-RELEASE-02: production build outputs exist', () => {
const missing = REQUIRED_ARTIFACTS.filter((rel) => !existsSync(join(ROOT, rel)))
expect(missing, `Run npm run build first. Missing: ${missing.join(', ')}`).toEqual([])
})
})
+58
View File
@@ -0,0 +1,58 @@
import { readFileSync, readdirSync, statSync } from 'fs'
import { join } from 'path'
import { describe, it, expect } from 'vitest'
const ROOT = join(import.meta.dirname, '../..')
function collectSourceFiles(dir: string, acc: string[] = []): string[] {
for (const name of readdirSync(dir)) {
const full = join(dir, name)
const st = statSync(full)
if (st.isDirectory()) {
if (name === 'node_modules' || name === 'out') continue
collectSourceFiles(full, acc)
} else if (/\.(ts|tsx)$/.test(name)) {
acc.push(full)
}
}
return acc
}
function extractNamedImports(content: string): { from: string; names: string[] }[] {
const results: { from: string; names: string[] }[] = []
const re = /import\s+(?:type\s+)?\{([^}]+)\}\s+from\s+['"]([^'"]+)['"]/g
let m: RegExpExecArray | null
while ((m = re.exec(content)) !== null) {
const names = m[1]
.split(',')
.map((part) => part.trim())
.filter(Boolean)
.map((part) => part.split(/\s+as\s+/)[0]!.trim())
results.push({ from: m[2]!, names })
}
return results
}
describe('release gate: import hygiene', () => {
it('UT-RELEASE-01: no duplicate named imports from the same module', () => {
const files = collectSourceFiles(join(ROOT, 'src'))
const offenders: string[] = []
for (const file of files) {
const blocks = extractNamedImports(readFileSync(file, 'utf8'))
const seen = new Map<string, Set<string>>()
for (const { from, names } of blocks) {
if (!seen.has(from)) seen.set(from, new Set())
const bucket = seen.get(from)!
for (const name of names) {
if (bucket.has(name)) {
offenders.push(`${file}: duplicate import { ${name} } from '${from}'`)
}
bucket.add(name)
}
}
}
expect(offenders, offenders.join('\n')).toEqual([])
})
})