airtest测试用例报告聚合方便查看每个用例以及跳转至具体用例

使用airtest的人都知道,测试用例全部运行结束之后,airtest没有将用例进行聚合,查看单个用例结果非常不方便,需要将报告聚合起来查看,我的本地环境文件夹目录如下:

airtest测试用例报告聚合方便查看每个用例以及跳转至具体用例_第1张图片

在当前文件夹下新建summary_template.html文件(生成html聚合报告的模板),与自己跑的myrunner.py文件,

myrunner文件代码如下:

from airtest.cli.runner import AirtestCase, run_script
from argparse import *
import airtest.report.report as report
import jinja2
import shutil
import os
import io


class CustomAirtestCase(AirtestCase):
    def setUp(self):
        print("custom setup")
        print('从这里开始')
        super(CustomAirtestCase, self).setUp()

    def tearDown(self):
        print("custom tearDown")
        super(CustomAirtestCase, self).setUp()

    def run_air(self, root_dir='C:\\Users\\Desktop\\LynkcoApp\\TestCase',
                device=['android://127.0.0.1:5037/7da89ed2']):
        # 聚合结果
        results = []
        # 获取所有用例集
        root_log = root_dir + '\\' + 'log'
        if os.path.isdir(root_log):
            shutil.rmtree(root_log)
        else:
            os.makedirs(root_log)
            print(str(root_log) + 'is created')

        for f in os.listdir(root_dir):
            if f.endswith(".air"):
                airName = f
                script = os.path.join(root_dir, f)
                print('script', script)
                log = os.path.join(root_dir, 'log' + '\\' + airName.replace('.air', ''))
                print(log)
                if os.path.isdir(log):
                    shutil.rmtree(log)
                else:
                    os.makedirs(log)
                    print(str(log) + 'is created')
                output_file = log + '\\' + 'log.html'
                args = Namespace(device=device, log=log, recording=None, script=script, compress=1,no_image=False)
                try:
                    run_script(args, AirtestCase)
                except:
                    pass
                finally:
                    rpt = report.LogToHtml(script, log)
                    rpt.report("log_template.html", output_file=output_file)
                    result = {}
                    result["name"] = airName.replace('.air', '')
                    result["result"] = rpt.test_result
                    results.append(result)
        # 生成聚合报告
        env = jinja2.Environment(
            loader=jinja2.FileSystemLoader(root_dir),
            extensions=(),
            autoescape=True
        )
        template = env.get_template("summary_template.html", root_dir)
        html = template.render({"results": results})

        output_file = os.path.join(root_dir, "summary.html")
        with io.open(output_file, 'w', encoding="utf-8") as f:
            f.write(html)
        print(output_file)


if __name__ == '__main__':
    test = CustomAirtestCase()
    device = ['android://127.0.0.1:5037/7da89ed2']
    test.run_air('C:\\Users\\Desktop\\LynkcoApp\\TestCase', device)

 

模板html文件如下:




    测试结果汇总
    


Test Statistics

{% for r in results %} {% endfor %}
案例名称 执行结果
{ {r.name}} { {"成功" if r.result else "失败"}}

运营结果:

airtest测试用例报告聚合方便查看每个用例以及跳转至具体用例_第2张图片

点击蓝色部分就可以跳转到某个具体用例

大家可以看到,聚合报告的生产使用了jinja2模板语言,这个语言类似python 的django模板语言。py文件中需要传入case路径和设备名称等。

问题一:运行

大家在运行的时候,使用python myrunner.py 运行,不要直接在pycharm下运行unittest,不然会报错

问题二:

args = Namespace(device=device, log=log, recording=None, script=script, compress=1,no_image=False) 本地airtest版本是1.1.8版本,老的版本传参不一致,这里需要修改

问题三:

生成的html语言无法跳转,这里要修改路径,

{ {r.name}},将href连接地址修改为相对路径地址,r 是一个对象

问题四:

对于有些手机,团队中使用的小米手机,版本比较高,会报相关错误信息minCap run timeout,需要增加参数

device = ['android://127.0.0.1:5037/881fe831?cap_method=JAVACAP&ori_method=ADBOR'] 在传入的device信息中增加命令操作

 

你可能感兴趣的:(python,自动化项目,python,airtest)