Python Pytest自动化测试框架 fixtures

Time will tell.

一、Fixture介绍

fixture是 Pytest 特有的功能,它用pytest.fixture标识,定义在函数前面。在编写测试函数的时候,可以将此函数名称做为传入参数, Pytest 将会以依赖注入方式,将该函数的返回值作为测试函数的传入参数。

fixture有明确的名字,在其他函数,模块,类或整个工程调用它时会被激活。

fixture是基于模块来执行的,每个 fixture 的名字就可以触发一个fixture的函数,它自身也可以调用其他的fixture

我们可以把fixture看做是资源,在你的测试用例执行之前需要去配置这些资源,执行完后需要去释放资源。比如 module类型的fixture,适合于那些许多测试用例都只需要执行一次的操作。

fixture还提供了参数化功能,根据配置和不同组件来选择不同的参数。

fixture主要的目的是为了提供一种可靠和可重复性的手段去运行那些最基本的测试内容。比如在测试网站的功能时,每个测试用例都要登录和退出,利用fixture就可以只做一次,否则每个测试用例都要做这两步也是冗余。

二、Fixture基础实例

把一个函数定义为 Fixture 很简单,只要在函数声明之前加上@pytest.fixture。其他函数要来调用这个Fixture,只用把它当做一个输入的参数即可。

代码:

import pytest

@pytest.fixture()
def before():
    print '\nBefore each test'

def test_1(before):
    print 'test_1()'

def test_2(before):
    print 'test_2()'
    assert 0    # For test purpose

结果:

(wda_python) bash-3.2$ pytest -q test_smtpsimple.py 
.F                                                                                                                                 [100%]
================================================================ FAILURES ================================================================
_________________________________________________________________ test_2 _________________________________________________________________

before = None

    def test_2(before):
        print 'test_2()'
>       assert 0    # For test purpose
E       assert 0

test_smtpsimple.py:12: AssertionError
--------------------------------------------------------- Captured stdout setup ----------------------------------------------------------

Before each test
---------------------------------------------------------- Captured stdout call ----------------------------------------------------------
test_2()
1 failed, 1 passed in 0.09 seconds
(wda_python) bash-3.2$ 

三、调用fixture

  1. 在测试用例中直接调用它,例如上面的基础实例。

  2. fixture decorator调用fixture

可以用以下3种不同的方式来写,我只变化了函数名字和类名字,内容没有变。

第一种是每个函数前声明,第二种是封装在类里,类里的每个成员函数声明,第三种是封装在类里在前声明。在可以看到3种不同方式的运行结果都是一样。

import pytest

@pytest.fixture()
def before():
    print '\nBefore each test'

@pytest.mark.usefixtures("before")
def test_1():
    print 'test_1()'

@pytest.mark.usefixtures("before")
def test_2():
    print 'test_2()'

class Test1:
    @pytest.mark.usefixtures("before")
    def test_3(self):
        print 'test_3()'

    @pytest.mark.usefixtures("before")
    def test_4(self):
        print 'test_4()'

@pytest.mark.usefixtures("before")
class Test2:
    def test_5(self):
        print 'test_5()'

    def test_6(self):
        print 'test_6()'

我们用pytest -v -s test_module.py运行详细模式测试并打印输出:

================================================== test session starts ===================================================
platform darwin -- Python 2.7.15, pytest-4.1.0, py-1.7.0, pluggy-0.8.0 -- /Users/jackey/Documents/iOS/code/iOS-Auto/MyPyEnv/wda_python/bin/python2.7
cachedir: .pytest_cache
rootdir: /Users/jackey/Documents/iOS/code/iOS-Auto/Agent_Test, inifile:
collected 6 items                                                                                                        

test_smtpsimple.py::test_1 
Before each test
test_1()
PASSED
test_smtpsimple.py::test_2 
Before each test
test_2()
PASSED
test_smtpsimple.py::Test1::test_3 
Before each test
test_3()
PASSED
test_smtpsimple.py::Test1::test_4 
Before each test
test_4()
PASSED
test_smtpsimple.py::Test2::test_5 
Before each test
test_5()
PASSED
test_smtpsimple.py::Test2::test_6 
Before each test
test_6()
PASSED

================================================ 6 passed in 0.06 seconds ================================================
(wda_python) bash-3.2$ 

  1. pytest fixture scope

fixture在创建的时候有一个关键字参数 scope:

