34-pytest-Hooks函数之获取用例执行结果

Posted 爱学习de测试小白

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了34-pytest-Hooks函数之获取用例执行结果相关的知识,希望对你有一定的参考价值。

Hooks函数之获取用例执行结果


前言

  • 本篇来学习获取用例执行结果的Hooks函数–pytest_runtest_makereport

基本使用

  • conftest.py文件中写入如下代码
# -*- coding: utf-8 -*-
# @Time    : 2022/4/7
# @Author  : 大海

import pytest

@pytest.hookimpl(hookwrapper=True, tryfirst=True)
def pytest_runtest_makereport(item, call):	
	"""
	这里item是测试用例,call是测试步骤,具体执行过程如下:		
		先执行when='setup' 返回setup 的执行结果
		然后执行when='call' 返回call 的执行结果
		最后执行when='teardown'返回teardown 的执行结果
	"""
    print('-' * 20)

    # 获取钩子方法的调用结果
    out = yield
    print('用例执行结果', out)

    # 从钩子方法的调用结果中获取测试报告
    report = out.get_result()

    print('测试报告:%s' % report)
    print('步骤:%s' % report.when)
    print('nodeid:%s' % report.nodeid)
    print('description:%s' % str(item.function.__doc__))
    print(('运行结果: %s' % report.outcome))
    
  • test_66.py 写入如下代码
# -*- coding: utf-8 -*-
# @Time    : 2022/4/7
# @Author  : 大海

import os

def test_66():
    """这是测试用例描述-66"""
    print('大家好,我是测试小白!')


if __name__ == '__main__':
    os.system('pytest -s test_66.py')

  • 查看运行结果

setup和teardown使用

  • conftest.py 添加内容如下
@pytest.fixture(scope="session", autouse=True)
def fix_a():
    print("setup 前置操作")
    yield 
    print("teardown 后置操作")
  • 运行test_66.py 查看结果

setup失败

  • 修改conftest.py文件,代码如下
@pytest.fixture(scope="session", autouse=True)
def fix_a():
    print("setup 前置操作")
    raise Exception('前置操作失败!')
    yield
    print("teardown 后置操作")
  • 运行test_66.py ,查看结果为1error

call失败情况

  • 恢复conftest.py代码,使setup 成功,修改test_66.py 文件代码,内容如下
# -*- coding: utf-8 -*-
# @Time    : 2022/4/7
# @Author  : 大海

import os

def test_66():
    """这是测试用例描述-66"""
    print('大家好,我是测试小白!')
    assert 1 != 1


if __name__ == '__main__':
    os.system('pytest -s test_66.py')

  • 运行test_66.py , 查看运行结果为1failed

teardown失败情况

  • 修改conftest.py代码,内容如下
@pytest.fixture(scope="session", autouse=True)
def fix_a():
    print("setup 前置操作")
    yield
    print("teardown 后置操作")
    raise Exception("teardown 失败了!")
  • 恢复test_66.py代码并运行,查看结果为1passed,1error

只获取call的结果

  • 修改conftest.py代码,内容如下
@pytest.hookimpl(hookwrapper=True, tryfirst=True)
def pytest_runtest_makereport(item, call):
    print('-' * 20)

    # 获取钩子方法的调用结果
    out = yield
    print('用例执行结果', out)

    # 从钩子方法的调用结果中获取测试报告
    report = out.get_result()
    if report.when == 'call':
        print('测试报告:%s' % report)
        print('步骤:%s' % report.when)
        print('nodeid:%s' % report.nodeid)
        print('description:%s' % str(item.function.__doc__))
        print(('运行结果: %s' % report.outcome))
  • 运行test_66.py,查看结果如下

以上是关于34-pytest-Hooks函数之获取用例执行结果的主要内容,如果未能解决你的问题,请参考以下文章

pytest文档35-Hooks函数之统计测试结果(pytest_terminal_summary)

pytest文档33-Hooks函数获取用例执行结果(pytest_runtest_makereport)

pytest文档33-Hooks函数获取用例执行结果(pytest_runtest_makereport)

pytest文档78 - 钩子函数pytest_runtest_makereport获取用例执行报错内容和print内容

pytest文档78 - 钩子函数pytest_runtest_makereport获取用例执行报错内容和print内容

接口自动化之pytest——用例设计原则及执行顺序