美文网首页
[接口测试_B] 03 Pytest断言处理_assert和异常

[接口测试_B] 03 Pytest断言处理_assert和异常

作者: 乐大爷L | 来源:发表于2018-04-02 18:15 被阅读499次

    Pytest的断言方式及应用场景

    • 使用assert语句
    • 断言预期的异常
    • 断言预期的告警
    • 利用上下文信息进行断言
    • 自定义断言方式

    使用assert语句进行断言

    • pytest允许使用python的标准assert语句进行断言处理
    • 采用assert断言时,可添加备注信息,当断言失败时,备注信息会以assertionerror抛出,并在控制台输出
    import requests
    
    
    class TestAssert():
    
        def test_assert(self):
            r = requests.get('http://www.baidu.com')
            assert r.status_code == 100, "返回200说明访问成功"
    
    • 输出信息
    PS E:\python_interface_test\requests_practice> pytest -q .\test_assert.py
    F                                                                        [100%]
    ================================== FAILURES ===================================
    ___________________________ TestAssert.test_assert ____________________________
    
    self = <test_assert.TestAssert object at 0x00000221CB86C2E8>
    
        def test_assert(self):
            r = requests.get('http://www.baidu.com')
    >       assert r.status_code == 100, "返回200说明访问成功"
    E       AssertionError: 返回200说明访问成功
    E       assert 200 == 100
    E        +  where 200 = <Response [200]>.status_code
    
    test_assert.py:8: AssertionError
    1 failed in 0.43 seconds
    

    断言预期的异常

    • 在测试过程中,对某些方法进行测试时,预测输入某些特定数据,会抛出特定异常,若出现特定异常,则用例执行通过。
    • 对这类特定异常的断言,可以采用pytest中的pytest.raises()进行处理。
      以下示例对一个判断是否为闰年的方法进行测试:
    # is_leap_year.py
    def is_leap_year(year):
        # 先判断year是不是整型
        if isinstance(year, int) is not True:
            raise TypeError("传入的参数不是整数")
        elif year == 0:
            raise ValueError("公元元年是从公元一年开始!!")
        elif abs(year) != year:
            raise ValueError("传入的参数不是正整数")
        elif (year % 4 ==0 and year % 100 != 0) or year % 400 == 0:
            print("%d年是闰年" % year)
            return True
        else:
            print("%d年不是闰年" % year)
            return False
    
    1、直接用pytest.raises()处理异常
    import sys
    sys.path.append(".")
    import requests
    import pytest
    import is_leap_year
    
    class TestAssert():
        # 对一个判断是否是闰年的方法进行测试
        def test_exception_typeerror(self):
            with pytest.raises(TypeError):
                is_leap_year.is_leap_year('ss')
    
        def test_true(self):
            assert is_leap_year.is_leap_year(400) == True
    

    运行结果:

    PS E:\python_interface_test\requests_practice> pytest -q .\test_assert.py
    ..                                                                       [100%]
    2 passed in 0.31 seconds
    
    2、将异常信息存储到一个变量中,变量的类型则为异常类,包含异常的type、value和traceback等信息
    import sys
    sys.path.append(".")
    
    import requests
    import pytest
    
    import is_leap_year
    
    class TestAssert():
        def test_exception_value(self):
            with pytest.raises(ValueError) as excinfo:
                is_leap_year.is_leap_year(0)
            assert "从公元一年开始" in str(excinfo.value)
            assert excinfo.type == ValueError
    
    3、可以在用例中定义抛出的异常信息是否与预期的异常信息匹配,若不匹配则用例执行失败
    import sys
    sys.path.append(".")
    
    import requests
    import pytest
    
    import is_leap_year
    
    class TestAssert():
        def test_exception_match(self):
            with pytest.raises(ValueError, match=r'公元33元年是从公元一年开始') as excinfo:
                is_leap_year.is_leap_year(0)
            assert excinfo.type == ValueError
    

    运行结果:

       def test_exception_match(self):
            with pytest.raises(ValueError, match=r'公元33元年是从公元一年开始') as excinfo:
    >           is_leap_year.is_leap_year(0)
    E           AssertionError: Pattern '公元33元年是从公元一年开始' not found in '公元元年是从公元一年开始!!'
    
    test_assert.py:13: AssertionError
    1 failed in 0.46 seconds
    

    将match中的Pattern该为能够匹配的信息,则该用例能够执行成功。

    4、使用标记函数检查异常

    pytest.mark.xfail(raises=xx)

    import sys
    sys.path.append(".")
    
    import requests
    import pytest
    
    import is_leap_year
    
    class TestAssert():
    
        @pytest.mark.xfail(raises=ValueError)
        def test_a(self):
            is_leap_year.is_leap_year(-100)
    

    输出结果:

    PS E:\python_interface_test\requests_practice> pytest -q .\test_assert.py::TestAssert::test_a
    x                                                                        [100%]
    1 xfailed in 0.47 seconds
    

    总结

    pytest的断言方式非常简洁明确。本节主要介绍了对异常信息的断言,包括4种情况:

    • 直接断言,不添加assert语句
    • 将异常信息存储在变量中,再读取异常信息进行断言判断
    • 对异常的输出信息进行断言,异常类型、异常输出信息同时匹配成功,用例才能执行成功
    • 采用标记函数进行异常断言
      ———————————————————————————————————
      嗨喽,对测试感兴趣,可以关注大神公众号了解更多测试理论、测试技术、自动化测试、接口测试、python。。。


      开源优测.png

    相关文章

      网友评论

          本文标题:[接口测试_B] 03 Pytest断言处理_assert和异常

          本文链接:https://www.haomeiwen.com/subject/kgpacftx.html