我试图从另一个python文件调用unittest,并评估退出代码。我能够使用unittest.TestLoader().loadTestsFromModule
和unittest.TextTestRunner.run
从另一个python文件中调用unittest,但是这会将整个结果返回给cmd。我想简单地设置一个等于状态代码的变量,这样我就可以对它进行评估。我能找到一个方法unittest.TestResult.wasSuccessful,但我在实现它时遇到了麻烦。当我将它添加到用例时,我得到以下AttributeError:AttributeError: 'ConnectionTest' object has no attribute 'failures'
我在下面提供了一些代码示例,并提供了所需结果的模型,以说明我想要实现的目标。先感谢您。
""" Tests/ConnectionTest.py """
import unittest
from Connection import Connection
class ConnectionTest(unittest.TestCase):
def test_connection(self):
#my tests
def test_pass(self):
return unittest.TestResult.wasSuccessful(self)
if __name__ == '__main__':
unittest.main()
""" StatusTest.py """
import unittest
import Tests.ConnectionTest as test
#import Tests.Test2 as test2
#import Tests.Test3 as test3
#import other unit tests ...
suite = unittest.TestLoader().loadTestsFromModule(test)
unittest.TextTestRunner(verbosity=2).run(suite)
""" Return True if unit test passed
"""
def test_passed(test):
if test.test_pass() == 0:
return True
else:
return False
""" Run unittest for each module before using it in code
"""
def main():
tests = "test test2 test3".split()
for test in tests:
if test_passed(test):
# do something
else:
# log failure
pass
更新
为了更简单地提出问题,我需要将下面突出显示的变量设置为突出显示的值。
答案 0 :(得分:1)
您提到过您尝试过实施result.wasSuccessful
,但会有以下工作:
result = unittest.TextTestRunner(verbosity=2).run(suite)
test_exit_code = int(not result.wasSuccessful())
当测试套件成功运行时,test_exit_code
的值将为0,否则为1。
如果要禁用TextTestRunner
的输出,可以指定自己的流,例如:
from io import StringIO
result = unittest.TextTestRunner(stream=StringIO(), verbosity=2).run(suite)