scope='session',它将只运行一次,不管它在哪里定义。

scope='class'表示每个类会运行一次。

scope='module'表示每个module的所有test只运行一次。

scope='function'表示每个test都运行, scope的默认值。

实例代码:

import pytest
import time

@pytest.fixture(scope="module")
def mod_header(request):
    print '\n------------------'
    print 'module   : %s' % request.module.__name__
    print '-------------------'

@pytest.fixture(scope="function")
def func_header(request):
    print '\n------------------'
    print 'function:    %s' % request.module.__name__
    print 'time:        %s' % time.asctime()
    print '-------------------'

def test_1(mod_header,func_header):
    print 'in test_1()'

def test_2(mod_header,func_header):
    print 'in test_2()'

结果:

================================================== test session starts ===================================================
platform darwin -- Python 2.7.15, pytest-4.1.0, py-1.7.0, pluggy-0.8.0 -- /Users/jackey/Documents/iOS/code/iOS-Auto/MyPyEnv/wda_python/bin/python2.7
cachedir: .pytest_cache
rootdir: /Users/jackey/Documents/iOS/code/iOS-Auto/Agent_Test, inifile:
collected 2 items                                                                                                        

test_smtpsimple.py::test_1 
------------------
module   : test_smtpsimple
-------------------

------------------
function:    test_smtpsimple
time:        Sun Jan 13 12:19:25 2019
-------------------
in test_1()
PASSED
test_smtpsimple.py::test_2 
------------------
function:    test_smtpsimple
time:        Sun Jan 13 12:19:25 2019
-------------------
in test_2()
PASSED

================================================ 2 passed in 0.04 seconds ================================================
(wda_python) bash-3.2$ 

可以看到module在整个 module 中只执行了一次。

  1. 用 autos 调用 fixture

    ixture decorator 一个 optional 的参数是autouse,默认设置为False

    当默认为False,就可以选择用上面两种方式来试用fixture。

    当设置为True时,在一个session内的所有的test都会自动调用这个 fixture。

    权限大,责任也大,所以该功能用时也要谨慎小心。

上面的例子可以这样写,效果也是一样的:

import pytest
import time

@pytest.fixture(scope="module", autouse=True)
def mod_header(request):
    print '\n------------------'
    print 'module   : %s' % request.module.__name__
    print '-------------------'

@pytest.fixture(scope="function", autouse=True)
def func_header(request):
    print '\n------------------'
    print 'function:    %s' % request.module.__name__
    print 'time:        %s' % time.asctime()
    print '-------------------'

def test_1():
    print 'in test_1()'

def test_2():
    print 'in test_2()'

结果:

================================================== test session starts ===================================================
platform darwin -- Python 2.7.15, pytest-4.1.0, py-1.7.0, pluggy-0.8.0 -- /Users/jackey/Documents/iOS/code/iOS-Auto/MyPyEnv/wda_python/bin/python2.7
cachedir: .pytest_cache
rootdir: /Users/jackey/Documents/iOS/code/iOS-Auto/Agent_Test, inifile:
collected 2 items                                                                                                        

test_smtpsimple.py::test_1 
------------------
module   : test_smtpsimple
-------------------

------------------
function:    test_smtpsimple
time:        Sun Jan 13 12:34:59 2019
-------------------
in test_1()
PASSED
test_smtpsimple.py::test_2 
------------------
function:    test_smtpsimple
time:        Sun Jan 13 12:34:59 2019
-------------------
in test_2()
PASSED

================================================ 2 passed in 0.04 seconds ================================================
(wda_python) bash-3.2$ 

  1. fixture 返回值

    在上面的例子中,fixture 返回值都是默认None,我们可以选择让 fixture 返回我们需要的东西。如果你的 fixture 需要配置一些数据,读个文件,或者连接一个数据库,那么你可以让 fixture 返回这些数据或资源。

    如何带参数,可以把参数赋值给params,默认是None。对于param里面的每个值,fixture都会去调用执行一次,就像执行 for 循环一样把params里的值遍历一次。

import pytest

@pytest.fixture(params=[1,2,3])
def test_data(request):
    return request.param

def test_not_2(test_data):
    print 'test_data: %s' % test_data
    assert test_data != 2

结果:

