其他分享
首页 > 其他分享> > Pytest系列(2-1)-用例状态

Pytest系列(2-1)-用例状态

作者:互联网

用例执行状态

用例执行完成后,每条用例都有自己的状态,常见的状态有

 

error的栗子一:参数不存在

 
def pwd():
    print("获取用户名")
    a = "yygirl"
    assert a == "yygirl123"


def test_1(pwd):
    assert user == "yygirl"
 

为啥是error

pwd参数并不存在,所以用例执行error

 

error的栗子二:fixture有错

 
@pytest.fixture()
def user():
    print("获取用户名")
    a = "yygirl"
    assert a == "yygirl123"
    return a


def test_1(user):
    assert user == "yygirl"
 

为啥是error?

 

failed的栗子一

 
@pytest.fixture()
def pwd():
    print("获取密码")
    a = "yygirl"
    return a


def test_2(pwd):
    assert pwd == "yygirl123"
 

为啥是failed

因为fixture返回的变量断言失败

 

failed的栗子二

 
@pytest.fixture()
def pwd():
    print("获取密码")
    a = "polo"
    return a


def test_2(pwd):
    raise NameError
    assert pwd == "polo"
 

为啥是failed

因为用例执行期间抛出了异常

 

总结

 

xfail的栗子

# 断言装饰器
@pytest.mark.xfail(raises=ZeroDivisionError)
def test_f():
    1 / 0

为啥是xfail

代码有异常,且和raised的异常类匹配,所以是xfail(算测试通过的一种,表示符合期望捕捉到的异常),并不算failed

如果和raised的异常类不匹配,则是failed

标签:系列,failed,fixture,用例,pwd,Pytest,error,def
来源: https://www.cnblogs.com/kxtomato/p/16600590.html