标签:操作 conf 出现 code 理解 返回 用户名 有用 stc
什么是conftets.py
? 可以理解为 是一个专门存放 fixture的配置文件
实际开发场景
? 多个测试用例文件(tets_*.py)的所有用例都需要用登录功能来作为前置操作, 那就不能把登录功能写到某个用例文件中去了
conftest.py的出现,就是为了解决上述问题,单独管理一些全局的fixture
实际案例:
? 目录方式:
?
test_case001目录下
import pytest
@pytest.fixture(scope="session")
def login():
print("====登录功能,返回token,token===")
name = "testxxx"
token = "1234qwer"
yield name, token
print("====退出登录!!!====")
@pytest.fixture(autouse=True)
def get_info(login):
name, token = login
print(f"== 每个用例都调用的外层fixture:打印用户token: {token}")
test_001 案例
import pytest
def test_get_info(login):
name, token = login
print("***基础用例:获取用户个人信息***")
print(f"用户名:{name}, token:{token}")
if __name__ == ‘__main__‘:
pytest.main(["-s", "../test_001/"])
tets_case002的conftest
import pytest
@pytest.fixture(scope="module")
def open_51(login):
name, token = login
print(f"用户 {name} 打开51job网站")
test_002 案例
def test_case2_01(open_51):
print("51job,列出所有职位用例")
def test_case2_02(open_51):
print("51job,找出所有python岗位")
testcase_003 中无init 无conftest
def test_no_fixture(login):
print("==没有__init__测试用例,", login)
testcase004中的conftest
import pytest
@pytest.fixture(scope="function")
def open_weibo(login):
name, token = login
print(f"&&& 用户 {name} 返回微博首页 &&&")
test_004 案例
class TestWeibo:
def test_case1_01(self, open_weibo):
print("查看微博热搜")
def test_case1_02(self, open_weibo):
print("查看微博评论")
跑所有案例:在最顶层的目录下 run.py
import pytest
if __name__ == ‘__main__‘:
pytest.main(["-s", "../test_case001/"])
标签:操作 conf 出现 code 理解 返回 用户名 有用 stc
原文地址:https://www.cnblogs.com/blog-123/p/14893903.html