pytest框架之fixture详细使用

当我们使用pytest框架写case的时候,一定要拿它的命令规范去case,这样框架才能识别到哪些case需要执行,哪些不需要执行。

用例设计原则

文件名以test_*.py文件和*_test.py

以test_开头的函数

以Test开头的类

以test_开头的方法


fixture可以当做参数传入

定义fixture跟定义普通函数差不多,唯一区别就是在函数上加个装饰器@pytest.fixture(),fixture命名不要以test开头,跟用例区分开。fixture是有返回值得,没有返回值默认为None。用例调用fixture的返回值,直接就是把fixture的函数名称当做变量名称。

ex:

import pytest

@pytest.fixture()def test1():

    a ='leo'return adef test2(test1):

    asserttest1 =='leo'if__name__=='__main__':

    pytest.main('-q test_fixture.py')

输出:============================= test session starts =============================platform win32 -- Python 3.7.0, pytest-4.0.2, py-1.7.0, pluggy-0.8.0

rootdir: C:\Program Files\PycharmProjects\exercise, inifile:collected 1 item

test_fixture.py .                                                        [100%]========================== 1 passedin0.02 seconds ===========================Process finished with exit code 0



使用多个fixture

如果用例需要用到多个fixture的返回数据,fixture也可以返回一个元祖,list或字典,然后从里面取出对应数据。

ex:


import pytest

@pytest.fixture()def test1():

    a ='leo'    b ='123456'print('传出a,b')

    return (a, b)def test2(test1):

    u = test1[0]

    p = test1[1]

    assertu =='leo'assertp =='123456'print('元祖形式正确')if__name__=='__main__':

    pytest.main('-q test_fixture.py')

输出结果:

platform win32 -- Python 3.7.0, pytest-4.0.2, py-1.7.0, pluggy-0.8.0

rootdir: C:\Program Files\PycharmProjects\exercise, inifile:collected 1 item

test_fixture.py 传出a,b

.元祖形式正确

                                                        [100%]========================== 1 passedin0.02 seconds ===========================Process finished with exit code 0


 当然也可以分成多个fixture,然后在用例中传多个fixture参数

import pytest

@pytest.fixture()def test1():

    a ='leo'print('\n传出a')

    return a

@pytest.fixture()def test2():

    b ='123456'print('传出b')

    return bdef test3(test1, test2):

    u = test1

    p = test2

    assertu =='leo'assertp =='123456'print('传入多个fixture参数正确')if__name__=='__main__':

    pytest.main('-q test_fixture.py')

输出结果:============================= test session starts =============================platform win32 -- Python 3.7.0, pytest-4.0.2, py-1.7.0, pluggy-0.8.0

rootdir: C:\Program Files\PycharmProjects\exercise, inifile:collected 1 item

test_fixture.py

传出a

传出b

.传入多个fixture参数正确


fixture互相调用

import pytest

@pytest.fixture()def test1():

    a ='leo'print('\n传出a')

    return adef test2(test1):

    asserttest1 =='leo'print('fixture传参成功')if__name__=='__main__':

    pytest.main('-q test_fixture.py')

输出结果:

platform win32 -- Python 3.7.0, pytest-4.0.2, py-1.7.0, pluggy-0.8.0

rootdir: C:\Program Files\PycharmProjects\exercise, inifile:collected 1 item

test_fixture.py

传出a

.fixture传参成功

                                                        [100%]========================== 1 passedin0.03 seconds ===========================Process finished with exit code 0


介绍完了fixture的使用方式,现在介绍一下fixture的作用范围(scope)


fixture的作用范围

fixture里面有个scope参数可以控制fixture的作用范围:session>module>class>function

-function:每一个函数或方法都会调用

-class:每一个类调用一次,一个类中可以有多个方法

-module:每一个.py文件调用一次,该文件内又有多个function和class

-session:是多个文件调用一次,可以跨.py文件调用,每个.py文件就是module


fixture源码详解

fixture(scope='function',params=None,autouse=False,ids=None,name=None):

scope:有四个级别参数"function"(默认),"class","module","session"

params:一个可选的参数列表,它将导致多个参数调用fixture功能和所有测试使用它。

autouse:如果True,则为所有测试激活fixture func可以看到它。如果为False则显示需要参考来激活fixture

