Python 中的 fixture 和 fixtures

1 Fixture 概念

Fixture是测试中的概念:

  • Fixture 指的是测试中依赖的数据和条件等等
  • Python的 unittest 库提供了对 fixture的一些支持
  • 每个TestCase 应该在setUp中, 自己负责资源的创建, 例如
class MyTestCase(unittest.TestCase):

    def my_fixture_setup(self):
        pass

    def setUp(self):
        super(MyTestCase, self).setUp()
        self.my_fixture_setup()
  • 每个TestCase 应该新建一个函数, 负责资源的销毁. 并把这个新的函数加入到TestCase的cleanup列表当中
class MyTestCase(unittest.TestCase):

    def my_fixture_cleanup(self):
        print("++++ my_cleanup")

    def setUp(self):
        super(MyTestCase, self).setUp()
        self.addCleanup(self.my_fixture_cleanup)

以下是完整的代码

from __future__ import print_function
import unittest

class MyTestCase(unittest.TestCase):

    def my_fixture_setup(self):
        pass

    def my_fixture_cleanup(self):
        print("++++ my_cleanup")

    def setUp(self):
        super(MyTestCase, self).setUp()
        self.my_fixture_setup()
        self.addCleanup(self.my_fixture_cleanup)

    def tearDown(self):
        super(MyTestCase, self).tearDown()
        print("++++ tearDown")

    def my_cleanup(self):
        print("++++ my_cleanup")

    def test_case_1(self):
        print("++++ test case 1")

2 Python 中的 Fixtures 包

Fixtures(复数)是Python中的一个包, 提供了一些工具包来快速创建/销毁 fixture

https://pypi.python.org/pypi/fixtures

  • Test Case需要派生于 testtools.TestCase 类
  • 如果需要自定义Fixtures, 需要派生于 fixtures.Fixture类, 并覆写父类的setUp/cleanUp方法

一个自定义Fixtures类的例子如下

from __future__ import print_function
import fixtures
import testtools

class MyFixture(fixtures.Fixture):
    def setUp(self):
        super(MyFixture,self).setUp()
        self.frobnozzle = 42
        print("++++ MyFixture.setup()")

    def cleanUp(self):
        super(MyFixture,self).cleanUp()
        print("++++ MyFixture.cleanup()")
        print()

class MyTestCase(testtools.TestCase):

    def setUp(self):
        super(MyTestCase, self).setUp()
        self.my_fixture = self.useFixture(MyFixture())
        print("++++ setUp")

    def tearDown(self):
        super(MyTestCase, self).tearDown()
        print("++++ tearDown")

    def test_case_1(self):
        self.assertEqual(42, self.my_fixture.frobnozzle)
        print("++++ test case 1")
时间: 2024-10-12 20:17:29

Python 中的 fixture 和 fixtures的相关文章

走入计算机的第四十天(python中sockserver模块)

一.Python中的sockserver模块 1.该模块与sock模块不同之处是该模块自动帮我们分装好了一些功能,让我们在编程的时候直接调用这些功能就可以了,节省了编程步骤. 2.如图所示 注释:上图为服务端设置 该模块的操作方法比较死板,我们只要会熟悉的使用他就可以了.

python中if __name__ == '__main__':

Using a module's __name__ Example? 8.2.? Using a module's __name__ #!/usr/bin/python # Filename: using_name.py if __name__ == '__main__': print 'This program is being run by itself' else: print 'I am being imported from another module' Output $ pytho

关于Python中的yield

关于Python中的yield http://www.cnblogs.com/tqsummer/archive/2010/12/27/1917927.html http://www.ibm.com/developerworks/cn/opensource/os-cn-python-yield/ 一.迭代器(iterator) 在Python中,for循环可以用于Python中的任何类型,包括列表.元祖等等,实际上,for循环可用于任何“可迭代对象”,这其实就是迭代器 迭代器是一个实现了迭代器协议

python中的那些“神器”

"武林至尊,宝刀屠龙,号令天下,莫敢不从,倚天不出,谁与争锋",这是神器.不过今天要说的python中的"神器"就没有这么厉害了,这里要说的"神器"其实就是名称里面带了个"器"的,如下: 列表解析器 迭代器 生成器 装饰器 列表解析器 现在遇到了这样一个问题需要解决:"有一个数字的列表,要求对该列表中的奇数乘以2,返回处理完成后的列表(不改变原来列表的顺序,仅对列表中的奇数乘以2)",比较传统的方法可能会是

Python中字符串格式化如何实现?

Python开发中字符串格式化有两种方式: 百分号方式.format方式 百分号的方式相对来说比较老,而format方式则是比较先进的方式,企图替换古老的方式,目前两者并存. This PEP proposes a new system for built-in string formatting operations, intended as a replacement for the existing '%' string formatting operator. 1.百分号方式 %[(na

python 中*args 和 **kwargs

简单的可以理解为python 中给函数传递的可变参数,args 是 列表的形式.kwargs 是 key,value的形式,也就是python 中的字典. *args 必须出现在**kwargs 的前边,否则会抛异常. 1 def test(*args, **kwargs): 2 print args 3 print kwargs 1 if __name__ == '__main__': 2 print '---test 1---' 3 test(1, 2, 3) 4 print '---tes

python中super出现的TypeError: must be type, not classobj 原因及解决

执行一下代码,出现错误,TypeError: must be type, not classobj class A():    def __init__(self):        print("Enter A")        print("Leave A") class B(A):    def __init__(self):        print("Enter B")        super(B, self).__init__()  

python中的切片问题

对于在一个字符串中选取几个字符,不同的语言有不同的解决方案,python 中就有了切片的方法.    在list中,如下:     s=list(range(1,101))    如果想要选取偶数个数字(或者选取偶数),可以用循环的方法:但是方法臃肿,比较"笨"    但是python中给出的切片方法是更加的优雅的,如下:    L=list(range(1,101))    print(L[0])    print(L[0:10])#输出结果是[1, 2, 3, 4, 5, 6, 7

Python学习-16.Python中的错误处理

虽然叫错误,但跟 C# 中的异常是一回事.只不过 Python 中叫错误(Error)而 C# 中叫异常(Exception). 先手工产生一个异常: 1 file = open('','r') 上面一句由于路径是空路径,因此文件肯定是不存在的,执行这一句会引发 FileNotFoundError 这个错误. 既然是错误的,程序也停止了,这是我们不希望的,因此得想办法处理一下. 在 Python 中,异常处理使用 try.except.finally 这三个关键字. 修改代码如下: 1 path