单元测试之Monkey Patch
作者:网络转载 发布时间:[ 2014/3/28 16:26:30 ] 推荐标签:单元测试 软件测试
再说monkey patch之前先说下, python中的Test Double, Test Double是在测试case中给某个对象做替身的意思. 用一个假对象替换.
用Test Double时, 可以有三种实现的形式, Stub,Mock object, Fake Object, Mock object 在我的另一博文中http://blog.csdn.net/juvxiao/article/details/21562325分析了下, 其他两种比较简单, 可看https://wiki.openstack.org/wiki/SmallTestingGuide了解 ,这个link中还提到Test Double的两种实现方式: 依赖注入 和 monkey patching.
依赖注入
class FamilyTree(object):
def __init__(self, person_gateway):
self._person_gateway = person_gateway
可以把person_gateway用一个假对象替换, 从而让测试专注在FamilyTree本身,
person_gateway = FakePersonGateway()
# ...
tree = FamilyTree(person_gateway)
monkey patching
这种测试只能运行在像python这样的动态语言中, 它通过在运行时替换名空间的方式实现测试。如下例
class FamilyTree(object):
def __init__(self):
self._person_gateway = mylibrary.dataaccess.PersonGateway()
那我们可以在测试时把mylibrary.dataaccess.PersonGateway名空间替换为FakeGataway名空间.
mylibrary.dataaccess.PersonGateway = FakePersonGateway
# ...
tree = FamilyTree()
通过一个OpenStack中使用monkey patch的例子来说说, 这个代码片断摘自nova的单元测试test_virt_driver.py,用于讲述monkey patch用法
import nova.tests.virt.libvirt.fake_imagebackend as fake_imagebackend
import nova.tests.virt.libvirt.fake_libvirt_utils as fake_libvirt_utils
import nova.tests.virt.libvirt.fakelibvirt as fakelibvirt
sys.modules['libvirt'] = fakelibvirt
import nova.virt.libvirt.driver
import nova.virt.libvirt.firewall
self.useFixture(fixtures.MonkeyPatch(
'nova.virt.libvirt.driver.imagebackend',
fake_imagebackend))
self.useFixture(fixtures.MonkeyPatch(
'nova.virt.libvirt.driver.libvirt',
fakelibvirt))
self.useFixture(fixtures.MonkeyPatch(
'nova.virt.libvirt.driver.libvirt_utils',
fake_libvirt_utils))
这个例子中使用了fixtures module(fixtures是一个testcase助手, 把一些不依赖具体测试的过程提取出来放到fixtures module中, 可以使得测试代码干净)来实现monkey patch, 是用前几行的fake object 这个名空间替换真正driver object的名空间。达到测试时的狸猫换太子。
相关推荐
更新发布
功能测试和接口测试的区别
2023/3/23 14:23:39如何写好测试用例文档
2023/3/22 16:17:39常用的选择回归测试的方式有哪些?
2022/6/14 16:14:27测试流程中需要重点把关几个过程?
2021/10/18 15:37:44性能测试的七种方法
2021/9/17 15:19:29全链路压测优化思路
2021/9/14 15:42:25性能测试流程浅谈
2021/5/28 17:25:47常见的APP性能测试指标
2021/5/8 17:01:11