ids:每个字符串id的列表,每个字符串对应于params这样他们就是测试ID的一部分。如果没有提供ID它们将从params自动生成

name:fixture的名称。这默认为装饰函数的名称。如果fixture在定义它的统一模块中使用,夹具的功能名称将被请求夹具的功能arg遮蔽,解决这个问题的一种方法时将装饰函数命令"fixture_<fixturename>"然后使用"@pytest.fixture(name='<fixturename>')"。


具体阐述一下scope四个参数的范围

scope="function"

@pytest.fixture()如果不写参数,参数就是scope="function",它的作用范围是每个测试用例来之前运行一次,销毁代码在测试用例之后运行。

import pytest

@pytest.fixture()def test1():

    a ='leo'print('\n传出a')

    return a

@pytest.fixture(scope='function')def test2():

    b ='男'print('\n传出b')

    return bdef test3(test1):

    name ='leo'print('找到name')

    asserttest1 == namedef test4(test2):

    sex ='男'print('找到sex')

    asserttest2 == sexif__name__=='__main__':

    pytest.main('-q test_fixture.py')

输出结果:

platform win32 -- Python 3.7.0, pytest-4.0.2, py-1.7.0, pluggy-0.8.0

rootdir: C:\Program Files\PycharmProjects\exercise, inifile:collected 2 items

test_fixture.py

传出a

.找到name

传出b

.找到sex

                                                      [100%]========================== 2 passedin0.04 seconds ===========================


放在类中实现结果也是一样的

import pytest

@pytest.fixture()def test1():

    a ='leo'print('\n传出a')

    return a

@pytest.fixture(scope='function')def test2():

    b ='男'print('\n传出b')

    return bclass TestCase:

    def test3(self, test1):

        name ='leo'print('找到name')

        asserttest1 == name

    def test4(self, test2):

        sex ='男'print('找到sex')

        asserttest2 == sexif__name__=='__main__':

    pytest.main(['-s','test_fixture.py'])

输出结果:

platform win32 -- Python 3.7.0, pytest-4.0.2, py-1.7.0, pluggy-0.8.0

rootdir: C:\Program Files\PycharmProjects\exercise, inifile:collected 2 items

test_fixture.py

传出a

.找到name

传出b

.找到sex

                                                      [100%]========================== 2 passedin0.03 seconds ===========================Process finished with exit code 0


scope="class"

fixture为class级别的时候,如果一个class里面有多个用例,都调用了次fixture,那么此fixture只在此class里所有用例开始前执行一次。

import pytest

@pytest.fixture(scope='class')def test1():

    b ='男'print('传出了%s, 且只在class里所有用例开始前执行一次!!!'% b)

    return bclass TestCase:

    def test3(self, test1):

        name ='男'print('找到name')

        asserttest1 == name

    def test4(self, test1):

        sex ='男'print('找到sex')

        asserttest1 == sexif__name__=='__main__':

    pytest.main(['-s','test_fixture.py'])

输出结果:

platform win32 -- Python 3.7.0, pytest-4.0.2, py-1.7.0, pluggy-0.8.0

rootdir: C:\Program Files\PycharmProjects\exercise, inifile:collected 2 items

test_fixture.py 传出了男, 且只在class里所有用例开始前执行一次!!!

.找到name

.找到sex

                                                      [100%]========================== 2 passedin0.05 seconds ===========================Process finished with exit code 0


 scope="module"

fixture为module时,在当前.py脚本里面所有用例开始前只执行一次。


import pytest

##test_fixture.py

@pytest.fixture(scope='module')def test1():

    b ='男'print('传出了%s, 且在当前py文件下执行一次!!!'% b)

    return bdef test3(test1):

    name ='男'print('找到name')

    asserttest1 == nameclass TestCase:

    def test4(self, test1):

        sex ='男'print('找到sex')

        asserttest1 == sexif__name__=='__main__':

    pytest.main(['-s','test_fixture.py'])

输出结果:============================= test session starts =============================platform win32 -- Python 3.7.0, pytest-4.0.2, py-1.7.0, pluggy-0.8.0

rootdir: C:\Program Files\PycharmProjects\exercise, inifile:collected 2 items

test_fixture.py 传出了男, 且在当前py文件下执行一次!!!

