本文档记录初次使用Allure生成报告的过程和踩坑。
先安装allure,下载并配置环境。
安装参考文档:
https://www.cnblogs.com/wsy1103/p/10530397.html
安装好后步骤开始:
步骤一:
用allure生成report报告用数据,生成的报告数据包含2个文件:1个json文件、1个txt文件。切换到D:\Python\test>下执行:hrun test_post_api.json --alluredir=report
步骤二:
用allure创建刚才生成的report报告用数据,生成report2文件夹,-o 表示指定生成报告的文件夹,-c 表示在生成报告之前先清理之前的报告目录。
allure generate D:\Python\test\report -o D:\Python\test\report2 -c
然后使用默认浏览器打开allure报告,即可查看。
allure open D:\Python\test\report2
结束。
生成成功的效果:
-------------------------------------------------------------------------------------------------------------------------------
【常见问题】
1、若是报错提示 OSError: [WinError 6] 句柄无效,解决方法:
将下列代码添加到runner.py的test_start方法,并在文件开头import colorama,sys
以下代码供复制:
def setup_ansi_colors(suppress_colors):
convert_ansi_codes_to_win32_calls = False
if os.name == 'nt':
# Only need to init colorama with 'convert=True' when app is called
# from 'cmd.exe', 'powershell' or 'git-bash via VS Code'
convert_ansi_codes_to_win32_calls = 'TERM' not in os.environ or \
os.environ.get('TERM_PROGRAM', None) == 'vscode'
if 'CONVERT_ANSI_CODES_TO_WIN32_CALLS' in os.environ:
# explicit option is useful for cases when automatic guess fails (e.g. for Eclipse IDE)
convert_ansi_codes_to_win32_calls = os.environ.get('CONVERT_ANSI_CODES_TO_WIN32_CALLS').lower() in (
'true', '1')
colorama.init(strip=suppress_colors, convert=convert_ansi_codes_to_win32_calls)
2、若是发现返回体body中的中文编码失败了,请参考文档解决:https://blog.csdn.net/zjxht62/article/details/116305944
参考下图方法,添加部分内容到client.py的log_print方法中,因为json.dumps序列化时对中文默认使用的ascii编码.想输出真正的中文需要指定ensure_ascii=False
-----------------------------------------------------------------------------------------------------------------------------
【allure语法】
$ hrun --alluredir allure-results --clean-alluredir # 当用例格式为py文件时,可以用“pytest”替换“hrun”,作用相同
--alluredir:生成allure报告的原始数据
allure-results:原始数据的保存位置
--clean-alluredir:清除allure-results历史数据
$ allure generate allure-results -o allure-report
-o 指定生成报告的文件夹
-c 在生成报告之前先清理之前的报告目录
allure open allure-report:启动默认浏览器打开Allure测试报告