Python 单元测试在所有测试后运行函数

问题描述 投票:0回答:3

我需要通过 ssh 在 Python 上测试一些东西。我不想每次测试都建立ssh连接,因为太长了,我这样写的:

class TestCase(unittest.TestCase):
    client = None
    def setUp(self):
        if not hasattr(self.__class__, 'client') or self.__class__.client is None:
            self.__class__.client = paramiko.SSHClient()
            self.__class__.client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
            self.__class__.client.connect(hostname=consts.get_host(), port=consts.get_port(), username=consts.get_user(),
                                password=consts.get_password())

    def test_a(self):
        pass

    def test_b(self):
        pass

    def test_c(self):
        pass

    def disconnect(self):
        self.__class__.client.close()

还有我的跑步者

if __name__ == '__main__':
    suite = unittest.TestSuite((
        unittest.makeSuite(TestCase),
    ))
    result = unittest.TextTestRunner().run(suite)
    TestCase.disconnect()
    sys.exit(not result.wasSuccessful())

在此版本中我收到错误

TypeError: unbound method disconnect() must be called with TestCase instance as first argument (got nothing instead)
。那么在所有测试通过后我如何调用disconnect呢?

python unit-testing ssh python-unittest
3个回答
25
投票

如果您想为所有测试保持相同的连接,您应该使用 setUpClasstearDownClass 来代替。您还需要将

disconnect
方法设置为静态,因此它属于该类,而不是该类的实例。

class TestCase(unittest.TestCase):

     def setUpClass(cls):
         cls.connection = <your connection setup>

     @staticmethod
     def disconnect():
         ... disconnect TestCase.connection

     def tearDownClass(cls):
         cls.disconnect()

10
投票

您可以通过定义

startTestRun
类的
stopTestRun
,
unittest.TestResult
来实现。
setUpClass
tearDownClass
正在每个测试类(每个测试文件)运行,因此如果您有多个文件,此方法将为每个文件运行。

通过将以下代码添加到我的

tests/__init__.py
我设法实现了它。此代码对于所有测试仅运行一次(无论测试类和测试文件的数量如何)。

def startTestRun(self):
    """
    https://docs.python.org/3/library/unittest.html#unittest.TestResult.startTestRun
    Called once before any tests are executed.

    :return:
    """
    DockerCompose().start()


setattr(unittest.TestResult, 'startTestRun', startTestRun)


def stopTestRun(self):
    """
    https://docs.python.org/3/library/unittest.html#unittest.TestResult.stopTestRun
    Called once after all tests are executed.

    :return:
    """
    DockerCompose().compose.stop()


setattr(unittest.TestResult, 'stopTestRun', stopTestRun)

1
投票

对于基本(初学者)情况似乎有一个简单的解决方案:

def tmain():
    setup()
    unittest.main(verbosity=1, exit=False)
    clean()

技巧是“exit=False”,它让函数 tmain 运行到最后。 setup() 和 clean() 可以是任何函数来执行其名称所暗示的操作。

© www.soinside.com 2019 - 2024. All rights reserved.