.找到sex

.找到name

                                                      [100%]========================== 2 passedin0.03 seconds ===========================Process finished with exit code 0



scope="session"


 fixture为session级别是可以跨.py模块调用的,也就是当我们有多个.py文件的用例的时候,如果多个用例只需调用一次fixture,那就可以设置为scope="session",并且写到conftest.py文件里。

conftest.py文件名称时固定的,pytest会自动识别该文件。放到项目的根目录下就可以全局调用了,如果放到某个package下,那就在改package内有效。

文件目录为


import pytest# conftest.py@pytest.fixture(scope='session')def test1():

    sex ='男'print('获取到%s'% sex)

    returnsex

import pytest# test_fixture.pydef test3(test1):

    name ='男'print('找到name')

    asserttest1 == nameif__name__=='__main__':

    pytest.main(['-s','test_fixture.py'])

import pytest# test_fixture1.pyclass TestCase:

    def test4(self, test1):

        sex ='男'print('找到sex')

        asserttest1 == sexif__name__=='__main__':

    pytest.main(['-s','test_fixture1.py'])


如果需要同时执行两个py文件,可以在cmd中在文件py文件所在目录下执行命令:pytest -s test_fixture.py test_fixture1.py 

执行结果为:

================================================= test session starts =================================================platform win32 -- Python 3.7.0, pytest-4.0.2, py-1.7.0, pluggy-0.8.0

rootdir: C:\Program Files\PycharmProjects\exercise, inifile:

collected 2 items

test_fixture.py 获取到男

找到name

.

test_fixture1.py 找到sex

.============================================== 2 passedin0.05 seconds ===============================================



调用fixture的三种方法


1.函数或类里面方法直接传fixture的函数参数名称

import pytest# test_fixture1.py@pytest.fixture()def test1():

    print('\n开始执行function')def test_a(test1):

    print('---用例a执行---')class TestCase:

    def test_b(self, test1):

        print('---用例b执行')

输出结果:

test_fixture1.py

开始执行function

.---用例a执行---开始执行function

.---用例b执行

                                                      [100%]========================== 2 passedin0.05 seconds ===========================Process finished with exit code 0


2.使用装饰器@pytest.mark.usefixtures()修饰需要运行的用例

import pytest# test_fixture1.py@pytest.fixture()def test1():

    print('\n开始执行function')

@pytest.mark.usefixtures('test1')def test_a():

    print('---用例a执行---')

@pytest.mark.usefixtures('test1')class TestCase:

    def test_b(self):

        print('---用例b执行---')

    def test_c(self):

        print('---用例c执行---')if__name__=='__main__':

    pytest.main(['-s','test_fixture1.py'])

输出结果:

platform win32 -- Python 3.7.0, pytest-4.0.2, py-1.7.0, pluggy-0.8.0

rootdir: C:\Program Files\PycharmProjects\exercise, inifile:collected 3 items

test_fixture1.py

开始执行function

.---用例a执行---开始执行function

.---用例b执行---开始执行function

.---用例c执行---                                                    [100%]========================== 3 passedin0.06 seconds ===========================Process finished with exit code 0


叠加usefixtures

如果一个方法或者一个class用例想要同时调用多个fixture,可以使用@pytest.mark.usefixture()进行叠加。注意叠加顺序,先执行的放底层,后执行的放上层。

import pytest# test_fixture1.py@pytest.fixture()def test1():

    print('\n开始执行function1')

@pytest.fixture()def test2():

    print('\n开始执行function2')

@pytest.mark.usefixtures('test1')

@pytest.mark.usefixtures('test2')def test_a():

    print('---用例a执行---')

@pytest.mark.usefixtures('test2')

@pytest.mark.usefixtures('test1')class TestCase:

    def test_b(self):

        print('---用例b执行---')

    def test_c(self):

        print('---用例c执行---')if__name__=='__main__':

    pytest.main(['-s','test_fixture1.py'])

输出结果:============================= test session starts =============================platform win32 -- Python 3.7.0, pytest-4.0.2, py-1.7.0, pluggy-0.8.0

rootdir: C:\Program Files\PycharmProjects\exercise, inifile:collected 3 items

test_fixture1.py

开始执行function2

开始执行function1

.---用例a执行---开始执行function1

开始执行function2

