25-pytest-参数化生成用例标题

简介: 25-pytest-参数化生成用例标题

前言

  • 本篇来学习两种方式参数化生成用例标题

ids参数化用例标题

  • 未添加ids参数
# -*- coding: utf-8 -*-
# @Time    : 2022/3/18
# @Author  : 大海
import os
import allure
import pytest
def login(username, password):
    """登录"""
    print("输入账号:%s" % username)
    print("输入密码:%s" % password)
    # 返回
    return {"code": 0, "msg": "success!"}
# 输入数据和期望值
test_data = [
    ({"username": "user1", "password": "123456"}, "success!"),
    ({"username": "user2", "password": "1234567"}, "failed!"),
    ({"username": "user3", "password": "12345678"}, "success!"),
]
@allure.story("验证登录功能")
@pytest.mark.parametrize("test_input,expected", test_data)
def test_login(test_input, expected):
    """验证登录功能"""
    # 获取函数返回结果
    result = login(test_input["username"], test_input["password"])
    # 断言
    assert result["msg"] == expected
if __name__ == '__main__':
    os.system('pytest -s test_45.py --alluredir=./allure_report --clean-alluredir')
    os.system('allure serve ./allure_report')
  • 查看报告
  • 添加ids参数
# -*- coding: utf-8 -*-
# @Time    : 2022/3/18
# @Author  : 大海
import os
import allure
import pytest
def login(username, password):
    """登录"""
    print("输入账号:%s" % username)
    print("输入密码:%s" % password)
    # 返回
    return {"code": 0, "msg": "success!"}
# 输入数据和期望值
test_data = [
    ({"username": "user1", "password": "123456"}, "success!"),
    ({"username": "user2", "password": "1234567"}, "failed!"),
    ({"username": "user3", "password": "12345678"}, "success!"),
]
@allure.story("验证登录功能")
@pytest.mark.parametrize("test_input,expected", test_data, ids=[
    "输入正确账号,密码,登录成功",
    "输入错误账号,密码,登录失败",
    "输入正确账号,密码,登录成功",
])
def test_login(test_input, expected):
    """验证登录功能"""
    # 获取函数返回结果
    result = login(test_input["username"], test_input["password"])
    # 断言
    assert result["msg"] == expected
if __name__ == '__main__':
    os.system('pytest -s test_45.py --alluredir=./allure_report --clean-alluredir')
    os.system('allure serve ./allure_report')
  • 查看报告

allure.title参数化用例标题

  • parametrize和allure.title结合使用
# -*- coding: utf-8 -*-
# @Time    : 2022/3/18
# @Author  : 大海
import os
import allure
import pytest
def login(username, password):
    """登录"""
    print("输入账号:%s" % username)
    print("输入密码:%s" % password)
    # 返回
    return {"code": 0, "msg": "success!"}
# 输入数据和期望值
test_data = [
    ({"username": "user1", "password": "12345"}, "success!", "输入正确账号,密码,登录成功"),
    ({"username": "user2", "password": "123456"}, "failed!", "输入错误账号,密码,登录失败"),
    ({"username": "user3", "password": "1234567"}, "success!", "输入正确账号,密码,登录成功"),
]
@allure.story("验证登录功能")
@allure.title("{title}")
@pytest.mark.parametrize("test_input,expected,title", test_data)
def test_login(test_input, expected, title):
    """验证登录功能"""
    # 获取函数返回结果
    result = login(test_input["username"], test_input["password"])
    # 断言
    assert result["msg"] == expected
if __name__ == '__main__':
    os.system('pytest -s test_46.py --alluredir=./allure_report --clean-alluredir')
    os.system('allure serve ./allure_report')
  • 查看报告

allure.dynamic生成用例标题

  • allure.dynamic.title(‘标题’)
# -*- coding: utf-8 -*-
# @Time    : 2022/3/18
# @Author  : 大海
# -*- coding: utf-8 -*-
# @Time    : 2022/3/18
# @Author  : 大海
import os
import allure
import pytest
def login(username, password):
    """登录"""
    print("输入账号:%s" % username)
    print("输入密码:%s" % password)
    # 返回
    return {"code": 0, "msg": "success!"}
# 输入数据和期望值
test_data = [
    ({"username": "user1", "password": "12345"}, "success!", "输入正确账号,密码,登录成功"),
    ({"username": "user2", "password": "123456"}, "failed!", "输入错误账号,密码,登录失败"),
    ({"username": "user3", "password": "1234567"}, "success!", "输入正确账号,密码,登录成功"),
]
@allure.story("验证登录功能")
@pytest.mark.parametrize("test_input,expected,title", test_data)
def test_login(test_input, expected, title):
    """验证登录功能"""
    # 获取函数返回结果
    result = login(test_input["username"], test_input["password"])
    # 断言
    assert result["msg"] == expected
    allure.dynamic.title(title)
if __name__ == '__main__':
    os.system('pytest -s test_47.py --alluredir=./allure_report --clean-alluredir')
    os.system('allure serve ./allure_report')
  • 查看报告
  • 属性

allure.dynamic.feature :模块名称

allure.dynamic.link:测试报告中的链接

allure.dynamic.issue:缺陷

allure.dynamic.testcase:测试用例的链接地址

allure.dynamic.story:用户故事

allure.dynamic.title:用例的标题

allure.dynamic.description:用例描述

allure.severity :用例等级


相关文章
|
6月前
|
测试技术
Allure2添加用例标题、用例步骤
在Allure2报告中,可以通过`@allure.title`装饰器添加用例标题以增强可读性。标题可参数化或动态更新。同时,Allure2支持两种添加步骤方法:1) 使用`@allure.step`定义测试步骤并在用例中调用;2) 使用`with allure.step()`结构在代码块中添加步骤,提高测试流程的清晰度。这些功能提升了报告的易读性和测试的详细度。
63 3
|
6月前
|
测试技术
Pytest参数化用例
`Pytest`的参数化功能用于通过参数生成和执行多个测试用例。使用`@pytest.mark.parametrize`装饰器,可传入不同数据,如单参数或多个参数,并可设置`ids`为用例命名。例如,一个搜索功能测试会根据提供的关键词列表动态生成用例。另外,通过创建`conftest.py`文件并定义函数,可以显示中文用例名称。同时,可以利用笛卡尔积实现更复杂的参数组合。
51 0
|
测试技术 数据处理
Pytest参数化详解-上
Pytest参数化详解-上
61 0
|
测试技术
30-pytest-重复执行用例-pytest-repeat
30-pytest-重复执行用例-pytest-repeat
30-pytest-重复执行用例-pytest-repeat
|
测试技术 数据处理
Pytest参数化详解-下
Pytest参数化详解-下
98 0
|
测试技术 Python
pytest--运行指定的测试和参数化
pytest--运行指定的测试和参数化
|
测试技术
15-pytest-自定义用例执行顺序
15-pytest-自定义用例执行顺序
|
测试技术 Python
02-pytest-用例运行规则
02-pytest-用例运行规则
|
测试技术
pytest学习和使用25-当看到allure的动态生成标题和描述的特性时,直言简直太灵活了(allure.dynamic使用)
pytest学习和使用25-当看到allure的动态生成标题和描述的特性时,直言简直太灵活了(allure.dynamic使用)
132 0
pytest学习和使用25-当看到allure的动态生成标题和描述的特性时,直言简直太灵活了(allure.dynamic使用)
|
测试技术 C++
pytest pytest.ini配置 用例分组 用例跳过
pytest pytest.ini配置 用例分组 用例跳过