Pytest笔记

一、pytest单元测试框架

1、什么是单元测试框架

单元测试框架是指在软件测试开发当中,针对软件的最小单位(函数、方法)进行正确性的检查测试

2、单元测试框架有哪些

java:junit、testng

python:unittest、pytest

3、单元测试框架主要做什么

测试发现:从多个文件里面去找到我们测试用例

测试执行:按照一定的顺序和规则去执行,并生成结果

测试判断:通过断言判断预期结果和实际结果的差异

测试报告:统计测试进度,耗时,通过率,生成测试报告

二、单元测试框架和自动化测试框架有什么关系?

1、什么是自动化测试框架

2、作用

提高测试效率,降低维护成本

减少人工干预,提高测试的准确性,增加代码的重用性

核心思想是让不懂代码的人也能够通过这个框架去实现自动化测试

3、pytest单元测试框架和自动化测试框架的关系

单元测试框架:只是自动化测试框架中的组成部分之一

pom设计模式:只是自动化测试框架中的组成部分之一

数据驱动...

关键字驱动...

全局配置文件的封装...

日志监控...

selenium、requests二次封装...

断言

报告邮件等...

三、pytest简介

1、pytest是一个非常成熟的python的单元测试框架,比unittest更灵活,功能更强大

2、pytest可以和selenium、requests、appium结合实现web自动化、接口自动化、app自动化

3、pytest可以实现测试用例的跳过以及reruns失败用例重试

4、pytest可以和allure生成美观的测试报告

5、pytest可以和jenkins持续集成

6、pytest有很多非常强大的插件,并且这些插件能够实现很多的实用的操作

pytest  #pip install -U pytest

pytest-html  #生成html格式的自动化测试报告

pytest-xdist  #测试用例分布式执行,多CPU分发

pytest-ordering  #用于改变测试用例的执行顺序

pytest-rerunfailures  #用例失败后重跑

allure-pytest  #用于生成美观的测试报告

#pip install -r requirements.txt  #使用模块文件安装模块

四、使用pytest,默认的测试用例的规则以及基础应用

1、模块名必须以test_开头或者_test结尾

2、测试类必须以Test开头,并且不能有init方法

3、测试方法必须以test开头

五、pytest测试用例的运行方式

1、主函数模式

        运行所有:pytest.main()

        指定模块:pytest.main(['-vs', 'test_login.py'])

        指定目录:pytest.main(['-vs', './interface_testcase'])

        通过nodeid指定用例运行:nodeid由包名、文件名、分隔符、类名、函数名组成:

                pytest.main(['-vs', './interface_testcase/test_interface.py::test_04_func'])

                pytest.main(['-vs', './interface_testcase/test_interface.py::TestInterface::test_04_func'])

2、命令行模式

        运行所有:pytest

        指定模块:pytest -vs test_login.py

        指定目录:pytest -vs ./interface_testcase

        通过nodeid指定用例运行:

                pytest -vs ./interface_testcase/test_interface.py::test_04_func

                pytest -vs ./interface_testcase/test_interface.py::TestInterface::test_04_func

参数详解:

        -s:表示输出调试信息,包括print打印的信息

        -v:显示更详细的信息

        -vs:这两个参数一起用

        -n:支持多线程或者分布式运行测试用例(后跟线程数)

                如:pytest.main(['-vs', './testcase/test_login.py', '-n=2'])

                如:pytest -vs ./testcase/test_login.py -n 2

        --reruns:失败用例重跑(后跟重跑次数)

                如:pytest.main(['-vs', './testcase/test_login.py', '--reruns=2'])

                如:pytest -vs ./testcase/test_login.py --reruns 2

        -x:只要有一个用例失败用例停止执行

        --maxfail=2:只要失败2个用例就停止执行

        -k:根据测试用例部分字符串指定测试用例(后跟包含字符串)

                如:pytest -vs ./testcase/test_login.py -k "ao"

        --html:生成html格式的测试报告

                如:--html=templates/report.html

3、通过读取pytest.ini配置文件运行

pytest.ini这个文件是pytest单元测试框架的核心配置完文件

        位置:一般放在项目的根目录下

        编码:必须是ANSI,可以使用notepad++修改编码格式

        作用:改变pytest默认的行为

        运行规则:不管是主函数的模式运行还是命令行模式运行,都会去读取这个配置文件

pytest.ini配置文件

[pytest]

addopts = -v -p no:warnings --html=templates/report.html  #命令行参数,用空格分隔

testpaths = tests  #测试用例文件夹,可自己配置

python_files = test_*.py  #配置测试搜索的模块文件名称