.---用例b执行---开始执行function1

开始执行function2

.---用例c执行---                                                    [100%]========================== 3 passedin0.03 seconds ===========================Process finished with exit code 0


usefixtures与传fixture区别

 如果fixture有返回值,那么usefixture就无法获取到返回值,这个是装饰器usefixture与用例直接传fixture参数的区别。

当fixture需要用到return出来的参数时,只能讲参数名称直接当参数传入,不需要用到return出来的参数时,两种方式都可以。



fixture自动使用autouse=True

当用例很多的时候,每次都传这个参数,会很麻烦。fixture里面有个参数autouse,默认是False没开启的,可以设置为True开启自动使用fixture功能,这样用例就不用每次都去传参了

autouse设置为True,自动调用fixture功能

import pytest# test_fixture1.py@pytest.fixture(scope='module', autouse=True)def test1():

    print('\n开始执行module')

@pytest.fixture(scope='class', autouse=True)def test2():

    print('\n开始执行class')

@pytest.fixture(scope='function', autouse=True)def test3():

    print('\n开始执行function')def test_a():

    print('---用例a执行---')def test_d():

    print('---用例d执行---')class TestCase:

    def test_b(self):

        print('---用例b执行---')

    def test_c(self):

        print('---用例c执行---')if__name__=='__main__':

    pytest.main(['-s','test_fixture1.py'])

输出结果:============================= test session starts =============================platform win32 -- Python 3.7.0, pytest-4.0.2, py-1.7.0, pluggy-0.8.0

rootdir: C:\Program Files\PycharmProjects\exercise, inifile:collected 4 items

test_fixture1.py

开始执行module

开始执行class

开始执行function

.---用例a执行---开始执行class

开始执行function

.---用例d执行---开始执行class

开始执行function

.---用例b执行---开始执行function

.---用例c执行---                                                    [100%]


conftest.py的作用范围

一个工程下可以建多个conftest.py的文件,一般在工程根目录下设置的conftest文件起到全局作用。在不同子目录下也可以放conftest.py的文件,作用范围只能在改层级以及以下目录生效。

项目实例:

目录结构:


 1.conftest在不同的层级间的作用域不一样

# conftest层级展示/conftest.pyimport pytest

@pytest.fixture(scope='session', autouse=True)def login():

    print('----准备登录----')# conftest层级展示/sougou_login/conftestimport pytest

@pytest.fixture(scope='session', autouse=True)def bai_du():

    print('-----登录百度页面-----')# conftest层级展示/sougou_login/login_websiteimport pytestclass TestCase:

    def test_login(self):

        print('hhh,成功登录百度')if__name__=='__main__':

    pytest.main(['-s','login_website.py'])

输出结果:============================= test session starts =============================platform win32 -- Python 3.7.0, pytest-4.0.2, py-1.7.0, pluggy-0.8.0

rootdir: C:\Program Files\PycharmProjects\conftest层级演示\sougou_login, inifile:collected 1 item

login_website.py ----准备登录---------登录百度页面-----.hhh,成功登录百度

                                                      [100%]========================== 1 passedin0.03 seconds ===========================Process finished with exit code 0


 2.conftest是不能跨模块调用的(这里没有使用模块调用)

# conftest层级演示/log/contfest.pyimport pytest

@pytest.fixture(scope='function', autouse=True)def log_web():

    print('打印页面日志成功')# conftest层级演示/log/log_website.pyimport pytestdef test_web():

    print('hhh,成功一次打印日志')def test_web1():

    print('hhh,成功两次打印日志')if__name__=='__main__':

    pytest.main(['-s','log_website.py'])

输出结果:============================= test session starts =============================platform win32 -- Python 3.7.0, pytest-4.0.2, py-1.7.0, pluggy-0.8.0

rootdir: C:\Program Files\PycharmProjects\conftest层级演示\log, inifile:

collected 2 items

log_website.py ----准备登录----打印页面日志成功

hhh,成功一次打印日志

.打印页面日志成功

hhh,成功两次打印日志

.========================== 2 passedin0.02 seconds ===========================

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,607评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,047评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,496评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,405评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,400评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,479评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,883评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,535评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,743评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,544评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,612评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,309评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,881评论 3 306
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,891评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,136评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,783评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,316评论 2 342