========================================================== test session starts ===========================================================
platform darwin -- Python 2.7.15, pytest-4.1.0, py-1.7.0, pluggy-0.8.0 -- /Users/jackey/Documents/iOS/code/iOS-Auto/MyPyEnv/wda_python/bin/python2.7
cachedir: .pytest_cache
rootdir: /Users/jackey/Documents/iOS/code/iOS-Auto/Agent_Test, inifile:
collected 3 items                                                                                                                        

test_smtpsimple.py::test_not_2[1] test_data: 1
PASSED
test_smtpsimple.py::test_not_2[2] test_data: 2
FAILED
test_smtpsimple.py::test_not_2[3] test_data: 3
PASSED

================================================================ FAILURES ================================================================
_____________________________________________________________ test_not_2[2] ______________________________________________________________

test_data = 2

    def test_not_2(test_data):
        print 'test_data: %s' % test_data
>       assert test_data != 2
E       assert 2 != 2

test_smtpsimple.py:9: AssertionError
=================================================== 1 failed, 2 passed in 0.09 seconds ===================================================
(wda_python) bash-3.2$ 

可以看到test_not_2里面把用test_data里面定义的3个参数运行里三次。

  1. conftest.py配置

    如果我们要实现一个测试场景: 用例1需要先登录, 用例2不需要先登录,用例3需要先登录。脚本我们可能会这样写:

#coding: utf-8

import pytest

@pytest.fixture()
def login():
    print '输入账号、密码登录'

def test_step_1(login):
    print '用例步骤1:登录之后其它动作111'

def test_step_2(): #不需要登录
    print '用例步骤2: 不需要登录, 操作222'

def test_step_3(login):
    print '用例步骤3:登录之后其它动作333'

if __name__ == "__main__":
    pytest.main(["-s", "test_smtpsimple.py"])

结果:

========================================================== test session starts ===========================================================
platform darwin -- Python 2.7.15, pytest-4.1.0, py-1.7.0, pluggy-0.8.0
rootdir: /Users/jackey/Documents/iOS/code/iOS-Auto/Agent_Test, inifile:
collected 3 items                                                                                                                        

test_smtpsimple.py 输入账号、密码登录
用例步骤1:登录之后其它动作111
.用例步骤2: 不需要登录, 操作222
.输入账号、密码登录
用例步骤3:登录之后其它动作333
.

======================================================== 3 passed in 0.05 seconds ========================================================
(wda_python) bash-3.2$ 

上面一个案例是在同一个.py文件中,多个用例调用一个登陆功能,如果有多个.py的文件都需要调用这个登陆功能的话,那就不能把登陆写到用例里面去了。
此时应该要有一个配置文件,单独管理一些预置的操作场景,pytest 里面默认读取conftest.py里面的配置

conftest.py配置需要注意以下点:

  • conftest.py配置脚本名称是固定的,不能改名称。
  • conftest.py与运行的用例要在同一个pakage下,并且有init.py文件。
  • 不需要 import 导入conftest.py,pytest 用例会自动查找。

conftest.py

#coding: utf-8

from test_foocompare import Foo
import pytest

@pytest.fixture()
def login():
    print '输入账号、密码登录'

test_simple.py

#coding: utf-8

import pytest

def test_step_1(login):
    print '用例步骤1:登录之后其它动作111'

def test_step_2(): #不需要登录
    print '用例步骤2: 不需要登录, 操作222'

def test_step_3(login):
    print '用例步骤3:登录之后其它动作333'

if __name__ == "__main__":
    pytest.main(["-s", "test_smtps

结果:

========================================================== test session starts ===========================================================
platform darwin -- Python 2.7.15, pytest-4.1.0, py-1.7.0, pluggy-0.8.0
rootdir: /Users/jackey/Documents/iOS/code/iOS-Auto/Agent_Test, inifile:
collected 3 items                                                                                                                        

test_smtpsimple.py 输入账号、密码登录
用例步骤1:登录之后其它动作111
用例步骤2: 不需要登录, 操作222
.输入账号、密码登录
用例步骤3:登录之后其它动作333

======================================================== 3 passed in 0.04 seconds ========================================================
(wda_python) bash-3.2$ 

以上本章内容就分享到这里,如果你对更多内容、Python自动化测试、面试题、感兴趣的话可以加入我们175317069一起学习。会有各项学习资源,更有行业深潜多年的技术人分析讲解。

祝愿你能成为一名优秀的软件测试工程师!

欢迎【评论】、【点赞】、【关注】~

Time will tell.(时间会证明一切)

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

推荐阅读更多精彩内容