欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

【Pytest】参数化测试 [ 一 ]

程序员文章站 2022-05-18 21:25:05
在测试过程中我们需要用到多组数据来运行脚本,在pytest框架的parametrized能很好的来解决我们的问题测试函数中如下操作:import pytest@pytest.mark.parametrize('actual, expect', [('3+5', 8), ('2+4', 6), ('6*9', 42)])def test_eleven(actual, expect): print(actual) print(expect)首先要导入pytest,其次我们要定义一...

在测试过程中我们需要用到多组数据来运行脚本,在pytest框架的parametrized能很好的来解决我们的问题

测试函数中如下操作:
import pytest


@pytest.mark.parametrize('actual, expect', [('3+5', 8), ('2+4', 6), ('6*9', 42)])
def test_eleven(actual, expect):
    print(actual)
    print(expect)

首先要导入pytest,其次我们要定义一个测试函数,@pytest.mark.parametrize是一个装饰器,parametrize里面是一个列表,列表里面是三个元组

actual 是定义的实际所传参
expect 是定义的预期结果值

运行后的结果如下:

============================= test session starts =============================
collecting ... collected 3 items
test_eleven.py::test_eleven[8-8] PASSED                                  [ 33%]8 8
test_eleven.py::test_eleven[6-6] PASSED                                  [ 66%]6 6
test_eleven.py::test_eleven[54-42] PASSED                                [100%]54 42

============================== 3 passed in 0.03s ==============================

如果在测试类里面,我们该怎么搞呢 ?

					请您继续往下走..........
测试类中如下操作:
import pytest


class TestTwelve:

    @pytest.mark.parametrize('actual, expect', [(3 + 5, 8), (2 + 4, 6), (6 * 9, 42)])
    def test_twelve(self, actual, expect):
        print(actual, expect)

这个是先定义一个测试类,在测试方法中引入装饰器,方法中的操作和测试函数是一样的,区别就是一个在函数上装饰,一个在方法上装饰。

运行后的结果如下:

============================= test session starts =============================
collecting ... collected 3 items
test_twelve.py::TestTwelve::test_twelve[8-8] PASSED                      [ 33%]8 8
test_twelve.py::TestTwelve::test_twelve[6-6] PASSED                      [ 66%]6 6
test_twelve.py::TestTwelve::test_twelve[54-42] PASSED                    [100%]54 42

============================== 3 passed in 0.03s ==============================
测试类/测试函数中断言操作:

测试函数中断言如下:

import pytest


@pytest.mark.parametrize('actual, expect', [(3+5, 8), (2+4, 6), (6*9, 42)])
def test_eleven(actual, expect):
    assert actual == expect

运行后的结果如下:

(python_env) F:\TESTING\BlogPosts\ReadPytest\ch1>pytest -v test_eleven.py
================================================================================= test session starts ==================================================================================
collected 3 items                                                                                                                                                                       

test_eleven.py::test_eleven[8-8] PASSED                                                                                                                                           [ 33%]
test_eleven.py::test_eleven[6-6] PASSED                                                                                                                                           [ 66%]
test_eleven.py::test_eleven[54-42] FAILED                                                                                                                                         [100%]

======================================================================================= FAILURES =======================================================================================
__________________________________________________________________________________ test_eleven[54-42] __________________________________________________________________________________

actual = 54, expect = 42

    @pytest.mark.parametrize('actual, expect', [(3+5, 8), (2+4, 6), (6*9, 42)])
    def test_eleven(actual, expect):
>       assert actual == expect
E       assert 54 == 42
E         +54
E         -42

test_eleven.py:14: AssertionError
=============================================================================== short test summary info ================================================================================
FAILED test_eleven.py::test_eleven[54-42] - assert 54 == 42
============================================================================= 1 failed, 2 passed in 0.07s ==============================================================================

测试类中断言如下:

import pytest


class TestTwelve:

    @pytest.mark.parametrize('actual, expect', [(3 + 5, 8), (2 + 4, 6), (6 * 9, 42)])
    def test_twelve(self, actual, expect):
        assert actual == expect

运行后的结果如下:

(python_env) F:\TESTING\BlogPosts\ReadPytest\ch1>pytest -v test_twelve.py
================================================================================= test session starts ==================================================================================
collected 3 items                                                                                                                                                                       

test_twelve.py::TestTwelve::test_twelve[8-8] PASSED                                                                                                                               [ 33%]
test_twelve.py::TestTwelve::test_twelve[6-6] PASSED                                                                                                                               [ 66%]
test_twelve.py::TestTwelve::test_twelve[54-54] PASSED                                                                                                                             [100%]

================================================================================== 3 passed in 0.06s ===================================================================================

上面简介了第一部分的参数化在测试中的基础使用,总结如有不当之处,还请提出疑义,后面会加以修改,多谢阅读!

始终相信你的努力,终会在某一天得到回报!!!

【Pytest】参数化测试 [ 一 ]

本文地址:https://blog.csdn.net/LIFENG0402/article/details/107347721