allure用例定制参数及报告效果展示

Allure + Pytest 使用demo

目的

通过Allure的定制化属性,优化Pytest的用例层测试报告的结果展示。

python版本及必要库

python 2.7
pytest 3.1.3
pytest-allure-adaptor 1.7.7

效果图

数据总览中的环境参数

allure用例定制参数及报告效果展示_第1张图片

类别中的失败用例展示

allure用例定制参数及报告效果展示_第2张图片

测试套中的测试名,id号,优先级,耗时,描述,链接,测试步骤,关联资料

allure用例定制参数及报告效果展示_第3张图片

图标中的耗时及优先级

allure用例定制参数及报告效果展示_第4张图片

时间刻度

allure用例定制参数及报告效果展示_第5张图片

用例功能分块展示

allure用例定制参数及报告效果展示_第6张图片

关联数据展示

allure用例定制参数及报告效果展示_第7张图片

具体实例代码展示说明

# coding:utf-8

import pytest
import allure


# 测试函数
@allure.step("字符串相加:{0},{1}")     # 测试步骤,可通过format机制自动获取函数参数
def str_add(str1, str2):
    print "hello"
    if not isinstance(str1, str):
        return "%s is not a string" % str1
    if not isinstance(str2, str):
        return "%s is not a string" % str2
    return str1 + str2


@allure.severity("critical")               # 优先级,包含blocker, critical, normal, minor, trivial 几个不同的等级
@allure.feature("测试模块_demo1")           # 功能块,feature功能分块时比story大,即同时存在feature和story时,feature为父节点
@allure.story("测试模块_demo2")             # 功能块,具有相同feature或story的用例将规整到相同模块下,执行时可用于筛选
@allure.issue("BUG号:123")                 # 问题表识,关联标识已有的问题,可为一个url链接地址
@allure.testcase("用例名:测试字符串相等")      # 用例标识,关联标识用例,可为一个url链接地址
@pytest.mark.parametrize("para_one, para_two",              # 用例参数
                         [("hello world", "hello world"),   # 用例参数的参数化数据
                          (4, 4),
                          ("中文", "中文")],
                         ids=["test ASCII string",          # 对应用例参数化数据的用例名
                              "test digital string",
                              "test unicode string"])
def test_case_example(para_one, para_two):
    """用例描述:测试字符串相等
    :param para_one: 参数1
    :param para_two: 参数2
    """

    # 获取参数
    paras = vars()
    # 报告中的环境参数,可用于必要环境参数的说明,相同的参数以后者为准
    allure.environment(host="172.6.12.27", test_vars=paras)
    # 关联的资料信息, 可在报告中记录保存必要的相关信息
    allure.attach("用例参数", "{0}".format(paras))
    # 调用测试函数
    res = str_add(para_one, para_two)
    # 对必要的测试中间结果数据做备份
    allure.attach("str_add返回结果", "{0}".format(res))
    # 测试步骤,对必要的测试过程加以说明
    with pytest.allure.step("测试步骤2,结果校验 {0} == {1}".format(res, para_one+para_two)):
        assert res == para_one+para_two, res


if __name__ == '__main__':
    # 执行,指定执行测试模块_demo1, 测试模块_demo2两个模块,同时指定执行的用例优先级为critical,blocker
    pytest.main(['--allure_stories=测试模块_demo1, 测试模块_demo2', '--allure_severities=critical, blocker'])

你可能感兴趣的:(Python接口测试)