Python学习Python单元测试python自动化

Python Unittest

2016-06-16  本文已影响2765人  wuwenxiang

Startup

单元测试的核心价值在于两点:

  1. 更加精确地定义某段代码的作用,从而使代码的耦合性更低
  2. 避免程序员写出不符合预期的代码,以及因新增功能而带来的Regression Bug

随着Test-Driven方法论的流行,测试类库对于高级语言来说变得不可或缺。Python生态圈中的unit testing framework相当多,不同于Java几乎只有JUnit与TestNG二选一,Python unittest框架中较为活跃并也有较多使用者的framework就有unittest、unittest2、nose、nose2与py.test等。不计其他较小众的工具,光是要搞懂这些工具并从中挑选一个合适的出来使用就让人头大了。本文因此总结了这些类库在实战中的作用,以便读者在选择时方便比对参考。

这里是介绍Python测试的官方文档:

本文在该文档的基础上删减了入门部分,增加了深入讲解和实战案例。

类库

Unittest

Unittest的标准文档在这里:

  1. Python2
  2. Python3

Unittest是Python标准库的一部分。它是目前最流行的固件测试框架XUnit在Python中的实现,如果你接触过Junit,nUnit,或者CppUnit,你会非常熟悉它的API。

Unittest框架的单元测试类用例通过继承unittest.TestCase来实现,看起来像是这样:

import unittest

def fun(x):
    return x + 1

class MyTest(unittest.TestCase):
    def test(self):
        self.assertEqual(fun(3), 4)

Unittest一共包含4个概念:

  1. Test Fixture,就是Setup()和TearDown()
  2. Test Case,一个Test Case就是一个测试用例,他们都是unittest.TestCase类的子类的方法
  3. Test Suite,Test Suite是一个测试用例集合,基本上你用不到它,用unittest.main()或者其它发现机制来运行所有的测试用例就对了。 :)
  4. Test runner,这是单元测试结果的呈现接口,你可以定制自己喜欢的呈现方式,比如GUI界面,基本上你也用不到它

一些实战中需要用到的技巧:

Mock

Mock类库是一个专门用于在unittest过程中制作(伪造)和修改(篡改)测试对象的类库,制作和修改的目的是避免这些对象在单元测试过程中依赖外部资源(网络资源,数据库连接,其它服务以及耗时过长等)。Mock是一个如此重要的类库,如果没有它,Unittest框架从功能上来说就是不完整的。所以不能理解为何它没有出现在Python2的标准库里,不过我们可以很高兴地看到在Python3中mock已经是unittest框架的一部分。

        >>> from mock import patch
        >>> foo = {}
        >>> with patch.dict(foo, {'newkey': 'newvalue'}):
        ...     assert foo == {'newkey': 'newvalue'}
        ...
        >>> assert foo == {}
        
        >>> import os
        >>> with patch.dict('os.environ', {'newkey': 'newvalue'}):
        ...     print os.environ['newkey']
        ...
        newvalue
        >>> assert 'newkey' not in os.environ

- patch.multiple: Perform multiple patches in a single call.

        >>> thing = object()
        >>> other = object()
        
        >>> @patch.multiple('__main__', thing=DEFAULT, other=DEFAULT)
        ... def test_function(thing, other):
        ...     assert isinstance(thing, MagicMock)
        ...     assert isinstance(other, MagicMock)
        ...
        >>> test_function()
        
        >>> @patch('sys.exit')
        ... @patch.multiple('__main__', thing=DEFAULT, other=DEFAULT)
        ... def test_function(mock_exit, other, thing):
        ...     assert 'other' in repr(other)
        ...     assert 'thing' in repr(thing)
        ...     assert 'exit' in repr(mock_exit)
        ...
        >>> test_function()

Unittest2

Unittest2致力于将Python2.7及以后版本上unittest框架的新特性移植(backport)到Python2.4~Python2.6平台中。

Backport是将一个软件补丁应用到比该补丁所对应的版本更老的版本的行为。

你知道这些就可以了,基本上你不会用到它

The new features in unittest backported to Python 2.4+. unittest2 is a backport of the new features added to the unittest testing framework in Python 2.7 and onwards.

unittest2 is a backport of Python 2.7’s unittest module which has an improved API and better assertions over the one available in previous versions of Python.

unittest2py3k is the Python 3 compatible version of unittest2

py.test

pytest是另一种固件测试框架,它的API设计非常简洁优雅,完全脱离了XUnit的窠臼(unittest是XUnit在Python中的实现)。但这也正是它的缺点,unittest是标准库的一部分,用者甚众,与之大异难免曲高和寡。

py.test功能完备,并且可扩展,但是它语法很简单。创建一个测试组件和写一个带有诸多函数的模块一样容易,来看一个例子

# content of test_sample.py
def func(x):
    return x + 1

def test_answer():
    assert func(3) == 5

运行一下:

$ py.test 
============= test session starts =============
platform darwin -- Python 2.7.11, pytest-2.9.2, py-1.4.31, pluggy-0.3.1
rootdir: /Users/wuwenxiang/Documents/workspace/testPyDev, inifile: 
collected 1 items 

some_test.py F

================== FAILURES ===================
_________________ test_answer _________________

    def test_answer():
>       assert func(3) == 5
E       assert 4 == 5
E        +  where 4 = func(3)

some_test.py:6: AssertionError
========== 1 failed in 0.01 seconds ===========

官方文档中入门的例子在这里,pytest也给出了unittest Style的兼容写法示例,然并X,看完之后你会发现:圈子不同,不必强融,这句话还真TM有道理。

