实践项目:趣头条-实惠喵后端
单元/功能 测试增量覆盖率统计
1.通过测试工具获取到全量覆盖率统计信息,输出到c.out
(使用方法见 Golang 全量覆盖率统计),拿单元测试举例:
go test -coverprofile=c.out
c.out
内容格式如下:
2.使用工具gocov
和gocov-xml
将覆盖率输出转换成xml格式的报告:
gocov convert c.out | gocov-xml > coverage.xml
gocov
安装/说明:https://github.com/axw/gocov/
gocov-xml
安装/说明:https://github.com/AlekSi/gocov-xml
3.使用工具diff-cover
获取增量覆盖率:
diff-cover coverage.xml --compare-branch=HEAD^ --html-report report.html --fail-under=80
diff-cover
安装/说明:https://github.com/Bachmann1234/diff_cover
遇到的问题总结
- 运行
diff-cover
一直返回:
No lines with coverage information in this diff.
经排查因为之前在将覆盖率统计信息转换成xml格式时,用的gocover-cobertura
工具,该工具转换后的格式 diff-cover
工具可能未做兼容,导致一直返回如上结果,按照如上步骤2解决了该问题
有疑问加站长微信联系(非本文作者)