2026-05-01 16:09:44 +08:00
|
|
|
|
# huike-e2e-moicen 项目指南
|
|
|
|
|
|
|
2026-05-01 21:40:29 +08:00
|
|
|
|
## 项目结构
|
|
|
|
|
|
|
|
|
|
|
|
本仓库为 huike-music-room 前端 H5 的端到端(Playwright)测试套件。
|
|
|
|
|
|
|
|
|
|
|
|
兄弟目录:
|
|
|
|
|
|
- `../huike-back/` — 后端(Rust/Diesel)
|
|
|
|
|
|
- `../huike-front/` — 前端(Vue 3 SPA + Vant)
|
|
|
|
|
|
|
|
|
|
|
|
## 交流风格
|
|
|
|
|
|
|
|
|
|
|
|
- 使用中文
|
|
|
|
|
|
- 不道歉,不冗余收尾
|
|
|
|
|
|
- 引用代码时用真实文件路径
|
|
|
|
|
|
|
|
|
|
|
|
## 工具链
|
|
|
|
|
|
|
|
|
|
|
|
- 文本检索:`rg`(ripgrep)
|
|
|
|
|
|
- E2E 测试:`npx playwright test`
|
|
|
|
|
|
|
2026-05-01 20:16:04 +08:00
|
|
|
|
## 本地执行 E2E 测试(先本地,再 CI)
|
|
|
|
|
|
|
|
|
|
|
|
推送前先在本机对 moicen 测试服执行 Playwright 测试,避免反复推送等 CI 结果:
|
|
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
|
cd /Users/weli/works/huiwing-migration/huike-e2e-moicen
|
|
|
|
|
|
|
|
|
|
|
|
# 执行指定测试文件
|
|
|
|
|
|
npx playwright test tests/clazz-ui.spec.ts --reporter=list
|
|
|
|
|
|
|
|
|
|
|
|
# 执行全部测试
|
|
|
|
|
|
npx playwright test --reporter=list
|
|
|
|
|
|
|
|
|
|
|
|
# 带 UI 调试模式
|
|
|
|
|
|
npx playwright test --ui
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
测试通过后再 commit & push 触发远程 CI。
|
|
|
|
|
|
|
2026-05-01 16:09:44 +08:00
|
|
|
|
## CI 工作流
|
|
|
|
|
|
|
|
|
|
|
|
### 等待 CI 完成
|
|
|
|
|
|
|
2026-05-01 22:09:38 +08:00
|
|
|
|
使用 Monitor 工具配合 `gh run watch`,CI 完成后会自动通知:
|
2026-05-01 16:09:44 +08:00
|
|
|
|
|
|
|
|
|
|
```bash
|
2026-05-01 21:40:29 +08:00
|
|
|
|
# 获取最新 CI run ID
|
|
|
|
|
|
gh run list --repo alchemy-studio/huike-e2e-moicen --limit 1 --json databaseId --jq '.[0].databaseId'
|
|
|
|
|
|
|
2026-05-01 22:09:38 +08:00
|
|
|
|
# Monitor 会自动通知每次状态刷新和最终完成
|
|
|
|
|
|
Monitor:
|
|
|
|
|
|
command: gh run watch <run-id> --repo alchemy-studio/huike-e2e-moicen 2>&1 | grep -E --line-buffered '(✓ master|✘ master|╳ master|X master)|Process completed'
|
|
|
|
|
|
description: Watch CI run completion
|
2026-05-01 16:09:44 +08:00
|
|
|
|
```
|
|
|
|
|
|
|
2026-05-01 22:09:38 +08:00
|
|
|
|
注意:**不要用 `Bash run_in_background` + `gh run watch`**,因为 Bash 后台任务不会在完成时通知,你会卡住等不到结果。必须用 **Monitor** 工具,它会在每行 stdout 输出时通知你。
|
|
|
|
|
|
|
2026-05-01 21:40:29 +08:00
|
|
|
|
也可以用 `gh run watch --job=<job-id>` 监控特定 job。
|
2026-05-01 16:09:44 +08:00
|
|
|
|
|
2026-05-01 22:09:38 +08:00
|
|
|
|
`gh run watch` 依赖当前目录的 git remote 确定仓库,所以要在 `huike-e2e-moicen` 目录下跑,或者用 `--repo` 参数显式指定。
|
2026-05-01 16:09:44 +08:00
|
|
|
|
|
|
|
|
|
|
### 两个 Workflow
|
|
|
|
|
|
|
|
|
|
|
|
| Workflow | 环境 | 触发方式 | 测试范围 |
|
|
|
|
|
|
|----------|------|----------|----------|
|
|
|
|
|
|
| `music-room Playwright` | 测试服 (moicen.com) | push/PR 自动 + 手动 + 每日 06:30 UTC | 全部测试(含登录) |
|
|
|
|
|
|
| `production Smoke` | 正式服 (huiwings.cn) | 手动触发 + 每日 05:00 UTC | 仅访客测试(`--grep-invert "已登录"`) |
|