您的位置:

pytest+allure详解

一、pytest allure视频

从视频中我们可以清晰地了解pytest+allure的基本使用方法:

# 安装pytest 
pip install pytest

# 安装pytest的allure插件 
pip install pytest-allure2

# 执行pytest测试并生成allure报告 
pytest --alluredir=./report
allure serve ./report

通过上面的步骤,我们就能快速上手pytest+allure的使用了。

二、pytest allure自动化框架

pytest+allure不仅是一个测试工具,还是一个自动化测试框架。它支持模块化测试、并发测试等功能,可以轻松应对大规模的测试任务。

举个例子,我们可以使用pytest的fixture机制来管理测试用例中的前置条件和后置条件:

fixture使用装饰器@pytest.fixture定义。
fixture也可以用autouse参数,这样就不需要在测试用例中显示调用。

@pytest.fixture()
def test_env():
    return 'test'

@pytest.fixture()
def prod_env():
    return 'prod'

def test_login(test_env):
    print(f"login with {test_env}")

def test_logout(test_env):
    print(f"logout with {test_env}")

在上面的代码中,我们定义了两个fixture:test_env和prod_env,这两个fixture都返回了字符串类型的环境变量。在test_login和test_logout函数中,我们使用了test_env来打印日志。

三、pytest allure截图

pytest+allure还支持截图功能,我们可以在测试用例执行失败时,自动截图并将截图添加到allure报告中:

@pytest.mark.parametrize('username,password', [('admin', '123456'), ('user', '654321')])
def test_login(username, password):
    if username != 'admin' or password != '123456':
        allure.attach(driver.get_screenshot_as_png(), name="test_failed", attachment_type=allure.attachment_type.PNG)
        assert False, 'login failed'

在上面的代码中,我们使用了pytest的parametrize机制来执行多次测试。如果测试用例执行失败,我们就使用allure.attach来截图,并在assert语句中抛出异常。

四、pytest allure报告

pytest+allure提供了漂亮的HTML报告,我们可以查看测试用例执行结果、用例执行时间、用例失败原因等信息。同时支持在报告中自行添加环境信息、测试人员信息等。

以下是一个示例报告:


请见附件

五、pytest allure自定义

pytest+allure还支持自定义操作,我们可以根据自己的需求添加自定义的步骤、注释、标签等信息:

from allure_commons.types import LabelType

def test_case_add_label():
    # step
    allure.step("step 1")
    assert True
    # tag
    allure.dynamic.label('test-case-id', 'TC_UI_001', LabelType.SEVERITY)
    # attachment
    allure.attach('HTML attachment', 'attach with HTML type', allure.attachment_type.HTML)

在上面的代码中,我们使用了allure.step添加了一个自定义步骤,使用了allure.dynamic.label为测试用例添加了一个标签,使用了allure.attach添加了一个HTML形式的附件。

六、pytest allure生成报告

执行以下命令,即可生成allure报告:

allure generate report_files -o report
allure open report

其中,report_files是allure报告文件的路径,-o表示输出路径。

七、pytest allure报告对比

pytest+allure还支持报告对比功能,我们可以将不同版本测试结果进行对比,以便更好地评估产品质量。

以下是一个示例对比报告:


请见附件

综上所述,pytest+allure是一个功能强大的自动化测试框架,它提供了丰富的测试机制、自定义操作、测试报告等功能。如果你还没有使用过pytest+allure,建议尝试一下,相信其会成为你自动化测试的得力助手。