py.test的setup/teardown语法与unittest的兼容性不高,实现方式也不直观。

我们来看一下setup/teardown的例子:

# some_test.py

import pytest

@pytest.fixture(scope='function')
def setup_function(request):
    def teardown_function():
        print("teardown_function called.")
    request.addfinalizer(teardown_function)
    print('setup_function called.')

@pytest.fixture(scope='module')
def setup_module(request):
    def teardown_module():
        print("teardown_module called.")
    request.addfinalizer(teardown_module)
    print('setup_module called.')


def test_1(setup_function):
    print('Test_1 called.')

def test_2(setup_module):
    print('Test_2 called.')

def test_3(setup_module):
    print('Test_3 called.')

pytest创建固件测试环境(fixture)的方式如上例所示,通过显式指定scope=''参数来选择需要使用的pytest.fixture装饰器。即一个fixture函数的类型从你定义它的时候就确定了,这与使用@nose.with_setup()不同。对于scope='function'的fixture函数,它就是会在测试用例的前后分别调用setup/teardown。测试用例的参数如def test_1(setup_function)只负责引用具体的对象,它并不关心对方的作用域是函数级的还是模块级的。

有效的 scope 参数限于:function, module, class, session,默认为function。

运行上例:$ py.test some_test.py -s-s用于显示print()函数

执行效果:

$ py.test -s some_test.py
============= test session starts =============
platform darwin -- Python 2.7.11, pytest-2.9.2, py-1.4.31, pluggy-0.3.1
rootdir: /Users/wuwenxiang/Documents/workspace/testPyDev, inifile: 
collected 3 items 

some_test.py setup_function called.
Test_1 called.
.teardown_function called.
setup_module called.
Test_2 called.
.Test_3 called.
.teardown_module called.


========== 3 passed in 0.01 seconds ===========

这里需要注意的地方是:setup_module被调用的位置。

Nose

nose广为流传,它主要用于配置和运行各种框架下的测试用例,有更简洁友好的测试用例发现功能。nose的自动发现策略是会遍历文件夹,搜索特征文件(默认是搜索文件名中带test的文件)

$ nosetests
F.
======================================================================
FAIL: some_test.test_answer
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/local/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
    self.test(*self.arg)
  File "/Users/wuwenxiang/Documents/workspace/testPyDev/some_test.py", line 6, in test_answer
    assert func(3) == 5
AssertionError

----------------------------------------------------------------------
Ran 2 tests in 0.004s

FAILED (failures=1)

很可惜,官网说:Nose has been in maintenance mode for the past several years and will likely cease without a new person/team to take over maintainership. New projects should consider using Nose2, py.test, or just plain unittest/unittest2.

Nose2是Nose的原班人马开发。nose2 is being developed by the same people who maintain nose.
Nose2是基于unittest2 plugins分支开发的,但并不支持python2.6之前的版本。Nose2致力于做更好的Nose,它的Plugin API并不兼容之前Nose的API,所以如果你migration from Nose,必须重写这些plugin。nose2 implements a new plugin API based on the work done by Michael Foord in unittest2’s plugins branch. This API is greatly superior to the one in nose, especially in how it allows plugins to interact with each other. But it is different enough from the API in nose that supporting nose plugins in nose2 will not be practical: plugins must be rewritten to work with nose2.

然而……
Nose2的更新……也很有限……

其作者Jason Pellerin先生坦言他目前(2014年)并没有多余的时间进行personal projects的开发,每周对nose与nose2的实际开发时间大概只有30分钟,在这种情况下,nose与nose2都将很难再有大的改版与修正。

Green

不同与nose/nose2,green是单纯为了强化unittest中test runner功能而出现的工具。green所提供的只有一个功能强大、使用方便、测试报告美观的test runner。如果你的项目中的测试都是以传统unittest module撰写而成的话,green会是一个很好的test runner选择。

使用green执行测试:

pip install green
cd path/to/project
green

Doctest

Doctest的标准文档在这里:

  1. Python2
  2. Python3

Doctest看起来像是在交互式运行环境中的输出,事实上也确实如此 :)

def square(x):
    """Squares x.

    >>> square(2)
    4
    >>> square(-2)
    4
    """

    return x * x

if __name__ == '__main__':
    import doctest
    doctest.testmod()

Doctest的作用是作为函数/类/模块等单元的解释和表述性文档。所以它们有如下特点:

  1. 只有期望对外公开的单元会提供doctest
  2. 这些doctest通常不是很细致

编写doctest测试基本不需要学习新技能点,在交互式环境里运行一下,然后把输出结果检查一下贴过来就可以了。

doctest还有一些高级用法,但基本上用不到,用到的时候再去查标准文档好了。 :)

Mox

Mox是Java EasyMock框架在Python中的实现。它一个过时的,很像mock的类库。从现在开始,你应该放弃学习Mox,在任何情况下都用Mock就对了。

参考 Mox的官方文档

Mox is a mock object framework for Python based on the Java mock object framework EasyMock.
New uses of this library are discouraged.
People are encouraged to use https://pypi.python.org/pypi/mock instead which matches the unittest.mock library available in Python 3.

Mox3 是一个非官方的类库,是mox的Python3兼容版本

Mox3 is an unofficial port of the Google mox framework (http://code.google.com/p/pymox/) to Python 3. 
It was meant to be as compatible with mox as possible, but small enhancements have been made. 
The library was tested on Python version 3.2, 2.7 and 2.6.
Use at your own risk ;)

其它

建议和总结

上一篇 下一篇

猜你喜欢

热点阅读