Skip to content

Latest commit

 

History

History
83 lines (57 loc) · 2.09 KB

File metadata and controls

83 lines (57 loc) · 2.09 KB

测试策略

本项目是 Docker 镜像,测试重点是构建验证和运行时验证。

构建验证

# 构建镜像
docker build -t bloodstar/hexo .

# 验证构建成功
docker images bloodstar/hexo
# 应看到刚刚构建的镜像

运行时验证

# 创建并启动测试容器
docker create --name=hexo-test \
  -e HEXO_SERVER_PORT=4000 \
  -e GIT_USER="test" \
  -e GIT_EMAIL="test@test.com" \
  -v /tmp/hexo-test-blog:/app \
  -p 4000:4000 \
  bloodstar/hexo

docker start hexo-test

# 等待启动
sleep 5

# 验证 hexo server 是否响应
curl -s -o /dev/null -w "%{http_code}" http://localhost:4000
# 应返回 200

# 验证容器内 pm2 进程
docker exec hexo-test pm2 list
# 应显示 hexo_run 进程状态为 online

# 快速清理
docker stop hexo-test && docker rm hexo-test && rm -rf /tmp/hexo-test-blog

CI 行为

CI 工作流(.github/workflows/Build Image.yml)不会运行上述测试,仅执行多架构构建并推送。如需在 CI 中加入测试,需添加测试步骤。

自动化测试脚本

参见 tests/docker_test.sh,执行后生成测试报告到 test-reports/ 目录。

bash tests/docker_test.sh
cat test-reports/report-*.md

测试报告

每次运行测试脚本后,会在 test-reports/ 目录生成结构化 Markdown 报告。

测试报告分析

每次测试后需对报告进行结构化分析,生成 test-reports/analysis-{时间戳}.md,逐项评估:

结果 处理方式
✅ 通过 验证指标是否符合预期
❌ 失败 判断根因,按决策树处理

失败处理决策树: 阻断性问题 → 立即修复;非阻断性问题 → 修复/挂起/搁置;基础设施问题 → 标记后忽略。

详细流程见经验库 08-testing/05-test-report-analysis-workflow.md

报告内容

  • 测试时间和环境
  • 逐项测试结果(构建、HTTP、进程)
  • 镜像信息(大小、创建时间)
  • 容器内软件版本(Node.js、npm、Git)
  • 总结统计(通过/失败计数)

示例报告见 test-reports/report-20260608-013116.md