zoukankan      html  css  js  c++  java
  • python unittest框架中doCleanups妙用

      偶看unittest官方文档中,发现一个很好用的功能函数doCleanups,看看官方是怎么解释的:

    doCleanups()
    This method is called unconditionally after tearDown(), or after setUp() if setUp() raises an exception.
    
    It is responsible for calling all the cleanup functions added by addCleanup(). If you need cleanup functions to be called prior to tearDown() then you can call doCleanups() yourself.
    
    doCleanups() pops methods off the stack of cleanup functions one at a time, so it can be called at any time.

    该功能函数在2.7之后就支持了

    来来来,简单用中文说明一下吧,大概意思如下:

    无条件的执行改函数,在tearnDown()之后或者在setUp()之后即使setUp失败的情况下也会执行
    与addCleanup搭配使用

    看完后大家都明白了吧,平时我们使用tearDown函数时,当setUp运行失败时,tearDown就不执行了,所以就会有遗留资源的存在,正好doCleanups帮我们解决了这个困扰,不用再写try...except....finally了。

    下面,用个实例来看看doCleanups怎么运行的

    #coding:utf-8
    '''
    Created on 2016年8月31日
    @author: zq
    '''
    import unittest
    
    class my(unittest.TestCase):
        
        def a(self):
            print "aaaa"
        
        def setUp(self):
            print "setUp"
            raise IOError,"errorororororo"  #这里特意让setUp产生错误
    
            
        def test_1(self):
            '''i dont konw'''
            print "test_1"
            
        def tearDown(self):
            print 'this tearDown'
            
        def doCleanups(self):
            print "this is cleanups"
        
        def test_2(self):
            print "test_2"
        
        @classmethod
        def tearDownClass(cls):
            print "teardownClass...."
            
    if __name__=="__main__":
        test=unittest.TestSuite()
        test.addTest(my('test_1'))
        test.addTest(my('test_2'))
        runner=unittest.TextTestRunner()
        runner.run(test)

    我们运行后看看结果:

    setUp
    this is cleanups
    setUp
    this is cleanups
    teardownClass....
    EE

    看看,从运行结果中可以看出。即使setUp出现错误的情况下,doCleanups还是运行了。

  • 相关阅读:
    在 Ubuntu 中运转 µTorrent
    TestDisk & PhotoRec——两个数据规复软件
    Ext2 IFS For Windows
    Rainlendar-可定制的桌面日历
    Gimmix:一个新的 MPD 客户端播放器
    SuperSwitcher-桌面增强器械
    Audacity 1.2.6 & 1.3.2
    XChat 2.8.0
    Griffith:电影聚集筹划软件
    VLC media player 0.8.6a
  • 原文地址:https://www.cnblogs.com/landhu/p/7344624.html
Copyright © 2011-2022 走看看