python_classes = Test*  #配置测试搜索的测试类名

python_functions = test_*  #配置测试搜索的测试函数名

markers =

    smoke:冒烟用例

    usermanage:用户管理模块

    productmanage:商品管理模块

六、pytest执行测试用例的顺序是怎样的

unittest:ascll的大小来决定执行的顺序

pytest:默认从上到下

        改变默认执行顺序:使用mark标记

        使用@pytest.mark.run(order=1)装饰器标记用例函数,order越小越先执行

七、如何分组执行(冒烟,分模块执行,分接口和web执行)

smoke:冒烟用例,分布在各个模块里面

1、需要在测试用例前面使用@pytest.mark.smoke标记用例

2、执行时加上-m

        如:pytest -vs -m "smoke"

        如:pytest -vs -m "smoke or usermanage"

八、pytest跳过测试用例

1、无条件跳过

        标记:@pytest.mark.skip(reason="")

2、有条件跳过

        标记:@pytest.mark.skipif(age>=18, reason="")

九、前后置(固件、夹具)

setup/teardown,setup_class/teardown_class

1、为什么需要这些功能?

比如web自动化用例执行之前,需要打开浏览器,用力执行之后需要关闭浏览器

class Test_01:

    def setup_class(self):

        print("在每个类执行之前的初始化工作");

    def setup(self):

        print("在每个用例执行之前的初始化逻辑");

    def test_01(self):

        print("测试用例");

    def teardown(self):

        print("在每个用例执行之后的后置步骤 ");

    def teardown_class(self):

        print("在每个类执行之后的后置步骤 ");

和unittest框架不一样,函数名全部都是小写

十、fixture装饰器实现部分用例的前后置

@pytest.fixture(scope="", params="", autouse="", name="")

1、scope:表示的使被@pytest.fixture标记的函数的作用域(function(默认) ,class,module,package/session)

2、params:参数化(支持列表[],元组(),字典列表{[], [], []},元组字典({}, {}, {}))

3、autouse:是否自动执行,False(默认)

4、ids:当使用params参数化时,给每一个值设置一个变量名

5、name:给被@pytest.fixture标记的函数取一个别名(当取了别名之后,原来的名称便用不了了)

@pytest.fixture(scope="function", params=["params1", "params2", "params3"], ids=["p1", "p2", "p3"], name="mf")

def my_fixture(request):

    print("前置") # 前置逻辑

    yield request.param # 将params的值传给用例(yield分隔前后置逻辑,不能使用return返回,如果使用return则无法执行后置逻辑)

    print("后置") # 后置逻辑

class TestFixture:

    def test_01(self):

        print("测试用例test_01")

    def test_02(self, my_fixture):

        print("测试用例 test_02 ")

        print("==="+str(my_fixture)+"===")

十一、使用conftest.py和@pytest.fixture一起实现全局的前后置应用

1、conftest.py文件使单独存放的一个夹具配置文件,名称固定不能修改

2、可以在不同的py文件中使用同一个fixture函数

3、原则上conftest.py需要和运行的用例放在同一层,并且不需要做任何的import导入操作

#conftest.py文件

@pytest.fixture(scope="function", params=["params1", "params2", "params3"], ids=["p1", "p2", "p3"], name="mf")

def my_fixture(request):

    print("前置") # 前置逻辑

    yield request.param # 将params的值传给用例(yield分隔前后置逻辑,不能使用return返回,如果使用return则无法执行后置逻辑)

    print("后置") # 后置逻辑

#测试类

class TestFixture:

    def test_01(self):

        print("测试用例test_01")

    def test_02(self, my_fixture):

        print("测试用例 test_02 ")

        print("==="+str(my_fixture)+"===")

总结:

setup/teardown 作用于当前类或子类的所有用例

setup_class/teardown_class 作用于当前文件的所有类

@pytest.fixture() 作用于部分用例或者所有用例

conftest.py和@pytest.fixture()结合使用,作用于全局的所用用例

十二、断言

assert 1==2

十三、pytest结合allure-pytest模块生成allure测试报告

allure下载地址:https://github.com/allure-framework/allure2/releases

1、下载.zip文件,解压到本地,配置bin环境变量,验证配置是否成功allure --version

2、生成json格式临时报告

pytest.ini配置文件

[pytest]

addopts = -vs  --alluredir ./allure_temp

3、生成allure报告

pytest.main()

os.system("allure generate ./allure_temp -o ./report --clean") 

allure generate  固定生成allure报告命令

./allure_temp 找到临时报告

-o ./report输出到指定目录下

--clean 清除原报告目录下的报告

你可能感兴趣的:(Pytest笔记)