mirror of
https://gitee.com/kekingcn/file-online-preview.git
synced 2026-03-15 21:53:46 +08:00
test(e2e): phase-2 add office and zip smoke coverage
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
import fs from 'node:fs';
|
||||
import path from 'node:path';
|
||||
import { execSync } from 'node:child_process';
|
||||
|
||||
const fixturesDir = path.resolve(process.cwd(), 'tests/e2e/fixtures');
|
||||
fs.mkdirSync(fixturesDir, { recursive: true });
|
||||
@@ -13,6 +14,16 @@ write('sample.xml', '<root><name>kkFileView</name><e2e>true</e2e></root>');
|
||||
write('sample.csv', 'name,value\nkkFileView,1\ne2e,1\n');
|
||||
write('sample.html', '<!doctype html><html><body><h1>kkFileView fixture</h1></body></html>');
|
||||
|
||||
// zip (contains txt)
|
||||
const zipWork = path.join(fixturesDir, 'zip-tmp');
|
||||
fs.mkdirSync(zipWork, { recursive: true });
|
||||
fs.writeFileSync(path.join(zipWork, 'inner.txt'), 'kkFileView zip inner file');
|
||||
try {
|
||||
execSync(`cd "${zipWork}" && zip -q -r "${path.join(fixturesDir, 'sample.zip')}" inner.txt`);
|
||||
} catch {
|
||||
// fallback: keep going if zip is not available locally
|
||||
}
|
||||
|
||||
// 1x1 png
|
||||
write(
|
||||
'sample.png',
|
||||
|
||||
35
tests/e2e/scripts/generate-office-fixtures.py
Normal file
35
tests/e2e/scripts/generate-office-fixtures.py
Normal file
@@ -0,0 +1,35 @@
|
||||
#!/usr/bin/env python3
|
||||
from pathlib import Path
|
||||
|
||||
from docx import Document
|
||||
from openpyxl import Workbook
|
||||
from pptx import Presentation
|
||||
|
||||
fixtures = Path(__file__).resolve().parent.parent / "fixtures"
|
||||
fixtures.mkdir(parents=True, exist_ok=True)
|
||||
|
||||
# DOCX
|
||||
_doc = Document()
|
||||
_doc.add_heading("kkFileView E2E", level=1)
|
||||
_doc.add_paragraph("This is a DOCX fixture for Phase-2 E2E.")
|
||||
_doc.save(fixtures / "sample.docx")
|
||||
|
||||
# XLSX
|
||||
_wb = Workbook()
|
||||
_ws = _wb.active
|
||||
_ws.title = "Sheet1"
|
||||
_ws["A1"] = "name"
|
||||
_ws["B1"] = "value"
|
||||
_ws["A2"] = "kkFileView"
|
||||
_ws["B2"] = 2
|
||||
_wb.save(fixtures / "sample.xlsx")
|
||||
|
||||
# PPTX
|
||||
_prs = Presentation()
|
||||
slide_layout = _prs.slide_layouts[1]
|
||||
slide = _prs.slides.add_slide(slide_layout)
|
||||
slide.shapes.title.text = "kkFileView E2E"
|
||||
slide.placeholders[1].text = "This is a PPTX fixture for Phase-2 E2E."
|
||||
_prs.save(fixtures / "sample.pptx")
|
||||
|
||||
print("office fixtures generated in", fixtures)
|
||||
Reference in New Issue
Block a user