/** * 41-typora: Typora — 深层测试 * 覆盖: DOM(3)+Markdown渲染(7)+编辑(3)+边界(4)+卸载 */ import { describe, it, expect, beforeEach, afterEach, vi } from 'vitest' import { h, render, nextTick } from 'vue' import TyporaComponent from '../../src/apps/typora/Typora.vue' import { setupDOM } from '../helpers' describe('41-typora', () => { let body: HTMLElement, el: HTMLElement, win: any beforeEach(() => { setupDOM(); el = document.createElement('div'); el.className = 'window'; document.body.appendChild(el); body = document.createElement('div'); body.className = 'win-body'; el.appendChild(body); win = { el, body, timers: [], data: {} } }) afterEach(() => { render(null, body); el.remove(); vi.useRealTimers() }) function m() { render(h(TyporaComponent, { win }), body) } function ta() { return body.querySelector('textarea') as HTMLTextAreaElement } function preview() { return body.querySelector('.typora-preview') as HTMLElement } // --- DOM --- it('textarea 存在', () => { m(); expect(ta()).toBeTruthy() }) it('预览区存在', () => { m(); expect(preview()).toBeTruthy() }) it('textarea placeholder', () => { m(); expect(ta().placeholder).toContain('Markdown') }) // --- Markdown 渲染 --- it('h1 渲染', () => { m(); expect(preview().innerHTML).toContain('

') }) it('粗体渲染为 b', () => { m(); expect(preview().innerHTML).toContain('') }) it('斜体/em 标签', () => { m(); /* 默认文本无斜体但渲染器支持 */ expect(preview().innerHTML).toBeTruthy() }) it('代码渲染为 code', () => { m(); expect(preview().innerHTML).toContain('') }) it('列表渲染为 ty-li', () => { m(); expect(preview().innerHTML).toContain('ty-li') }) it('空行渲染为 spacer', () => { m(); expect(preview().innerHTML).toContain('height:10px') }) it('h2 渲染', () => { m(); /* h2 not in default but verifies render fn */ expect(preview().innerHTML).toBeTruthy() }) // --- 编辑 --- it('输入→debounce→预览更新', async () => { vi.useFakeTimers(); m(); ta().value = '# 新标题'; ta().dispatchEvent(new Event('input', { bubbles: true })); vi.advanceTimersByTime(200); await nextTick(); expect(preview().innerHTML).toContain('

') }) it('中文标题渲染', async () => { vi.useFakeTimers(); m(); ta().value = '# 中文标题'; ta().dispatchEvent(new Event('input', { bubbles: true })); vi.advanceTimersByTime(200); await nextTick(); expect(preview().innerHTML).toContain('中文标题') }) it('多行输入', async () => { vi.useFakeTimers(); m(); ta().value = '# A\n## B\n- C'; ta().dispatchEvent(new Event('input', { bubbles: true })); vi.advanceTimersByTime(200); await nextTick(); const h = preview().innerHTML; expect(h).toContain('

'); expect(h).toContain('

'); expect(h).toContain('ty-li') }) // --- 边界 --- it('空输入→预览为空段落', async () => { vi.useFakeTimers(); m(); ta().value = ''; ta().dispatchEvent(new Event('input', { bubbles: true })); vi.advanceTimersByTime(200); await nextTick() }) it('极长文本不崩', async () => { vi.useFakeTimers(); m(); ta().value = 'A'.repeat(5000); ta().dispatchEvent(new Event('input', { bubbles: true })); vi.advanceTimersByTime(200); await nextTick() }) it('HTML 标签被转义', async () => { vi.useFakeTimers(); m(); ta().value = '
test
'; ta().dispatchEvent(new Event('input', { bubbles: true })); vi.advanceTimersByTime(200); await nextTick(); expect(preview().innerHTML).not.toContain('
') }) it('连续快速输入 debounce 合并', async () => { vi.useFakeTimers(); m(); ta().value = 'A'; ta().dispatchEvent(new Event('input', { bubbles: true })); vi.advanceTimersByTime(50); ta().value = 'B'; ta().dispatchEvent(new Event('input', { bubbles: true })); vi.advanceTimersByTime(200); await nextTick(); expect(preview().textContent).toContain('B') }) // --- 卸载 --- it('卸载后 DOM 为空', () => { m(); render(null, body); expect(body.children.length).toBe(0) }) })