使用Airtest批量执行案例脚本并聚合报告的方法

通过搜集网络上已有的解决方案以及自己研究airtest底层的代码,整理出适合大致的批量执行Airtest脚本的解决方法。

效果图如下:

 

 

 

代码目录结构:使用Airtest批量执行案例脚本并聚合报告的方法_第1张图片

 

执行结果图:

使用Airtest批量执行案例脚本并聚合报告的方法_第2张图片

点击案例名称调整至详细报告:

使用Airtest批量执行案例脚本并聚合报告的方法_第3张图片

解决方案:

在Python3.6环境下新建myRunner.py文件:编写如下代码

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")
        # add var/function/class/.. to globals
        # self.scope["hunter"] = "i am hunter"
        # self.scope["add"] = lambda x: x+1

        # exec setup script
        # self.exec_other_script("setup.owl")
        super(CustomAirtestCase, self).setUp()

    def tearDown(self):
        print("custom tearDown")
        # exec teardown script
        # self.exec_other_script("teardown.owl")
        super(CustomAirtestCase, self).setUp()

    def run_air(self, root_dir='D:\\tools\\airtestCase\\案例集', device=['android://127.0.0.1:5037/99.12.74.40:7281']):
        # 聚合结果
        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"):
                # f为.air案例名称:手机银行.air
                airName = f
                script = os.path.join(root_dir, f)
                # airName_path为.air的全路径:D:\tools\airtestCase\案例集\log\手机银行
                print(script)
                # 日志存放路径和名称:D:\tools\airtestCase\案例集\log\手机银行1
                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)
                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/99.12.74.40:7237']
    test.run_air('D:\\tools\\airtestCase\\案例集', device)

 myRunner.py文件导入了底层的report.py和runner.py文件,

可以直接调用底层的方法run_script执行案例,LogToHtml方法生成报告,这样的好处是不需要去修改和维护底层airtest库文件,(网上比较多的做法直接修改airtest底层库文件,这种方法就需要不断维护底层的库文件)

myRunner.py中最重要的方法run_air的思想是,

1.遍历根目录下的所有.air文件

2.调用run_script方法执行案例(IDE上的执行案例实际上就是运行该方法),

3.执行LogToHtml生成log.html报告,并将第二步执行的结果存放到result中

前三步完成后:将结果聚合起来:

报告模板文件summary_template.html:




    测试结果汇总
    


Test Statistics

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

你可能感兴趣的:(自动化测试学习,Python)